Expansion P3 — Mauricie/CdQ/Lanaudière (6 connecteurs +53 annonces, 8 non-connectables)
moderno · acceslogis_gb · ferrovia (23, prix non publiés) · habitations_sf · lambert · fournelle. Non-connectables documentés (parcs pleins, vitrines sans unités, renvois Facebook). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Showing 27 changed files with +20,001 and −0
added
louka/connectors/acceslogis_gb.py
+159 −0
@@ -0,0 +1,159 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/acceslogis_gb.py : connecteur Accès Logis GB (acceslogisgb.com) | |
| 5 | +# Gestionnaire de Lanaudière/Mauricie (Joliette, Ste-Élisabeth, | |
| 6 | +# St-Ambroise-de-Kildare, Shawinigan…). Site builder mono-page : les cartes | |
| 7 | +# « LOGEMENTS DISPONIBLES » vivent dans des grilles .columnswithgap-02 | |
| 8 | +# (titre <p.font-026><b>, photo, description <p.font-014> qui se termine par | |
| 9 | +# « Disponible … » + « 1150$ PAR MOIS »). Aucune page détail ni URL par | |
| 10 | +# annonce : external_id = slug du titre + repère d'étage tiré de la | |
| 11 | +# description (les titres se répètent d'un étage à l'autre). 1 requête/sync. | |
| 12 | +# ----------------------------------------------------------------------------- | |
| 13 | +from __future__ import annotations | |
| 14 | + | |
| 15 | +import hashlib | |
| 16 | +import re | |
| 17 | +import unicodedata | |
| 18 | + | |
| 19 | +from bs4 import BeautifulSoup | |
| 20 | + | |
| 21 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 22 | +from .base import BaseConnector | |
| 23 | + | |
| 24 | +BASE = "https://acceslogisgb.com" | |
| 25 | +LIST_URL = f"{BASE}/" | |
| 26 | + | |
| 27 | +# villes desservies (clé sans accents, en minuscules -> nom canonique) | |
| 28 | +_CITIES = [ | |
| 29 | + ("ste-elisabeth", "Sainte-Élisabeth"), | |
| 30 | + ("sainte-elisabeth", "Sainte-Élisabeth"), | |
| 31 | + ("sainte-elizabeth", "Sainte-Élisabeth"), | |
| 32 | + ("st-ambroise", "Saint-Ambroise-de-Kildare"), | |
| 33 | + ("saint-ambroise", "Saint-Ambroise-de-Kildare"), | |
| 34 | + ("shawinigan", "Shawinigan"), | |
| 35 | + ("joliette", "Joliette"), | |
| 36 | + ("crabtree", "Crabtree"), | |
| 37 | + ("berthier", "Berthierville"), | |
| 38 | + ("st-thomas", "Saint-Thomas"), | |
| 39 | + ("saint-thomas", "Saint-Thomas"), | |
| 40 | + ("st-come", "Saint-Côme"), | |
| 41 | + ("saint-come", "Saint-Côme"), | |
| 42 | +] | |
| 43 | + | |
| 44 | +# repère d'étage dans la description (« en demi sous-sol », « au 2e étage »…) | |
| 45 | +_FLOOR_RE = re.compile( | |
| 46 | + r"(demi[- ]sous[- ]sol|sous[- ]sol|rez[- ]de[- ]chauss[ée]e|\d+\s*(?:er|e|ème|ieme)\s*étage)", | |
| 47 | + re.I) | |
| 48 | + | |
| 49 | + | |
| 50 | +def _strip_accents(s: str) -> str: | |
| 51 | + return "".join(c for c in unicodedata.normalize("NFD", s) | |
| 52 | + if unicodedata.category(c) != "Mn") | |
| 53 | + | |
| 54 | + | |
| 55 | +def _slug(s: str) -> str: | |
| 56 | + s = _strip_accents(s.lower()) | |
| 57 | + s = re.sub(r"[^a-z0-9]+", "-", s) | |
| 58 | + return s.strip("-") | |
| 59 | + | |
| 60 | + | |
| 61 | +class AccesLogisGBConnector(BaseConnector): | |
| 62 | + source_id = "acceslogis_gb" | |
| 63 | + request_delay = 0.7 | |
| 64 | + | |
| 65 | + def fetch(self) -> list[Listing]: | |
| 66 | + resp = self.get(LIST_URL) | |
| 67 | + resp.encoding = "utf-8" # le serveur ne déclare pas le charset | |
| 68 | + html = resp.text | |
| 69 | + soup = BeautifulSoup(html, "html.parser") | |
| 70 | + listings: dict[str, Listing] = {} | |
| 71 | + for grid in soup.select("div.columnswithgap-02"): | |
| 72 | + for col in grid.find_all("div", recursive=False): | |
| 73 | + try: | |
| 74 | + self._parse_card(col, listings) | |
| 75 | + except Exception: | |
| 76 | + continue | |
| 77 | + return list(listings.values()) | |
| 78 | + | |
| 79 | + def _parse_card(self, col, listings: dict[str, Listing]) -> None: | |
| 80 | + title_el = col.select_one("p.font-026 b") | |
| 81 | + if not title_el: | |
| 82 | + return | |
| 83 | + title = re.sub(r"\s+", " ", title_el.get_text(" ", strip=True)) | |
| 84 | + # hors périmètre logement : mini-entrepôts, locaux | |
| 85 | + if re.search(r"entrep[oô]t|commercial|local\b", title, re.I): | |
| 86 | + return | |
| 87 | + | |
| 88 | + desc_el = col.select_one("p.font-014") | |
| 89 | + availability, price_label = "", "" | |
| 90 | + description = "" | |
| 91 | + if desc_el: | |
| 92 | + # les mentions « Disponible … » et « 1150$ » sont des <span> en fin | |
| 93 | + # de paragraphe : on les extrait puis on garde le reste en description | |
| 94 | + for span in desc_el.find_all("span"): | |
| 95 | + t = re.sub(r"\s+", " ", span.get_text(" ", strip=True)) | |
| 96 | + if re.match(r"(?i)disponible|libre", t): | |
| 97 | + availability = t | |
| 98 | + elif re.search(r"\d\s*\$", t): | |
| 99 | + price_label = t | |
| 100 | + span.extract() | |
| 101 | + description = re.sub(r"\s+", " ", desc_el.get_text(" ", strip=True)) | |
| 102 | + description = re.sub(r"\bPAR MOIS\b\s*$", "", description).strip() | |
| 103 | + | |
| 104 | + # ville : depuis le titre, sinon la description | |
| 105 | + low = _strip_accents(f"{title} {description}".lower()) | |
| 106 | + city = "" | |
| 107 | + for key, name in _CITIES: | |
| 108 | + if key in low: | |
| 109 | + city = name | |
| 110 | + break | |
| 111 | + | |
| 112 | + # type d'unité : titre (« 3 1/2, … ») sinon description | |
| 113 | + unit_type = normalize_unit_type(title) | |
| 114 | + if not re.fullmatch(r"\d½|6½\+|Studio|Loft|Chambre|Maison|Condo", | |
| 115 | + unit_type or ""): | |
| 116 | + unit_type = normalize_unit_type(description) | |
| 117 | + if not re.fullmatch(r"\d½|6½\+|Studio|Loft|Chambre|Maison|Condo", | |
| 118 | + unit_type or ""): | |
| 119 | + unit_type = "" | |
| 120 | + | |
| 121 | + # adresse civique si mentionnée (« situé au 2510 Rang du Ruisseau à … ») | |
| 122 | + address = "" | |
| 123 | + m = re.search(r"situ[ée]e?\s+au\s+([\d][^.,]*?)\s+à\s", description) | |
| 124 | + if m: | |
| 125 | + address = m.group(1).strip() | |
| 126 | + elif re.match(r"\d+\s+\w", title) and not normalize_unit_type(title).endswith("½"): | |
| 127 | + address = title.split(",")[0].strip() # le titre est une adresse civique | |
| 128 | + | |
| 129 | + # external_id stable : slug du titre + repère d'étage (les titres se | |
| 130 | + # répètent entre étages d'un même immeuble) | |
| 131 | + ext = _slug(title) | |
| 132 | + m_fl = _FLOOR_RE.search(description) | |
| 133 | + if m_fl: | |
| 134 | + ext += "-" + _slug(m_fl.group(1)) | |
| 135 | + if ext in listings: # ultime repli : hash du texte | |
| 136 | + ext += "-" + hashlib.sha1(description.encode("utf-8")).hexdigest()[:6] | |
| 137 | + | |
| 138 | + images: list[str] = [] | |
| 139 | + img = col.select_one("img[src]") | |
| 140 | + if img: | |
| 141 | + src = img["src"] | |
| 142 | + if not src.startswith("http"): | |
| 143 | + src = f"{BASE}/{src.lstrip('/')}" | |
| 144 | + images.append(src) | |
| 145 | + | |
| 146 | + listings[ext] = Listing( | |
| 147 | + source=self.source_id, | |
| 148 | + external_id=ext, | |
| 149 | + url=f"{LIST_URL}#logements", | |
| 150 | + title=title, | |
| 151 | + address=address, | |
| 152 | + city=city, | |
| 153 | + unit_type=unit_type, | |
| 154 | + price=parse_price(price_label), | |
| 155 | + price_label=price_label, | |
| 156 | + availability=availability, | |
| 157 | + description=description[:900], | |
| 158 | + images=images, | |
| 159 | + ) | |
added
louka/connectors/ferrovia.py
+126 −0
@@ -0,0 +1,126 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/ferrovia.py : connecteur Ferrovia (ferroviamirabel.com) | |
| 5 | +# Projet de condos locatifs neufs à Mirabel (secteur Saint-Janvier), 4 phases. | |
| 6 | +# WordPress + wpDataTables rendues côté serveur : chaque page « Disponibilités » | |
| 7 | +# contient un <table.wpDataTable> (UNITÉ, MODÈLE, ÉTAGE, PIÈCES, SUPERFICIE, | |
| 8 | +# SALLE D'EAU SUPP., DISPONIBILITÉ, PRIX, STATUT, PLAN). On ne retient que les | |
| 9 | +# lignes STATUT = « Disponible » ; external_id = phase + numéro d'unité. | |
| 10 | +# Le site précise que les logements sont non-fumeurs et sans animaux. | |
| 11 | +# Prix : colonne présente mais vide à ce jour — jamais inventé. | |
| 12 | +# ----------------------------------------------------------------------------- | |
| 13 | +from __future__ import annotations | |
| 14 | + | |
| 15 | +import re | |
| 16 | + | |
| 17 | +from bs4 import BeautifulSoup | |
| 18 | + | |
| 19 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 20 | +from .base import BaseConnector | |
| 21 | + | |
| 22 | +BASE = "https://www.ferroviamirabel.com" | |
| 23 | +PHASES = [ | |
| 24 | + ("1", f"{BASE}/disponibilites-prix-plans-phase1/"), | |
| 25 | + ("3", f"{BASE}/disponibilites-phase-3/"), | |
| 26 | + ("4", f"{BASE}/disponibilites-phase-4/"), | |
| 27 | +] | |
| 28 | + | |
| 29 | + | |
| 30 | +class FerroviaConnector(BaseConnector): | |
| 31 | + source_id = "ferrovia" | |
| 32 | + request_delay = 0.7 | |
| 33 | + | |
| 34 | + def fetch(self) -> list[Listing]: | |
| 35 | + listings: dict[str, Listing] = {} | |
| 36 | + for phase, url in PHASES: | |
| 37 | + try: | |
| 38 | + html = self.get(url).text | |
| 39 | + except Exception: | |
| 40 | + continue | |
| 41 | + self._parse_phase(phase, url, html, listings) | |
| 42 | + return list(listings.values()) | |
| 43 | + | |
| 44 | + def _parse_phase(self, phase: str, url: str, html: str, | |
| 45 | + listings: dict[str, Listing]) -> None: | |
| 46 | + soup = BeautifulSoup(html, "html.parser") | |
| 47 | + table = soup.select_one("table.wpDataTable") | |
| 48 | + if table is None: | |
| 49 | + return | |
| 50 | + heads = [th.get_text(" ", strip=True).lower() | |
| 51 | + for th in table.select("thead th")] | |
| 52 | + | |
| 53 | + def col(row_cells, *keys): | |
| 54 | + for key in keys: | |
| 55 | + for i, h in enumerate(heads): | |
| 56 | + if key in h and i < len(row_cells): | |
| 57 | + return row_cells[i] | |
| 58 | + return None | |
| 59 | + | |
| 60 | + for tr in table.select("tbody tr"): | |
| 61 | + cells = tr.find_all("td") | |
| 62 | + texts = [re.sub(r"\s+", " ", td.get_text(" ", strip=True)) | |
| 63 | + for td in cells] | |
| 64 | + statut = col(texts, "statut") or "" | |
| 65 | + if not re.match(r"(?i)disponible", statut): | |
| 66 | + continue # loué / réservé : on saute | |
| 67 | + unit = col(texts, "unité", "unite") or "" | |
| 68 | + if not unit: | |
| 69 | + continue | |
| 70 | + pieces = col(texts, "pièces", "pieces") or "" | |
| 71 | + unit_type = normalize_unit_type(pieces) | |
| 72 | + if not re.fullmatch(r"\d½|Studio|Loft", unit_type or ""): | |
| 73 | + continue # ligne non résidentielle | |
| 74 | + modele = col(texts, "modèle", "modele") or "" | |
| 75 | + etage = col(texts, "étage", "etage") or "" | |
| 76 | + superficie = col(texts, "superficie") or "" | |
| 77 | + demi_sdb = col(texts, "salle d'eau", "salle d’eau") or "" | |
| 78 | + dispo = col(texts, "disponibilité", "disponibilite") or "" | |
| 79 | + prix = col(texts, "prix") or "" # vide à ce jour sur le site | |
| 80 | + | |
| 81 | + area = None | |
| 82 | + m = re.match(r"([\d\s,.]+)$", superficie) | |
| 83 | + if m: | |
| 84 | + try: | |
| 85 | + area = float(m.group(1).replace(" ", "").replace(",", "")) | |
| 86 | + except ValueError: | |
| 87 | + area = None | |
| 88 | + | |
| 89 | + plan_td = col(cells, "plan") | |
| 90 | + plan_url = "" | |
| 91 | + if plan_td is not None: | |
| 92 | + a = plan_td.find("a", href=True) | |
| 93 | + if a: | |
| 94 | + plan_url = a["href"] | |
| 95 | + | |
| 96 | + details = {"phase": phase, "smoking": False} | |
| 97 | + if modele: | |
| 98 | + details["model"] = modele | |
| 99 | + if etage: | |
| 100 | + details["floor"] = etage | |
| 101 | + if plan_url: | |
| 102 | + details["plan_pdf"] = plan_url | |
| 103 | + amenities = [] | |
| 104 | + if re.match(r"(?i)oui", demi_sdb): | |
| 105 | + amenities.append("Salle d'eau supplémentaire") | |
| 106 | + | |
| 107 | + ext = f"phase{phase}-{unit}" | |
| 108 | + listings[ext] = Listing( | |
| 109 | + source=self.source_id, | |
| 110 | + external_id=ext, | |
| 111 | + url=url, | |
| 112 | + title=f"Ferrovia phase {phase} — unité {unit} ({pieces})", | |
| 113 | + sector="Saint-Janvier", | |
| 114 | + city="Mirabel", | |
| 115 | + unit_type=unit_type, | |
| 116 | + price=parse_price(prix), | |
| 117 | + price_label=prix, | |
| 118 | + availability=dispo, # « Automne 2026 », « ÉTÉ 2026 » | |
| 119 | + area_sqft=area, | |
| 120 | + pets="non", # note du site : animaux non admis | |
| 121 | + description=("Condos neufs à louer du projet Ferrovia, à Mirabel " | |
| 122 | + "dans le secteur de Saint-Janvier. Les logements sont " | |
| 123 | + "non-fumeurs et les animaux ne sont pas admis."), | |
| 124 | + amenities=amenities, | |
| 125 | + details=details, | |
| 126 | + ) | |
added
louka/connectors/fournelle.py
+113 −0
@@ -0,0 +1,113 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/fournelle.py : connecteur Appartements Fournelle (Groupe Fournelle) | |
| 5 | +# (groupefournelle.com/appartements-fournelle/ — Bécancour, Centre-du-Québec). | |
| 6 | +# Page-brochure WordPress : des blocs .item par projet (h2 + paragraphes + | |
| 7 | +# galerie swiper). Seuls les blocs affichant des lignes de prix par unité | |
| 8 | +# (« 2 × 5½ au sous-sol – 1300 $ | 2 × 5½ au RDC – 1525 $ … ») produisent des | |
| 9 | +# annonces : une annonce par ligne typologie/étage, prix et disponibilité | |
| 10 | +# (« Immeuble neuf disponible à partir du 1er Mai 2026 ») fidèles au texte. | |
| 11 | +# external_id = slug du projet + typologie + étage. 1 requête par sync. | |
| 12 | +# ----------------------------------------------------------------------------- | |
| 13 | +from __future__ import annotations | |
| 14 | + | |
| 15 | +import re | |
| 16 | +import unicodedata | |
| 17 | + | |
| 18 | +from bs4 import BeautifulSoup | |
| 19 | + | |
| 20 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 21 | +from .base import BaseConnector | |
| 22 | + | |
| 23 | +BASE = "https://www.groupefournelle.com" | |
| 24 | +LIST_URL = f"{BASE}/appartements-fournelle/" | |
| 25 | + | |
| 26 | +# « 2 × 5½ au sous-sol – 1300 $ » (séparateur | ; tirets – ou - ; l'étage peut | |
| 27 | +# contenir un trait d'union — « sous-sol » — d'où le prix ancré sur un chiffre) | |
| 28 | +_LINE_RE = re.compile( | |
| 29 | + r"(\d+)\s*[×x]\s*(\d\s*(?:½|1/2))\s*(?:aux?|en)?\s*([^–|]*?)\s*[–\-]\s*(\d[\d\s]*\$)") | |
| 30 | +_AVAIL_RE = re.compile(r"disponible\s+à\s+partir\s+d[ue][^.|]*", re.I) | |
| 31 | + | |
| 32 | + | |
| 33 | +def _strip_accents(s: str) -> str: | |
| 34 | + return "".join(c for c in unicodedata.normalize("NFD", s) | |
| 35 | + if unicodedata.category(c) != "Mn") | |
| 36 | + | |
| 37 | + | |
| 38 | +def _slug(s: str) -> str: | |
| 39 | + s = _strip_accents(s.lower()).replace("½", "12") | |
| 40 | + return re.sub(r"[^a-z0-9]+", "-", s).strip("-") | |
| 41 | + | |
| 42 | + | |
| 43 | +class FournelleConnector(BaseConnector): | |
| 44 | + source_id = "fournelle" | |
| 45 | + request_delay = 0.7 | |
| 46 | + | |
| 47 | + def fetch(self) -> list[Listing]: | |
| 48 | + html = self.get(LIST_URL).text | |
| 49 | + soup = BeautifulSoup(html, "html.parser") | |
| 50 | + listings: dict[str, Listing] = {} | |
| 51 | + for item in soup.select("div.item"): | |
| 52 | + content = item.select_one("div.content") | |
| 53 | + if content is None: | |
| 54 | + continue | |
| 55 | + try: | |
| 56 | + self._parse_block(item, content, listings) | |
| 57 | + except Exception: | |
| 58 | + continue | |
| 59 | + return list(listings.values()) | |
| 60 | + | |
| 61 | + def _parse_block(self, item, content, listings: dict[str, Listing]) -> None: | |
| 62 | + h2 = content.find("h2") | |
| 63 | + block_title = re.sub(r"\s+", " ", h2.get_text(" ", strip=True)) if h2 else "" | |
| 64 | + link = content.select_one("a[href]") | |
| 65 | + project = _slug((link["href"] if link else "").strip("/")) or _slug(block_title) | |
| 66 | + | |
| 67 | + text = re.sub(r"\s+", " ", content.get_text(" ", strip=True)) | |
| 68 | + lines = _LINE_RE.findall(text) | |
| 69 | + if not lines: | |
| 70 | + return # bloc informatif sans prix : pas d'annonce | |
| 71 | + | |
| 72 | + m_av = _AVAIL_RE.search(text) | |
| 73 | + availability = re.sub(r"\s+", " ", m_av.group(0)).strip() if m_av else "" | |
| 74 | + | |
| 75 | + # caractéristiques (liste <ul>) + phrases de conditions (sans fumée…) | |
| 76 | + feats = [re.sub(r"\s+", " ", li.get_text(" ", strip=True)) | |
| 77 | + for li in content.find_all("li")] | |
| 78 | + conditions = [re.sub(r"\s+", " ", p.get_text(" ", strip=True)) | |
| 79 | + for p in content.find_all("p") | |
| 80 | + if re.search(r"sans fumée|sans animaux|enquête de crédit|" | |
| 81 | + r"stationnement inclus|chauffé", p.get_text(), re.I)] | |
| 82 | + description = "\n".join([block_title] + conditions)[:900] | |
| 83 | + | |
| 84 | + # galerie swiper du bloc (photos + plans, pleine taille) | |
| 85 | + images: list[str] = [] | |
| 86 | + for a in item.select(".swiper-slide a[href]"): | |
| 87 | + u = a["href"] | |
| 88 | + if u.startswith("http") and re.search(r"\.(jpe?g|png|webp)$", u, re.I) \ | |
| 89 | + and u not in images: | |
| 90 | + images.append(u) | |
| 91 | + | |
| 92 | + for qty, utype, floor, price in lines: | |
| 93 | + floor = floor.strip(" .,") | |
| 94 | + ext = _slug(f"{project}-{utype}-{floor}") | |
| 95 | + if ext in listings: | |
| 96 | + continue | |
| 97 | + label = f"{utype} {('au ' + floor) if floor else ''}".strip() | |
| 98 | + listings[ext] = Listing( | |
| 99 | + source=self.source_id, | |
| 100 | + external_id=ext, | |
| 101 | + url=LIST_URL, | |
| 102 | + title=f"{label} — {block_title}", | |
| 103 | + city="Bécancour", # page « Appartements à louer à Bécancour » | |
| 104 | + unit_type=normalize_unit_type(utype), | |
| 105 | + price=parse_price(price), | |
| 106 | + price_label=price.strip(), | |
| 107 | + availability=availability, | |
| 108 | + description=description, | |
| 109 | + amenities=feats[:20], | |
| 110 | + details={"project": project, "floor": floor, | |
| 111 | + "units_on_line": qty}, | |
| 112 | + images=images[:15], | |
| 113 | + ) | |
added
louka/connectors/habitations_sf.py
+231 −0
@@ -0,0 +1,231 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/habitations_sf.py : connecteur Les Habitations SF (S&F Gestion) | |
| 5 | +# (leshabitationssf.com — Saint-Charles-Borromée/Joliette, Lanaudière). | |
| 6 | +# Site Wix : les annonces sont des pages dynamiques /copy-of-location/<slug> | |
| 7 | +# (collection Wix), rendues côté serveur — le HTML contient le titre, le | |
| 8 | +# statut (« Disponible »/« Loué »), chambres/sdb/pi², le prix « … $ / mois », | |
| 9 | +# la description riche (ligne « Adresse: … ») et la galerie wixstatic. | |
| 10 | +# Index = liens du répéteur de la page d'accueil ; external_id = slug ; | |
| 11 | +# fiches détail via cache BD (clé = hash du répéteur : tout changement | |
| 12 | +# d'accueil déclenche la relecture des fiches). | |
| 13 | +# ----------------------------------------------------------------------------- | |
| 14 | +from __future__ import annotations | |
| 15 | + | |
| 16 | +import hashlib | |
| 17 | +import re | |
| 18 | +import unicodedata | |
| 19 | +from urllib.parse import unquote | |
| 20 | + | |
| 21 | +from bs4 import BeautifulSoup | |
| 22 | + | |
| 23 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 24 | +from .base import BaseConnector | |
| 25 | + | |
| 26 | +BASE = "https://www.leshabitationssf.com" | |
| 27 | +LIST_URL = f"{BASE}/" | |
| 28 | + | |
| 29 | +# id du média wixstatic (« 5ae170_…~mv2.png ») pour dédupliquer la galerie | |
| 30 | +_MEDIA_ID = re.compile(r"/media/([^/]+~mv2\.\w+)") | |
| 31 | + | |
| 32 | +_CITIES = [ | |
| 33 | + ("saint-charles", "Saint-Charles-Borromée"), | |
| 34 | + ("st-charles", "Saint-Charles-Borromée"), | |
| 35 | + ("notre-dame-des-prairies", "Notre-Dame-des-Prairies"), | |
| 36 | + ("saint-felix", "Saint-Félix-de-Valois"), | |
| 37 | + ("st-felix", "Saint-Félix-de-Valois"), | |
| 38 | + ("joliette", "Joliette"), | |
| 39 | + ("piedmont", "Piedmont"), | |
| 40 | + ("saint-paul", "Saint-Paul"), | |
| 41 | +] | |
| 42 | + | |
| 43 | +_STATUTS_PARTIS = re.compile(r"(?i)^(lou[ée]e?|non disponible|r[ée]serv[ée]e?)$") | |
| 44 | + | |
| 45 | + | |
| 46 | +def _strip_accents(s: str) -> str: | |
| 47 | + return "".join(c for c in unicodedata.normalize("NFD", s) | |
| 48 | + if unicodedata.category(c) != "Mn") | |
| 49 | + | |
| 50 | + | |
| 51 | +def _slug(s: str) -> str: | |
| 52 | + s = _strip_accents(unquote(s).lower()) | |
| 53 | + return re.sub(r"[^a-z0-9]+", "-", s).strip("-") | |
| 54 | + | |
| 55 | + | |
| 56 | +def _find_city(txt: str) -> str: | |
| 57 | + low = re.sub(r"[\s_]+", "-", _strip_accents(txt.lower())) | |
| 58 | + for key, name in _CITIES: | |
| 59 | + if key in low: | |
| 60 | + return name | |
| 61 | + return "" | |
| 62 | + | |
| 63 | + | |
| 64 | +class HabitationsSFConnector(BaseConnector): | |
| 65 | + source_id = "habitations_sf" | |
| 66 | + request_delay = 0.8 | |
| 67 | + max_details = 25 # garde-fou fiches détail (vraies requêtes par sync) | |
| 68 | + | |
| 69 | + def fetch(self) -> list[Listing]: | |
| 70 | + html = self.get(LIST_URL).text | |
| 71 | + soup = BeautifulSoup(html, "html.parser") | |
| 72 | + # liens du répéteur d'accueil (ordre conservé, dédupliqués) | |
| 73 | + hrefs: list[str] = [] | |
| 74 | + for a in soup.select('a[href*="copy-of-location/"]'): | |
| 75 | + href = a["href"] | |
| 76 | + if href.startswith("/"): | |
| 77 | + href = BASE + href | |
| 78 | + if href not in hrefs: | |
| 79 | + hrefs.append(href) | |
| 80 | + # clé de cache : hash des liens + du texte du répéteur (prix affichés) — | |
| 81 | + # tout changement sur l'accueil déclenche la relecture des fiches | |
| 82 | + idx_txt = " ".join(hrefs) + re.sub( | |
| 83 | + r"\s+", " ", | |
| 84 | + " ".join(el.get_text(" ", strip=True) | |
| 85 | + for el in soup.select('[data-testid="richTextElement"]'))) | |
| 86 | + index_key = hashlib.sha1(idx_txt.encode("utf-8")).hexdigest() | |
| 87 | + | |
| 88 | + self._fetched = 0 | |
| 89 | + listings: list[Listing] = [] | |
| 90 | + for href in hrefs: | |
| 91 | + ext = _slug(href.rsplit("/", 1)[-1]) | |
| 92 | + if not ext: | |
| 93 | + continue | |
| 94 | + try: | |
| 95 | + payload = self.detail(ext, index_key, | |
| 96 | + lambda u=href: self._fetch_detail(u)) | |
| 97 | + except Exception: | |
| 98 | + continue | |
| 99 | + lst = self._build(ext, href, payload) | |
| 100 | + if lst is not None: | |
| 101 | + listings.append(lst) | |
| 102 | + return listings | |
| 103 | + | |
| 104 | + # -- fiche détail (page dynamique Wix) ---------------------------------------- | |
| 105 | + def _fetch_detail(self, url: str) -> dict: | |
| 106 | + if self._fetched >= self.max_details: | |
| 107 | + raise RuntimeError("budget de fiches détail atteint") | |
| 108 | + self._fetched += 1 | |
| 109 | + html = self.get(url).text | |
| 110 | + soup = BeautifulSoup(html, "html.parser") | |
| 111 | + out: dict = {} | |
| 112 | + | |
| 113 | + title_el = soup.find("title") | |
| 114 | + out["title"] = re.sub(r"\s+", " ", title_el.get_text(strip=True)) if title_el else "" | |
| 115 | + | |
| 116 | + rts = [re.sub(r"[]", "", | |
| 117 | + re.sub(r"\s+", " ", el.get_text(" ", strip=True))).strip() | |
| 118 | + for el in soup.select('[data-testid="richTextElement"]')] | |
| 119 | + rts = [t for t in rts if t] | |
| 120 | + | |
| 121 | + # statut de l'unité (« Disponible » / « Loué ») | |
| 122 | + for t in rts: | |
| 123 | + if re.match(r"(?i)^(disponible|lou[ée]e?|non disponible|r[ée]serv[ée]e?)$", t): | |
| 124 | + out["status"] = t | |
| 125 | + break | |
| 126 | + | |
| 127 | + # champs structurés : valeur qui précède « Chambre(s) », « Salle(s) de | |
| 128 | + # bain », « Pieds² » ; prix = « <n> $ / mois » dans la séquence | |
| 129 | + def before(label_re: str) -> str: | |
| 130 | + for i, t in enumerate(rts): | |
| 131 | + if re.match(label_re, t, re.I) and i > 0: | |
| 132 | + return rts[i - 1] | |
| 133 | + return "" | |
| 134 | + out["bedrooms"] = before(r"^chambre") | |
| 135 | + out["bathrooms"] = before(r"^salle\(s\) de bain|^salles? de bain") | |
| 136 | + out["sqft"] = before(r"^pieds") | |
| 137 | + joined = " ".join(rts) | |
| 138 | + m = re.search(r"(\d[\d\s,.]*)\s*\$\s*/\s*mois", joined) | |
| 139 | + if m: | |
| 140 | + out["price_label"] = f"{m.group(1).strip()} $ / mois" | |
| 141 | + else: # certaines fiches omettent le « $ » | |
| 142 | + m = re.search(r"(\d{3,4})\s*/\s*mois", joined) | |
| 143 | + if m: | |
| 144 | + out["price_label"] = f"{m.group(1)} / mois" | |
| 145 | + | |
| 146 | + # description riche = plus long bloc de texte (contient « Adresse: … ») | |
| 147 | + long_txts = [el.get_text("\n", strip=True) | |
| 148 | + for el in soup.select('[data-testid="richTextElement"]') | |
| 149 | + if len(el.get_text(strip=True)) > 200] | |
| 150 | + if long_txts: | |
| 151 | + out["description"] = max(long_txts, key=len)[:1500] | |
| 152 | + | |
| 153 | + # galerie : images wixstatic grand format, dédupliquées par id de média | |
| 154 | + images, seen = [], set() | |
| 155 | + for im in soup.find_all("img"): | |
| 156 | + src = im.get("src") or "" | |
| 157 | + if "wixstatic.com/media/" not in src: | |
| 158 | + continue | |
| 159 | + m_id = _MEDIA_ID.search(src) | |
| 160 | + if not m_id or m_id.group(1) in seen: | |
| 161 | + continue | |
| 162 | + if not re.search(r"w_(9\d\d|\d{4,})", src): | |
| 163 | + continue # vignettes/логos : trop petits | |
| 164 | + seen.add(m_id.group(1)) | |
| 165 | + images.append(src) | |
| 166 | + out["images"] = images[:20] | |
| 167 | + return out | |
| 168 | + | |
| 169 | + # -- assemblage --------------------------------------------------------------- | |
| 170 | + def _build(self, ext: str, url: str, d: dict) -> Listing | None: | |
| 171 | + if not d: | |
| 172 | + return None | |
| 173 | + if _STATUTS_PARTIS.match(d.get("status", "")): | |
| 174 | + return None # unité louée/réservée | |
| 175 | + title = d.get("title", "") | |
| 176 | + desc = d.get("description", "") | |
| 177 | + | |
| 178 | + # adresse : ligne « Adresse: rue de la Visitation, Saint-Charles-Borromée » | |
| 179 | + address, city = "", "" | |
| 180 | + m = re.search(r"Adresse\s*:\s*([^\n]+)", desc, re.I) | |
| 181 | + if m: | |
| 182 | + parts = [p.strip() for p in m.group(1).split(",") if p.strip()] | |
| 183 | + city = _find_city(parts[-1]) if parts else "" | |
| 184 | + address = ", ".join(parts[:-1]) if city and len(parts) > 1 else m.group(1).strip() | |
| 185 | + if not city: | |
| 186 | + city = _find_city(title) or _find_city(desc) | |
| 187 | + | |
| 188 | + # disponibilité : ligne « DISPONIBLE DÈS LE 1ER AOUT 2025 » de la fiche | |
| 189 | + availability = "" | |
| 190 | + m_av = re.search(r"(DISPONIBLE\s+D[ÈE]S[^\n]*|DISPONIBLE\s+(?:LE|MAINTENANT)[^\n]*)", | |
| 191 | + desc, re.I) | |
| 192 | + if m_av: | |
| 193 | + availability = re.sub(r"\s+", " ", m_av.group(1)).strip() | |
| 194 | + elif d.get("status"): | |
| 195 | + availability = d["status"] | |
| 196 | + | |
| 197 | + amenities: list[str] = [] | |
| 198 | + if d.get("bedrooms", "").replace("-", "").strip().isdigit() or \ | |
| 199 | + re.match(r"^\d+(-\d+)?$", d.get("bedrooms", "")): | |
| 200 | + amenities.append(f"{d['bedrooms']} chambre(s)") | |
| 201 | + if re.match(r"^\d+([.,]\d+)?$", d.get("bathrooms", "")): | |
| 202 | + amenities.append(f"{d['bathrooms']} salle(s) de bain") | |
| 203 | + | |
| 204 | + area = None | |
| 205 | + if re.match(r"^\d{3,4}$", d.get("sqft", "")): | |
| 206 | + area = float(d["sqft"]) | |
| 207 | + | |
| 208 | + price_label = d.get("price_label", "") | |
| 209 | + if not price_label: | |
| 210 | + # fiche multi-typologies : « 3 1/2 À PARTIR DE 1150$ … » — on | |
| 211 | + # reprend la mention la plus basse (convention Lou-Ka « à partir de ») | |
| 212 | + fromtags = re.findall(r"à partir de\s*(\d[\d\s]*)\s*\$", desc, re.I) | |
| 213 | + if fromtags: | |
| 214 | + lo = min(int(x.replace(" ", "")) for x in fromtags) | |
| 215 | + price_label = f"À partir de {lo}$" | |
| 216 | + return Listing( | |
| 217 | + source=self.source_id, | |
| 218 | + external_id=ext, | |
| 219 | + url=url, | |
| 220 | + title=title, | |
| 221 | + address=address, | |
| 222 | + city=city, | |
| 223 | + unit_type=normalize_unit_type(title), | |
| 224 | + price=parse_price(price_label), | |
| 225 | + price_label=price_label, | |
| 226 | + availability=availability, | |
| 227 | + area_sqft=area, | |
| 228 | + description=desc, | |
| 229 | + amenities=amenities, | |
| 230 | + images=d.get("images") or [], | |
| 231 | + ) | |
added
louka/connectors/lambert.py
+113 −0
@@ -0,0 +1,113 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/lambert.py : connecteur Société Immobilière Lambert | |
| 5 | +# (lambertimmobilier.com — Louiseville, Yamachiche, Mauricie). WordPress | |
| 6 | +# avec thème custom « cognitif-starter » : la page /logements-disponibles/ | |
| 7 | +# liste des <article class="apartment"> (type h2, prix, <address>, photo en | |
| 8 | +# background-image). On ne garde que la section « Nos logements à louer » | |
| 9 | +# (les <article> suivant le titre « Projets à venir » = terrains, exclus). | |
| 10 | +# Aucune page détail ; external_id = slug de l'adresse. 1 requête par sync. | |
| 11 | +# ----------------------------------------------------------------------------- | |
| 12 | +from __future__ import annotations | |
| 13 | + | |
| 14 | +import re | |
| 15 | +import unicodedata | |
| 16 | + | |
| 17 | +from bs4 import BeautifulSoup | |
| 18 | + | |
| 19 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 20 | +from .base import BaseConnector | |
| 21 | + | |
| 22 | +BASE = "https://lambertimmobilier.com" | |
| 23 | +LIST_URL = f"{BASE}/logements-disponibles/" | |
| 24 | + | |
| 25 | +_BG_URL_RE = re.compile(r"background-image\s*:\s*url\(['\"]?([^'\")]+)") | |
| 26 | +_CITIES = [ | |
| 27 | + ("louiseville", "Louiseville"), | |
| 28 | + ("yamachiche", "Yamachiche"), | |
| 29 | + ("trois-rivieres", "Trois-Rivières"), | |
| 30 | +] | |
| 31 | + | |
| 32 | + | |
| 33 | +def _strip_accents(s: str) -> str: | |
| 34 | + return "".join(c for c in unicodedata.normalize("NFD", s) | |
| 35 | + if unicodedata.category(c) != "Mn") | |
| 36 | + | |
| 37 | + | |
| 38 | +def _slug(s: str) -> str: | |
| 39 | + s = _strip_accents(s.lower()) | |
| 40 | + return re.sub(r"[^a-z0-9]+", "-", s).strip("-") | |
| 41 | + | |
| 42 | + | |
| 43 | +class LambertConnector(BaseConnector): | |
| 44 | + source_id = "lambert" | |
| 45 | + request_delay = 0.7 | |
| 46 | + | |
| 47 | + def fetch(self) -> list[Listing]: | |
| 48 | + html = self.get(LIST_URL).text | |
| 49 | + soup = BeautifulSoup(html, "html.parser") | |
| 50 | + listings: dict[str, Listing] = {} | |
| 51 | + in_projects = False | |
| 52 | + for el in soup.find_all(["h1", "h2", "article"]): | |
| 53 | + if el.name in ("h1", "h2"): | |
| 54 | + txt = el.get_text(" ", strip=True) | |
| 55 | + if re.search(r"projets? à venir", txt, re.I): | |
| 56 | + in_projects = True # terrains/projets : hors annonces | |
| 57 | + continue | |
| 58 | + if in_projects or "apartment" not in (el.get("class") or []): | |
| 59 | + continue | |
| 60 | + try: | |
| 61 | + self._parse_card(el, listings) | |
| 62 | + except Exception: | |
| 63 | + continue | |
| 64 | + return list(listings.values()) | |
| 65 | + | |
| 66 | + def _parse_card(self, card, listings: dict[str, Listing]) -> None: | |
| 67 | + head = card.select_one("h2") | |
| 68 | + head_txt = re.sub(r"\s+", " ", head.get_text(" ", strip=True)) if head else "" | |
| 69 | + if re.search(r"terrain|commercial|local\b", head_txt, re.I): | |
| 70 | + return | |
| 71 | + addr_el = card.find("address") | |
| 72 | + address_full = re.sub(r"\s+", " ", | |
| 73 | + addr_el.get_text(" ", strip=True)) if addr_el else "" | |
| 74 | + if not address_full and not head_txt: | |
| 75 | + return | |
| 76 | + | |
| 77 | + # ville en fin d'adresse (« 131 St-Ubald Louiseville ») | |
| 78 | + city, address = "", address_full | |
| 79 | + low = _strip_accents(address_full.lower()) | |
| 80 | + for key, name in _CITIES: | |
| 81 | + if key in low: | |
| 82 | + city = name | |
| 83 | + address = re.sub(rf",?\s*{key}\s*$", "", address_full, | |
| 84 | + flags=re.I).strip(" ,") | |
| 85 | + break | |
| 86 | + | |
| 87 | + price_el = card.select_one(".apartment--price") | |
| 88 | + price_label = re.sub(r"\s+", " ", | |
| 89 | + price_el.get_text(" ", strip=True)) if price_el else "" | |
| 90 | + | |
| 91 | + images: list[str] = [] | |
| 92 | + img_div = card.select_one("div.img[style]") | |
| 93 | + if img_div: | |
| 94 | + m = _BG_URL_RE.search(img_div["style"]) | |
| 95 | + if m and m.group(1).startswith("http"): | |
| 96 | + images.append(m.group(1)) | |
| 97 | + | |
| 98 | + ext = _slug(address_full or head_txt) | |
| 99 | + if not ext or ext in listings: | |
| 100 | + return | |
| 101 | + title = f"{head_txt} — {address_full}" if head_txt else address_full | |
| 102 | + listings[ext] = Listing( | |
| 103 | + source=self.source_id, | |
| 104 | + external_id=ext, | |
| 105 | + url=LIST_URL, | |
| 106 | + title=title, | |
| 107 | + address=address, | |
| 108 | + city=city, | |
| 109 | + unit_type=normalize_unit_type(head_txt), | |
| 110 | + price=parse_price(price_label), | |
| 111 | + price_label=price_label, | |
| 112 | + images=images, | |
| 113 | + ) | |
added
louka/connectors/moderno.py
+215 −0
@@ -0,0 +1,215 @@ | ||
| 1 | +# ----------------------------------------------------------------------------- | |
| 2 | +# Lou-Ka — Agrégateur de logements à louer (province de Québec) | |
| 3 | +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai | |
| 4 | +# connectors/moderno.py : connecteur Moderno Construction (moderno.immo) | |
| 5 | +# Promoteur-gestionnaire de Lanaudière (Joliette — Aqua Roca, Domaine du | |
| 6 | +# Sentier Riverain). Site custom SSR très propre : /logements-a-louer liste | |
| 7 | +# des cartes BEM (titre, disponibilité, prix, adresse, badge « Loué »), | |
| 8 | +# chaque carte pointe vers /logements-a-louer/<projet>/<CODE> ; le CODE | |
| 9 | +# (= champ « Référence » de la fiche) sert d'external_id stable. La fiche | |
| 10 | +# détail (via cache BD) ajoute chambres/sdb, unité/niveau/vue/superficie, | |
| 11 | +# inclusions, commodités, description et galerie. | |
| 12 | +# ----------------------------------------------------------------------------- | |
| 13 | +from __future__ import annotations | |
| 14 | + | |
| 15 | +import hashlib | |
| 16 | +import re | |
| 17 | + | |
| 18 | +from bs4 import BeautifulSoup | |
| 19 | + | |
| 20 | +from ..schema import Listing, normalize_unit_type, parse_price | |
| 21 | +from .base import BaseConnector | |
| 22 | + | |
| 23 | +BASE = "https://moderno.immo" | |
| 24 | +LIST_URL = f"{BASE}/logements-a-louer" | |
| 25 | + | |
| 26 | +_CARD = "appartements-a-louer__liste__item" | |
| 27 | +_DET = "details-appartement__details" | |
| 28 | + | |
| 29 | +# vignettes DigitalOcean Spaces : ".../<id>/conversions/<nom>-thumb.jpg" | |
| 30 | +# -> pleine taille ".../<id>/<nom>.jpg" (même schéma que les images de cartes) | |
| 31 | +_THUMB_RE = re.compile(r"/conversions/(.+?)-(?:first_)?thumb(\.\w+)$") | |
| 32 | + | |
| 33 | + | |
| 34 | +def _full_img(url: str) -> str: | |
| 35 | + return _THUMB_RE.sub(r"/\1\2", url.strip()) | |
| 36 | + | |
| 37 | + | |
| 38 | +class ModernoConnector(BaseConnector): | |
| 39 | + source_id = "moderno" | |
| 40 | + request_delay = 0.7 | |
| 41 | + max_details = 40 # garde-fou fiches détail (vraies requêtes par sync) | |
| 42 | + | |
| 43 | + def fetch(self) -> list[Listing]: | |
| 44 | + html = self.get(LIST_URL).text | |
| 45 | + soup = BeautifulSoup(html, "html.parser") | |
| 46 | + listings: dict[str, Listing] = {} | |
| 47 | + for card in soup.select(f"a.{_CARD}[href]"): | |
| 48 | + try: | |
| 49 | + self._parse_card(card, listings) | |
| 50 | + except Exception: | |
| 51 | + continue | |
| 52 | + | |
| 53 | + self._fetched = 0 | |
| 54 | + for lst in listings.values(): | |
| 55 | + key = hashlib.sha1( | |
| 56 | + f"{lst.title}|{lst.price_label}|{lst.availability}|{lst.address}" | |
| 57 | + .encode("utf-8")).hexdigest() | |
| 58 | + try: | |
| 59 | + payload = self.detail(lst.external_id, key, | |
| 60 | + lambda u=lst.url: self._fetch_detail(u)) | |
| 61 | + except Exception: | |
| 62 | + continue | |
| 63 | + self._apply_detail(lst, payload) | |
| 64 | + return list(listings.values()) | |
| 65 | + | |
| 66 | + # -- carte liste ------------------------------------------------------------ | |
| 67 | + def _parse_card(self, card, listings: dict[str, Listing]) -> None: | |
| 68 | + url = card["href"] | |
| 69 | + if url.startswith("/"): | |
| 70 | + url = BASE + url | |
| 71 | + m = re.search(r"/logements-a-louer/([^/]+)/([A-Z0-9]+)/?$", url) | |
| 72 | + if not m: | |
| 73 | + return | |
| 74 | + project_slug, code = m.group(1), m.group(2) | |
| 75 | + if code in listings: | |
| 76 | + return | |
| 77 | + | |
| 78 | + def _txt(suffix: str) -> str: | |
| 79 | + el = card.select_one(f".{_CARD}__{suffix}") | |
| 80 | + return re.sub(r"\s+", " ", el.get_text(" ", strip=True)) if el else "" | |
| 81 | + | |
| 82 | + # badge « Loué » : annonce déjà partie, on l'ignore | |
| 83 | + if re.search(r"lou[ée]", _txt("rented"), re.I): | |
| 84 | + return | |
| 85 | + | |
| 86 | + title = _txt("titre") # « 4 1/2 - Domaine du Sentier Riverain » | |
| 87 | + address_full = _txt("adresse") # « 105-1002 rue Gustave-Guertin, Joliette » | |
| 88 | + parts = [p.strip() for p in address_full.split(",") if p.strip()] | |
| 89 | + address = re.sub(r"\s+", " ", parts[0]) if parts else "" | |
| 90 | + city = parts[-1] if len(parts) > 1 else "" | |
| 91 | + price_label = _txt("prix") # « 1 915 $ par mois » | |
| 92 | + message = _txt("message") # accroche rédigée par Moderno | |
| 93 | + | |
| 94 | + images: list[str] = [] | |
| 95 | + img = card.select_one("img[src]") | |
| 96 | + if img and img["src"].startswith("http"): | |
| 97 | + images.append(_full_img(img["src"])) | |
| 98 | + | |
| 99 | + listings[code] = Listing( | |
| 100 | + source=self.source_id, | |
| 101 | + external_id=code, # champ « Référence » de la fiche | |
| 102 | + url=url, | |
| 103 | + title=title, | |
| 104 | + address=address, | |
| 105 | + city=city, | |
| 106 | + unit_type=normalize_unit_type(title), | |
| 107 | + price=parse_price(price_label), | |
| 108 | + price_label=price_label, | |
| 109 | + availability=_txt("disponibilite"), # « Disponible 1er octobre 2026 » | |
| 110 | + description=message, | |
| 111 | + details={"project": project_slug}, | |
| 112 | + images=images, | |
| 113 | + ) | |
| 114 | + | |
| 115 | + # -- fiche détail ------------------------------------------------------------- | |
| 116 | + def _fetch_detail(self, url: str) -> dict: | |
| 117 | + """Chambres/sdb, chiffres (unité, niveau, vue, superficie, dispo), | |
| 118 | + inclusions + commodités, description et galerie pleine taille.""" | |
| 119 | + if self._fetched >= self.max_details: | |
| 120 | + raise RuntimeError("budget de fiches détail atteint") | |
| 121 | + self._fetched += 1 | |
| 122 | + html = self.get(url).text | |
| 123 | + soup = BeautifulSoup(html, "html.parser") | |
| 124 | + out: dict = {} | |
| 125 | + | |
| 126 | + det = soup.select_one(f"section.{_DET}") | |
| 127 | + if det is None: | |
| 128 | + return out | |
| 129 | + | |
| 130 | + # adresse complète de la fiche (parfois plus propre que la carte) | |
| 131 | + addr = det.select_one(f".{_DET}__adresse") | |
| 132 | + if addr: | |
| 133 | + out["address_full"] = re.sub(r"\s+", " ", addr.get_text(" ", strip=True)) | |
| 134 | + | |
| 135 | + # « 1 chambre », « 1 salle de bain » | |
| 136 | + out["pieces"] = [re.sub(r"\s+", " ", p.get_text(" ", strip=True)) | |
| 137 | + for p in det.select(f".{_DET}__pieces__piece")] | |
| 138 | + | |
| 139 | + # paires libellé/valeur : Unité, Niveau, Vue, Superficie, Disponibilité, Référence | |
| 140 | + chiffres: dict[str, str] = {} | |
| 141 | + for div in det.select(f".{_DET}__chiffres > div"): | |
| 142 | + ps = div.find_all("p") | |
| 143 | + if len(ps) >= 2: | |
| 144 | + lab = ps[0].get_text(" ", strip=True) | |
| 145 | + val = re.sub(r"\s+", " ", ps[1].get_text(" ", strip=True)) | |
| 146 | + if lab and val: | |
| 147 | + chiffres[lab] = val | |
| 148 | + out["chiffres"] = chiffres | |
| 149 | + | |
| 150 | + # Inclusions (eau chaude, internet…) et Commodités (logement + immeuble) | |
| 151 | + feats: list[str] = [] | |
| 152 | + for box in det.select(f".{_DET}__inclusions, .{_DET}__commodites"): | |
| 153 | + items = [re.sub(r"\s+", " ", li.get_text(" ", strip=True)) | |
| 154 | + for li in box.find_all("li")] | |
| 155 | + if not items: # listes parfois en <p> | |
| 156 | + items = [re.sub(r"\s+", " ", p.get_text(" ", strip=True)) | |
| 157 | + for p in box.find_all("p")][1:] | |
| 158 | + head = box.find(["h4", "h5", "div"]) | |
| 159 | + head_txt = head.get_text(" ", strip=True) if head else "" | |
| 160 | + if re.match(r"(?i)localisation", head_txt): | |
| 161 | + continue # adresse déjà captée | |
| 162 | + for it in items: | |
| 163 | + if it and it not in feats and not re.match(r"(?i)inclusions|commodit|caractéristiques|localisation", it): | |
| 164 | + feats.append(it) | |
| 165 | + out["features"] = feats[:40] | |
| 166 | + | |
| 167 | + # description : accroche + paragraphes rédigés de la fiche | |
| 168 | + msg = det.select_one(f".{_DET}__message") | |
| 169 | + paras = [msg.get_text(" ", strip=True)] if msg else [] | |
| 170 | + for p in det.find_all("p"): | |
| 171 | + t = re.sub(r"\s+", " ", p.get_text(" ", strip=True)) | |
| 172 | + if len(t) > 60 and t not in paras: | |
| 173 | + paras.append(t) | |
| 174 | + out["description"] = "\n".join(paras)[:1200] | |
| 175 | + | |
| 176 | + # galerie (vignettes /conversions/ -> pleine taille) | |
| 177 | + images: list[str] = [] | |
| 178 | + for img in soup.select(".details-appartement__introduction__galerie img[src]"): | |
| 179 | + u = _full_img(img["src"]) | |
| 180 | + if u.startswith("http") and u not in images: | |
| 181 | + images.append(u) | |
| 182 | + out["images"] = images[:30] | |
| 183 | + return out | |
| 184 | + | |
| 185 | + def _apply_detail(self, lst: Listing, d: dict) -> None: | |
| 186 | + if not d: | |
| 187 | + return | |
| 188 | + ch = d.get("chiffres") or {} | |
| 189 | + details = dict(lst.details) | |
| 190 | + for lab, key in (("Unité", "unit_number"), ("Niveau", "floor"), | |
| 191 | + ("Vue", "view"), ("Référence", "reference")): | |
| 192 | + if ch.get(lab): | |
| 193 | + details[key] = ch[lab] | |
| 194 | + lst.details = details | |
| 195 | + m = re.match(r"([\d\s,.]+)\s*pi", ch.get("Superficie", "")) | |
| 196 | + if m: | |
| 197 | + try: | |
| 198 | + lst.area_sqft = float(m.group(1).replace(" ", "").replace(",", "")) | |
| 199 | + except ValueError: | |
| 200 | + pass | |
| 201 | + if ch.get("Disponibilité") and not lst.availability: | |
| 202 | + lst.availability = ch["Disponibilité"] | |
| 203 | + if d.get("address_full") and not lst.address: | |
| 204 | + parts = [p.strip() for p in d["address_full"].split(",")] | |
| 205 | + lst.address = parts[0] | |
| 206 | + if len(parts) > 1 and not lst.city: | |
| 207 | + lst.city = parts[-1] | |
| 208 | + extra = (d.get("pieces") or []) + (d.get("features") or []) | |
| 209 | + if extra: | |
| 210 | + lst.amenities = list(dict.fromkeys(lst.amenities + extra)) | |
| 211 | + if d.get("description"): | |
| 212 | + lst.description = d["description"] | |
| 213 | + if d.get("images"): | |
| 214 | + merged = d["images"] + [u for u in lst.images if u not in d["images"]] | |
| 215 | + lst.images = merged[:30] | |
added
reports/connectors/acceslogis_gb.md
+43 −0
@@ -0,0 +1,43 @@ | ||
| 1 | +# acceslogis_gb — Accès Logis GB (acceslogisgb.com) | |
| 2 | +- site: https://acceslogisgb.com (builder mono-page, HTML plat sans charset déclaré — décodé UTF-8 à la main) | |
| 3 | +- méthode: html — 1 seule requête par sync (page d'accueil, section « LOGEMENTS DISPONIBLES ») | |
| 4 | +- annonces: 11 (Sainte-Élisabeth ×2, Joliette ×1, Saint-Ambroise-de-Kildare ×3, Shawinigan ×5 ; 2 cartes mini-entrepôts exclues) | |
| 5 | +- couverture (sur 11): prix 100 %, type 100 %, dispo 100 % (« Disponible maintenant »), ville 100 %, description 100 %, image 100 % (1/carte), adresse 27 % (publiée seulement quand le n° civique figure au texte) | |
| 6 | +- fixture: ok (1 requête) · test: ok (2 verts) · sync: 11 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Cartes = colonnes des grilles `div.columnswithgap-02` : | |
| 10 | + - titre `<p.font-026><b>` (« 3 1/2, Rang du Ruisseau, Ste-Élisabeth ») ; | |
| 11 | + - description `<p.font-014>` dont on **extrait les <span>** de fin : | |
| 12 | + « Disponible maintenant » → availability, « 1150$ » → price_label | |
| 13 | + (le « PAR MOIS » résiduel est retiré de la description) ; | |
| 14 | + - photo relative → URL absolue ; | |
| 15 | + - unit_type : titre puis repli description (validé par fullmatch, jamais le | |
| 16 | + titre brut) ; les titres-adresses (« 84 Rue Précieux-Sang ») passent par | |
| 17 | + la description (« Logement 4 1/2 au 1er étage ») ; | |
| 18 | + - adresse : motif « situé au <n° civique …> à » de la description, sinon | |
| 19 | + titre commençant par un n° civique ; | |
| 20 | + - ville : dictionnaire (Ste-Élisabeth, St-Ambroise-de-Kildare, Joliette, | |
| 21 | + Shawinigan, Crabtree, Berthierville…) sur titre+description sans accents. | |
| 22 | +- external_id = slug du titre + **repère d'étage** de la description | |
| 23 | + (« demi sous-sol », « 2e étage »…) car les titres se répètent entre étages | |
| 24 | + d'un même immeuble ; ultime repli = hash du texte (jamais atteint à ce jour). | |
| 25 | +- Superficie (« 1050 pieds carrés ») : laissée à `finalize()` (description). | |
| 26 | + | |
| 27 | +## Champs indisponibles à la source | |
| 28 | +- Pages détail, superficies systématiques, GPS, dates de dispo précises | |
| 29 | + (tout est « Disponible maintenant »), animaux/meublé. | |
| 30 | + | |
| 31 | +## Fragilités | |
| 32 | +- Exclusion par mots-clés « entrepôt/commercial/local » : une nouvelle | |
| 33 | + catégorie hors-logement demanderait un mot-clé de plus. | |
| 34 | +- Si deux logements identiques (même titre, même étage) coexistaient un jour, | |
| 35 | + le second recevrait un suffixe hash — id stable tant que le texte l'est. | |
| 36 | +- Serveur sans charset : si le site migrait d'encodage, l'UTF-8 forcé | |
| 37 | + casserait visiblement (test fixture). | |
| 38 | + | |
| 39 | +## Échantillon | |
| 40 | +- 3-1-2-rang-du-ruisseau-ste-elisabeth : 3½, 2510 Rang du Ruisseau, | |
| 41 | + Sainte-Élisabeth, 1150 $/mois, disponible maintenant. | |
| 42 | +- 4-1-2-rue-frigon-a-shawinigan-3e-etage : 4½ neuf, rue Frigon Shawinigan, | |
| 43 | + 1350 $/mois, disponible maintenant. | |
added
reports/connectors/ferrovia.md
+40 −0
@@ -0,0 +1,40 @@ | ||
| 1 | +# ferrovia — Ferrovia (ferroviamirabel.com) | |
| 2 | +- site: https://www.ferroviamirabel.com (WordPress + wpDataTables rendues côté serveur ; projet de condos locatifs neufs à Mirabel, secteur Saint-Janvier, 4 phases) | |
| 3 | +- méthode: html — 3 requêtes par sync (pages « Disponibilités » phases 1, 3 et 4 ; la phase 2 est « à venir », sans page) | |
| 4 | +- annonces: 23 (phase 3 ×1 « ÉTÉ 2026 », phase 4 ×22 « Automne 2026 » ; les lignes « Loué » — la quasi-totalité des phases 1 et 3 — sont filtrées) | |
| 5 | +- couverture (sur 23): type 100 %, superficie 100 %, dispo 100 %, ville/secteur 100 %, étage/modèle 100 %, plan PDF ~87 % — **prix 0 % : la colonne PRIX existe mais est vide sur le site** (jamais inventé) | |
| 6 | +- fixture: ok (3 requêtes) · test: ok (2 verts) · sync: 23 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- `<table.wpDataTable>` de chaque page phase, colonnes repérées par leur | |
| 10 | + en-tête (wdt_ID, UNITÉ, MODÈLE, ÉTAGE, PIÈCES, SUPERFICIE p.c., | |
| 11 | + SALLE D'EAU SUPP., DISPONIBILITÉ, PRIX, STATUT, PLAN) : | |
| 12 | + - STATUT ≠ « Disponible » → ligne ignorée (Loué) ; | |
| 13 | + - external_id = `phase<N>-<unité>` (ex. phase4-101) ; | |
| 14 | + - PIÈCES (« 4 1/2 ») → unit_type (fullmatch, lignes non résidentielles | |
| 15 | + ignorées) ; SUPERFICIE → area_sqft ; DISPONIBILITÉ (« Automne 2026 ») | |
| 16 | + → availability ; MODÈLE/ÉTAGE → details ; lien PDF de la colonne PLAN | |
| 17 | + → details.plan_pdf ; « SALLE D'EAU SUPP. = OUI » → commodité. | |
| 18 | +- Note du site reprise fidèlement : « les logements sont non-fumeurs et les | |
| 19 | + animaux ne sont pas admis » → pets="non", details.smoking=false, | |
| 20 | + et phrase en description. | |
| 21 | +- Ville/secteur : Mirabel / Saint-Janvier (énoncé en tête de chaque page ; | |
| 22 | + aucune adresse civique publiée sur les pages disponibilités). | |
| 23 | + | |
| 24 | +## Champs indisponibles à la source | |
| 25 | +- **Prix** (colonne vide à ce jour — le connecteur les remontera dès qu'ils | |
| 26 | + seront saisis), adresse civique, photos par unité (la page « photos des | |
| 27 | + unités » est générique, non associée), GPS. | |
| 28 | + | |
| 29 | +## Fragilités | |
| 30 | +- wpDataTables sert ici le HTML complet dans la page ; si le site passait au | |
| 31 | + chargement AJAX (option du plugin), la table serait vide (test fixture). | |
| 32 | +- Les en-têtes de colonnes sont mappés par mot-clé : un renommage majeur | |
| 33 | + (« PIÈCES » → autre) casserait proprement. | |
| 34 | +- Livraisons « Automne 2026 » : parse_availability_date ne sait pas convertir | |
| 35 | + une saison — availability_date restera nulle, le texte brut est conservé. | |
| 36 | + | |
| 37 | +## Échantillon | |
| 38 | +- phase4-101 : 4½ modèle F, 1er étage, 1200 pi², salle d'eau supp., | |
| 39 | + dispo Automne 2026, plan PDF. | |
| 40 | +- phase3-603 : 3½ modèle E', 6e étage, 950 pi², dispo ÉTÉ 2026. | |
added
reports/connectors/fournelle.md
+40 −0
@@ -0,0 +1,40 @@ | ||
| 1 | +# fournelle — Appartements Fournelle / Groupe Fournelle (groupefournelle.com) | |
| 2 | +- site: https://www.groupefournelle.com/appartements-fournelle/ (WordPress, page-brochure par projets ; constructeur-gestionnaire de Bécancour) | |
| 3 | +- méthode: html — 1 requête par sync ; annonces = lignes de prix par unité du bloc « Domaine de l'Île » (les blocs « Pour information : … » sans prix ne produisent rien) | |
| 4 | +- annonces: 4 (immeuble neuf 8plex « vue sur le fleuve » : 2×5½ sous-sol 1300 $, 2×5½ RDC 1525 $, 2×4½ 2e étage 1400 $, 2×5½ 3e étage 1525 $) | |
| 5 | +- couverture (sur 4): prix 100 %, type 100 %, dispo 100 % (« disponible à partir du 1er Mai 2026 »), ville 100 %, commodités 100 %, images 100 % (photos + plans), description 100 % — adresse civique jamais publiée | |
| 6 | +- fixture: ok (1 requête) · test: ok (2 verts) · sync: 4 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Blocs `div.item > div.content` : h2 = titre du projet, lien → slug projet. | |
| 10 | +- Motif « <n> × <type ½> au <étage> – <prix $> » (regex tolérante aux tirets | |
| 11 | + – et - ; l'étage peut contenir un trait d'union, « sous-sol » — le prix est | |
| 12 | + ancré sur un chiffre) → **une annonce par ligne typologie/étage** ; | |
| 13 | + external_id = slug projet+type+étage (domaine-de-lile-512-sous-sol) ; | |
| 14 | + details.units_on_line conserve le « 2 × » (nombre d'unités de la ligne). | |
| 15 | +- Disponibilité : « disponible à partir du 1er Mai 2026 » (texte du bloc). | |
| 16 | +- `<ul>` du bloc → amenities (îlot de cuisine, thermopompe, terrasse…) ; | |
| 17 | + phrases de conditions (« Immeuble sans fumée et sans animaux », « non | |
| 18 | + chauffé, non éclairé », « Enquête de crédit… ») → description (l'extraction | |
| 19 | + commune en déduit animaux/fumeur — rien de deviné dans le connecteur). | |
| 20 | +- Galerie swiper du bloc (photos + plans pleine taille) → images (15 max). | |
| 21 | +- Ville : Bécancour — titre de la page (« Appartements à louer à Bécancour »). | |
| 22 | + | |
| 23 | +## Champs indisponibles à la source | |
| 24 | +- Adresse civique (le site situe le développement « rue des Muguets, secteur | |
| 25 | + Ste-Angèle » dans un autre paragraphe, sans n° civique — non rattaché | |
| 26 | + d'office au bloc), superficie, GPS, unités individuelles (l'inventaire | |
| 27 | + est agrégé par ligne de prix). | |
| 28 | + | |
| 29 | +## Fragilités | |
| 30 | +- Brochure rédigée à la main : toute reformulation des lignes de prix casse | |
| 31 | + le motif (le test fixture le détecterait) ; c'est le format du site depuis | |
| 32 | + la mise en ligne du projet. | |
| 33 | +- Si une ligne disparaît (étage complet loué), l'annonce est retirée au diff — | |
| 34 | + comportement voulu. | |
| 35 | + | |
| 36 | +## Échantillon | |
| 37 | +- domaine-de-lile-512-sous-sol : 5½ au sous-sol, 1300 $/mois, dispo 1er mai | |
| 38 | + 2026, stationnement inclus, 15 visuels (photos, plans). | |
| 39 | +- domaine-de-lile-412-2-e-etage : 4½ au 2e étage, 1400 $/mois, vue sur le | |
| 40 | + fleuve. | |
added
reports/connectors/habitations_sf.md
+46 −0
@@ -0,0 +1,46 @@ | ||
| 1 | +# habitations_sf — Les Habitations SF / S&F Gestion (leshabitationssf.com) | |
| 2 | +- site: https://www.leshabitationssf.com (Wix — mais les pages dynamiques `/copy-of-location/<slug>` de la collection d'annonces sont rendues côté serveur : parsable sans JS ni Firecrawl) | |
| 3 | +- méthode: html — accueil (répéteur d'annonces) + 1 fiche/annonce via cache BD (clé = hash des liens + textes du répéteur : tout changement d'accueil déclenche la relecture des fiches) | |
| 4 | +- annonces: 7 (Saint-Charles-Borromée ×5, Piedmont ×1, Saint-Félix-de-Valois ×1) | |
| 5 | +- couverture (sur 7): type 100 %, ville 100 %, dispo 100 %, prix 86 % (une fiche multi-typologies « à partir de », une fiche sans prix publié), chambres/sdb 100 %, images 100 %, description ~86 %, adresse 43 % (rue sans n° civique quand publiée) | |
| 6 | +- fixture: ok (8 requêtes) · test: ok (2 verts) · sync: 7 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Index : liens `a[href*="copy-of-location/"]` de l'accueil (dédupliqués, | |
| 10 | + ordre conservé) ; **external_id = slug d'URL décodé et translittéré** | |
| 11 | + (« appartement-3-1%2F2-%C3%A0-louer » → appartement-3-1-2-a-louer). | |
| 12 | +- Fiche (page dynamique Wix, éléments `[data-testid="richTextElement"]`) : | |
| 13 | + - `<title>` → title (« APPARTEMENT 3 1/2 À LOUER À SAINT-CHARLES BORROMÉE ») | |
| 14 | + → unit_type ; | |
| 15 | + - statut isolé (« Disponible » / « Loué » / « Réservé ») → les unités | |
| 16 | + parties sont filtrées ; | |
| 17 | + - séquence structurée : valeur précédant « Chambre(s) », « Salle(s) de | |
| 18 | + bain », « Pieds² » → amenities/area ; « <n> $ / mois » (ou « <n> / mois » | |
| 19 | + sans $, variante du site) → price_label ; | |
| 20 | + - plus long bloc riche (>200 car.) → description ; sa ligne « Adresse: … » | |
| 21 | + → address + city (dictionnaire de villes sans accents/espaces) ; sa ligne | |
| 22 | + « DISPONIBLE DÈS LE … » → availability ; | |
| 23 | + - fiche multi-typologies (« 3 1/2 À PARTIR DE 1150$… ») → price_label | |
| 24 | + « À partir de <min>$ » (convention Lou-Ka du prix plancher) ; | |
| 25 | + - galerie : images wixstatic grand format (w_900+), dédupliquées par id de | |
| 26 | + média `…~mv2` (le carrousel duplique chaque visuel). | |
| 27 | +- Animaux (« Animaux acceptés sous certaines conditions ») : laissés à | |
| 28 | + l'extraction commune sur la description (jamais devinés ici). | |
| 29 | + | |
| 30 | +## Champs indisponibles à la source | |
| 31 | +- N° civiques complets, GPS, superficies (champ « Pieds² » vide sur toutes | |
| 32 | + les fiches actuelles). | |
| 33 | + | |
| 34 | +## Fragilités | |
| 35 | +- Wix : refonte du gabarit = re-travail ; le rendu serveur des pages | |
| 36 | + dynamiques est un comportement Wix standard depuis 2020 mais pas garanti. | |
| 37 | +- Les dates « DISPONIBLE DÈS LE 1ER AOUT 2025 » datent parfois de la mise en | |
| 38 | + ligne (fiches encore affichées comme Disponible) : texte source conservé | |
| 39 | + tel quel. | |
| 40 | +- Pages lourdes (~1,8 Mo) : le cache BD limite les relectures ; délai 0,8 s. | |
| 41 | + | |
| 42 | +## Échantillon | |
| 43 | +- appartement-3-1-2-a-louer : 3½ rue de la Visitation, Saint-Charles-Borromée, | |
| 44 | + 1150 $/mois, construction neuve 2025, 8 photos. | |
| 45 | +- condo-4-1-2-a-louer : 4½ à Piedmont, 1 800 $/mois, « Disponible dès | |
| 46 | + maintenant », 20 photos. | |
added
reports/connectors/lambert.md
+32 −0
@@ -0,0 +1,32 @@ | ||
| 1 | +# lambert — Société Immobilière Lambert (lambertimmobilier.com) | |
| 2 | +- site: https://lambertimmobilier.com (WordPress, thème custom « cognitif-starter » ; petit gestionnaire de Louiseville, actif depuis 2018) | |
| 3 | +- méthode: html — 1 requête par sync (/logements-disponibles/) | |
| 4 | +- annonces: 2 (131 St-Ubald Louiseville 4½ 1250 $/mois ; 331 rue Milette Yamachiche — carte sans type ni prix, publiée telle quelle) | |
| 5 | +- couverture (sur 2): adresse 100 %, ville 100 %, image 100 %, prix 50 %, type 50 % — dispo/description jamais publiées | |
| 6 | +- fixture: ok (1 requête) · test: ok (2 verts) · sync: 2 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Page parcourue en ordre de document (`h1/h2/article`) : les `<article | |
| 10 | + class="apartment">` situés **après le titre « Projets à venir » sont | |
| 11 | + ignorés** (terrains) ; ceinture-bretelles : titres « Terrain/commercial/ | |
| 12 | + local » exclus aussi. | |
| 13 | +- Carte : `h2.h6` (« 4 1/2 ») → unit_type ; `.apartment--price` | |
| 14 | + (« 1250$ / mois ») → price_label + parse_price ; `<address>` → adresse + | |
| 15 | + ville (suffixe Louiseville/Yamachiche/Trois-Rivières détaché) ; photo en | |
| 16 | + `background-image` du `div.img`. | |
| 17 | +- external_id = slug de l'adresse (131-st-ubald-louiseville) — stable, pas | |
| 18 | + d'URL par annonce sur le site ; url = page liste. | |
| 19 | + | |
| 20 | +## Champs indisponibles à la source | |
| 21 | +- Disponibilité, description, superficie, commodités, GPS, pages détail. | |
| 22 | + | |
| 23 | +## Fragilités | |
| 24 | +- Parc minuscule (2 cartes) : si tout est loué, le connecteur remontera 0 | |
| 25 | + annonce (l'alerte de sync le signalera) — c'est l'état réel du site. | |
| 26 | +- La carte « 331 rue Milette » n'a ni type ni prix : conservée avec champs | |
| 27 | + vides (rien d'inventé) ; si l'agence enrichit la carte, les champs suivront. | |
| 28 | + | |
| 29 | +## Échantillon | |
| 30 | +- 131-st-ubald-louiseville : 4½ — 131 St-Ubald, Louiseville, 1250 $/mois, | |
| 31 | + 1 photo. | |
| 32 | +- 331-rue-milette-yamachiche : 331, rue Milette, Yamachiche, 1 photo. | |
added
reports/connectors/moderno.md
+45 −0
@@ -0,0 +1,45 @@ | ||
| 1 | +# moderno — Moderno Construction (moderno.immo) | |
| 2 | +- site: https://moderno.immo (custom SSR très propre, BEM ; promoteur-gestionnaire de Lanaudière) | |
| 3 | +- méthode: html — liste /logements-a-louer (cartes BEM) + fiches détail via cache BD (1 requête liste + 1/fiche nouvelle ou modifiée, budget 40) | |
| 4 | +- annonces: 6 (Aqua Roca phase 1 à Joliette ×3, Domaine du Sentier Riverain à Joliette ×3 ; 2 cartes « Loué » filtrées) | |
| 5 | +- couverture (sur 6): prix 100 %, type 100 %, adresse 100 %, ville 100 %, dispo 100 %, superficie 100 %, images 100 %, commodités 100 %, description 100 % | |
| 6 | +- fixture: ok (7 requêtes) · test: ok (2 verts) · sync: 6 ajoutées | |
| 7 | + | |
| 8 | +## Champs extraits | |
| 9 | +- Liste : `a.appartements-a-louer__liste__item[href]` → | |
| 10 | + - href `/logements-a-louer/<projet>/<CODE>` : **external_id = CODE** | |
| 11 | + (= champ « Référence » affiché sur la fiche, stable) ; | |
| 12 | + - `__titre` (« 4 1/2 - Domaine du Sentier Riverain ») → title + unit_type ; | |
| 13 | + - `__adresse` (« 105-1002 rue Gustave-Guertin, Joliette ») → address + city ; | |
| 14 | + - `__prix` (« 1 945 $ par mois ») → price_label + parse_price ; | |
| 15 | + - `__disponibilite` (« Disponible 1er octobre 2026 ») → availability ; | |
| 16 | + - `__rented` (« Loué ») → annonce ignorée ; | |
| 17 | + - `__message` (accroche) → description provisoire ; | |
| 18 | + - image de carte (DigitalOcean Spaces). | |
| 19 | +- Fiche détail (cache BD, clé = hash titre|prix|dispo|adresse) : | |
| 20 | + - `__pieces__piece` (« 1 chambre », « 1 salle de bain ») → amenities ; | |
| 21 | + - bloc `__chiffres` (paires libellé/valeur) : Unité, Niveau, Vue → details ; | |
| 22 | + Superficie (« 957 pi² ») → area_sqft ; Disponibilité/Référence croisées ; | |
| 23 | + - Inclusions + Commodités (logement & immeuble) → amenities | |
| 24 | + (bloc « Localisation » exclu, adresse déjà captée) ; | |
| 25 | + - accroche + paragraphes rédigés → description ; | |
| 26 | + - galerie : vignettes `…/conversions/<nom>-thumb.jpg` réécrites en pleine | |
| 27 | + taille `…/<nom>.jpg` (même schéma que les images de cartes). | |
| 28 | + | |
| 29 | +## Champs indisponibles à la source | |
| 30 | +- GPS, animaux/meublé structurés (les commodités mentionnent « Animal de | |
| 31 | + compagnie permis (selon les règlements) » — textmine s'en charge). | |
| 32 | + | |
| 33 | +## Fragilités | |
| 34 | +- Classes BEM stables mais custom : refonte du site = refonte du connecteur | |
| 35 | + (le test fixture le détecterait). | |
| 36 | +- Certaines URLs d'images contiennent des caractères non-ASCII (« Fa‡ade ») : | |
| 37 | + conservées telles quelles (requests les encode à l'usage). | |
| 38 | +- La page liste porte des filtres côté client (immeuble/type/budget) : la | |
| 39 | + liste complète est rendue côté serveur, aucun JS requis. | |
| 40 | + | |
| 41 | +## Échantillon | |
| 42 | +- EXK77 : 3½ Aqua Roca ph. 1, 307-99 rue du Cabastran Joliette, 1 955 $/mois, | |
| 43 | + 957 pi², dispo 1er sept. 2026, niveau 3e, vue façade, 5 photos. | |
| 44 | +- MOEAN : 4½ Domaine du Sentier Riverain, 106-964 rue Gustave-Guertin, | |
| 45 | + 2 020 $/mois, 1 100 pi², « Disponible Maintenant », 16 photos. | |
added
tests/fixtures/acceslogis_gb/3e3670fb0276a0d9e5cd.html
+928 −0
@@ -0,0 +1,928 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | +<title>Acces Logis GB Joliette | Logement à louer Joliette, Crabtree et Berthier</title> | |
| 5 | +<meta name="description" content="Appartement et logement à louer à Joliette, Crabtree, Charlemagne, Ste-Elisabeth, St-Ambroise et Berthier dans Lanaudière."> | |
| 6 | +<meta name="robots" content="index, follow"> | |
| 7 | +<meta name="format-detection" content="telephone=no"> | |
| 8 | +<meta charset="UTF-8"> | |
| 9 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 10 | +<link rel="icon" type="image/png" href="favicon.png"> | |
| 11 | +<link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Open+Sans|Roboto|Roboto+Condensed|Sulphur+Point|Ubuntu|Nanum+Gothic|Raleway&display=swap" rel="stylesheet"> | |
| 12 | +<link href="https://fonts.googleapis.com/css?family=Courgette|Damion|Dancing+Script|Kaushan+Script|Pacifico|Pinyon+Script|Tangerine&display=swap" rel="stylesheet"> | |
| 13 | +<link rel="stylesheet" type="text/css" href="buttons.css"> | |
| 14 | +<link rel="stylesheet" type="text/css" href="colors.css"> | |
| 15 | +<link rel="stylesheet" type="text/css" href="fonts.css"> | |
| 16 | +<link rel="stylesheet" type="text/css" href="footer.css"> | |
| 17 | +<link rel="stylesheet" type="text/css" href="header.css"> | |
| 18 | +<link rel="stylesheet" type="text/css" href="slider.css"> | |
| 19 | +<link rel="stylesheet" type="text/css" href="spacers.css"> | |
| 20 | +<link rel="stylesheet" type="text/css" href="style.css"> | |
| 21 | +<script src="https://www.google.com/recaptcha/api.js" async defer></script> | |
| 22 | +</head> | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | +<body> | |
| 30 | + | |
| 31 | +<header> | |
| 32 | + | |
| 33 | +<nav class="backgroundcolor-white"> | |
| 34 | + | |
| 35 | +<div class="header-menu"> | |
| 36 | + | |
| 37 | + <div class=""> | |
| 38 | + <a class="" href="index.html"> | |
| 39 | + <img class="header-logo imagehover-01" src="acces-logis-gb_500px.png" alt="Acces Logis GB"> | |
| 40 | + </a> | |
| 41 | + </div> | |
| 42 | + | |
| 43 | + <div class="navfont-menu"> | |
| 44 | + <a href="index.html#logements">Logements disponibles</a> | |
| 45 | + <div class="header-spacer-01"></div> | |
| 46 | + <div class="header-line"></div> | |
| 47 | + <div class="header-spacer-01"></div> | |
| 48 | + <a href="multiplex-joliette-crabtree.html">Nos immeubles</a> | |
| 49 | + <div class="header-spacer-01"></div> | |
| 50 | + <div class="header-line"></div> | |
| 51 | + <div class="header-spacer-01"></div> | |
| 52 | + <a href="location-de-logement-joliette-crabtree.html">Demande de location</a> | |
| 53 | + <div class="header-spacer-01"></div> | |
| 54 | + <div class="header-line"></div> | |
| 55 | + <div class="header-spacer-01"></div> | |
| 56 | + <a href="/mini-entrepots/index.html">Entrepôts</a> | |
| 57 | + <div class="header-spacer-01"></div> | |
| 58 | + <div class="header-line"></div> | |
| 59 | + <div class="header-spacer-01"></div> | |
| 60 | + <a href="#contact">Contact</a> | |
| 61 | + </div> | |
| 62 | + | |
| 63 | +</div> | |
| 64 | + | |
| 65 | +</nav> | |
| 66 | + | |
| 67 | +</header> | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | +<div class="slider"> | |
| 73 | + | |
| 74 | + <div class="slider-absolute-01"> | |
| 75 | + <p class="bebasneue slider-font-01 white" style="opacity:1.00;"> | |
| 76 | + Pour un logement<br> | |
| 77 | + adapté à votre<br> | |
| 78 | + style de vie | |
| 79 | + <div class="spacer-001"></div> | |
| 80 | + <a class="slider-button-02" href="#logements">LOGEMENTS DISPONIBLES ❯</a> | |
| 81 | + <a name=""></a> | |
| 82 | + </p> | |
| 83 | + | |
| 84 | + </div> | |
| 85 | + <div id="slider2images"> | |
| 86 | + <figure> | |
| 87 | + <img src="multiplex-joliette-crabtree_001.jpg" style="min-height:220px;max-height:700px;object-fit:cover;object-position:center top;"> | |
| 88 | + <img src="multiplex-joliette-crabtree_002.jpg" style="min-height:220px;max-height:700px;object-fit:cover;object-position:center top;"> | |
| 89 | + </figure> | |
| 90 | + </div> | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | +</div> | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | +<main> | |
| 99 | + | |
| 100 | +<a name="logements"></a> | |
| 101 | + | |
| 102 | +<div class="spacer-050px"></div> | |
| 103 | + | |
| 104 | + | |
| 105 | +<div class="container-1200px"> | |
| 106 | + | |
| 107 | +<br> | |
| 108 | +<br> | |
| 109 | + | |
| 110 | + <div class="padding-015px aligncenter"> | |
| 111 | + <p class="opensans font-045 blau-03"> | |
| 112 | + LOGEMENTS DISPONIBLES | |
| 113 | + </p> | |
| 114 | + </div> | |
| 115 | + | |
| 116 | + | |
| 117 | +<br> | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | +<div class="columnswithgap-02"> | |
| 125 | + | |
| 126 | + <div class=""> | |
| 127 | + <p class="opensans font-026 font-hover-01"> | |
| 128 | + | |
| 129 | + <b> | |
| 130 | + 3 1/2, Rang du Ruisseau, Ste-Élisabeth | |
| 131 | + </b> | |
| 132 | + | |
| 133 | + </p> | |
| 134 | + | |
| 135 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-sainte-elisabeth_003.jpg" alt="Logement à louer"> | |
| 136 | + | |
| 137 | + <div class="spacer-010px"></div> | |
| 138 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 139 | + Logement 3 1/2 à louer, situé au 2510 Rang du Ruisseau à Sainte-Élizabeth, une municipalité en | |
| 140 | + périphérie de la ville de Joliette, tout près de nombreux services. Environnement tranquille. Grande luminosité. | |
| 141 | + <br> | |
| 142 | + <span class="opensans font-016"> | |
| 143 | + <b> | |
| 144 | + Disponible maintenant | |
| 145 | + </b> | |
| 146 | + </span> | |
| 147 | + <br> | |
| 148 | + <span class="opensans font-020"> | |
| 149 | + <b> | |
| 150 | + 1150$ | |
| 151 | + </b> | |
| 152 | + </span> | |
| 153 | + <span class="opensans font-014"> | |
| 154 | + PAR MOIS | |
| 155 | + </span> | |
| 156 | + </p> | |
| 157 | + | |
| 158 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 159 | + | |
| 160 | + <div class="spacer-002"></div> | |
| 161 | + </div> | |
| 162 | + | |
| 163 | + <div></div> | |
| 164 | + | |
| 165 | + <div class=""> | |
| 166 | + <p class="opensans font-026 font-hover-01"> | |
| 167 | + | |
| 168 | + <b> | |
| 169 | + 4 1/2, Rang du Ruisseau, Ste-Élisabeth | |
| 170 | + </b> | |
| 171 | + | |
| 172 | + </p> | |
| 173 | + | |
| 174 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-sainte-elisabeth_004.jpg" alt="Logement a louer"> | |
| 175 | + | |
| 176 | + <div class="spacer-010px"></div> | |
| 177 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 178 | + Logement 4 1/2 de 1050 pieds carrés à louer, situé au 2510 Rang du Ruisseau à Sainte-Élizabeth, une municipalité en | |
| 179 | + périphérie de la ville de Joliette, tout près de nombreux services. Environnement tranquille. | |
| 180 | + <br> | |
| 181 | + <span class="opensans font-016"> | |
| 182 | + <b> | |
| 183 | + Disponible maintenant | |
| 184 | + </b> | |
| 185 | + </span> | |
| 186 | + <br> | |
| 187 | + <span class="opensans font-020"> | |
| 188 | + <b> | |
| 189 | + 1295$ | |
| 190 | + </b> | |
| 191 | + </span> | |
| 192 | + <span class="opensans font-014"> | |
| 193 | + PAR MOIS | |
| 194 | + </span> | |
| 195 | + </p> | |
| 196 | + | |
| 197 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 198 | + | |
| 199 | + <div class="spacer-005"></div> | |
| 200 | + </div> | |
| 201 | + | |
| 202 | +</div> | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | +<br> | |
| 207 | +<br> | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | +<div class="columnswithgap-02"> | |
| 213 | + | |
| 214 | + <div class=""> | |
| 215 | + <p class="opensans font-026 font-hover-01"> | |
| 216 | + | |
| 217 | + <b> | |
| 218 | + 84 Rue Précieux-Sang, Joliette | |
| 219 | + </b> | |
| 220 | + | |
| 221 | + </p> | |
| 222 | + | |
| 223 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-joliette_001.jpg" alt="Logement a louer"> | |
| 224 | + | |
| 225 | + <div class="spacer-010px"></div> | |
| 226 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 227 | + Logement 4 1/2 au 1er étage à Joliette. Stationnement, remise extérieure, échangeur d'air, grand balcon privé, | |
| 228 | + grands espaces lumineux et cuisine avec îlot. <i>Les chats peuvent être acceptés sous certaines conditions.</i> | |
| 229 | + <br> | |
| 230 | + <span class="opensans font-016"> | |
| 231 | + <b> | |
| 232 | + Disponible maintenant | |
| 233 | + </b> | |
| 234 | + </span> | |
| 235 | + <br> | |
| 236 | + <span class="opensans font-020"> | |
| 237 | + <b> | |
| 238 | + 1250$ | |
| 239 | + </b> | |
| 240 | + </span> | |
| 241 | + <span class="opensans font-014"> | |
| 242 | + PAR MOIS | |
| 243 | + </span> | |
| 244 | + </p> | |
| 245 | + | |
| 246 | + | |
| 247 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 248 | + | |
| 249 | + <div class="spacer-002"></div> | |
| 250 | + </div> | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + <div></div> | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + <div class=""> | |
| 259 | + <p class="opensans font-026 font-hover-01"> | |
| 260 | + | |
| 261 | + <b> | |
| 262 | + 5 1/2 à St-Ambroise-de-Kildare | |
| 263 | + </b> | |
| 264 | + | |
| 265 | + </p> | |
| 266 | + | |
| 267 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-saint-ambroise-de-kildare_003.jpg" alt="Logement St-Ambroise-de Kildare"> | |
| 268 | + | |
| 269 | + <div class="spacer-010px"></div> | |
| 270 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 271 | + Grand appartement 5 1/2 sur l'avenue des Commissaires à Saint-Ambroise de Kildare. Insonorisation et isolation aux dernières normes. | |
| 272 | + Stationnement, remise, internet, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 273 | + <br> | |
| 274 | + <span class="opensans font-016"> | |
| 275 | + <b> | |
| 276 | + Disponible maintenant | |
| 277 | + </b> | |
| 278 | + </span> | |
| 279 | + <br> | |
| 280 | + <span class="opensans font-020"> | |
| 281 | + <b> | |
| 282 | + 1500$ | |
| 283 | + </b> | |
| 284 | + </span> | |
| 285 | + <span class="opensans font-014"> | |
| 286 | + PAR MOIS | |
| 287 | + </span> | |
| 288 | + </p> | |
| 289 | + | |
| 290 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 291 | + | |
| 292 | + <div class="spacer-005"></div> | |
| 293 | + </div> | |
| 294 | + | |
| 295 | +</div> | |
| 296 | + | |
| 297 | + | |
| 298 | +<br> | |
| 299 | +<br> | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | +<div class="columnswithgap-02"> | |
| 304 | + | |
| 305 | + <div class=""> | |
| 306 | + <p class="opensans font-026 font-hover-01"> | |
| 307 | + | |
| 308 | + <b> | |
| 309 | + 4 1/2 à St-Ambroise-de-Kildare | |
| 310 | + </b> | |
| 311 | + | |
| 312 | + </p> | |
| 313 | + | |
| 314 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-saint-ambroise-de-kildare_002.jpg" alt="Logement St-Ambroise-de Kildare"> | |
| 315 | + | |
| 316 | + <div class="spacer-010px"></div> | |
| 317 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 318 | + Grand appartement 4 1/2 en demi sous-sol sur l'avenue des Commissaires à Saint-Ambroise de Kildare. Insonorisation et isolation aux dernières normes. | |
| 319 | + Stationnement, remise, internet, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 320 | + <br> | |
| 321 | + <span class="opensans font-016"> | |
| 322 | + <b> | |
| 323 | + Disponible maintenant | |
| 324 | + </b> | |
| 325 | + </span> | |
| 326 | + <br> | |
| 327 | + <span class="opensans font-020"> | |
| 328 | + <b> | |
| 329 | + 1325$ | |
| 330 | + </b> | |
| 331 | + </span> | |
| 332 | + <span class="opensans font-014"> | |
| 333 | + PAR MOIS | |
| 334 | + </span> | |
| 335 | + </p> | |
| 336 | + | |
| 337 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 338 | + | |
| 339 | + <div class="spacer-002"></div> | |
| 340 | + </div> | |
| 341 | + | |
| 342 | + | |
| 343 | + <div></div> | |
| 344 | + | |
| 345 | + | |
| 346 | + <div class=""> | |
| 347 | + <p class="opensans font-026 font-hover-01"> | |
| 348 | + | |
| 349 | + <b> | |
| 350 | + 4 1/2 à St-Ambroise-de-Kildare | |
| 351 | + </b> | |
| 352 | + | |
| 353 | + </p> | |
| 354 | + | |
| 355 | + <img class="imagehover-02" src="logements-a-louer-lanaudiere/logement-a-louer-saint-ambroise-de-kildare_001.jpg" alt="Logement St-Ambroise-de Kildare"> | |
| 356 | + | |
| 357 | + <div class="spacer-010px"></div> | |
| 358 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 359 | + Grand appartement 4 1/2 au 2e étage sur l'avenue des Commissaires à Saint-Ambroise de Kildare. Insonorisation et isolation aux dernières normes. | |
| 360 | + Stationnement, remise, internet, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 361 | + <br> | |
| 362 | + <span class="opensans font-016"> | |
| 363 | + <b> | |
| 364 | + Disponible maintenant | |
| 365 | + </b> | |
| 366 | + </span> | |
| 367 | + <br> | |
| 368 | + <span class="opensans font-020"> | |
| 369 | + <b> | |
| 370 | + 1375$ | |
| 371 | + </b> | |
| 372 | + </span> | |
| 373 | + <span class="opensans font-014"> | |
| 374 | + PAR MOIS | |
| 375 | + </span> | |
| 376 | + </p> | |
| 377 | + | |
| 378 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 379 | + | |
| 380 | + <div class="spacer-005"></div> | |
| 381 | + </div> | |
| 382 | + | |
| 383 | +</div> | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
| 387 | +<br> | |
| 388 | +<br> | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
| 392 | +<div class="columnswithgap-02"> | |
| 393 | + | |
| 394 | + <div class=""> | |
| 395 | + <p class="opensans font-026 font-hover-01"> | |
| 396 | + | |
| 397 | + <b> | |
| 398 | + 3 1/2, rue Frigon à Shawinigan | |
| 399 | + </b> | |
| 400 | + | |
| 401 | + </p> | |
| 402 | + | |
| 403 | + <img class="imagehover-02" src="logement-a-louer-mauricie/logement-a-louer-shawinigan_002.jpg" alt="Logement et appartement Shawinigan"> | |
| 404 | + | |
| 405 | + <div class="spacer-010px"></div> | |
| 406 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 407 | + Logement 3 1/2 neuf en demi sous-sol sur la rue Frigon à Shawinigan. Insonorisation et isolation aux dernières normes. | |
| 408 | + Stationnement, remise extérieure, internet haute vitesse, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 409 | + <br> | |
| 410 | + <span class="opensans font-016"> | |
| 411 | + <b> | |
| 412 | + Disponible maintenant | |
| 413 | + </b> | |
| 414 | + </span> | |
| 415 | + <br> | |
| 416 | + <span class="opensans font-020"> | |
| 417 | + <b> | |
| 418 | + 1235$ | |
| 419 | + </b> | |
| 420 | + </span> | |
| 421 | + <span class="opensans font-014"> | |
| 422 | + PAR MOIS | |
| 423 | + </span> | |
| 424 | + </p> | |
| 425 | + | |
| 426 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 427 | + | |
| 428 | + <div class="spacer-002"></div> | |
| 429 | + </div> | |
| 430 | + | |
| 431 | + | |
| 432 | + <div></div> | |
| 433 | + | |
| 434 | + | |
| 435 | + <div class=""> | |
| 436 | + <p class="opensans font-026 font-hover-01"> | |
| 437 | + | |
| 438 | + <b> | |
| 439 | + 4 1/2, rue Frigon à Shawinigan | |
| 440 | + </b> | |
| 441 | + | |
| 442 | + </p> | |
| 443 | + | |
| 444 | + <img class="imagehover-02" src="logement-a-louer-mauricie/logement-a-louer-shawinigan_001.jpg" alt="Logement et appartement Shawinigan"> | |
| 445 | + | |
| 446 | + <div class="spacer-010px"></div> | |
| 447 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 448 | + Logement 4 1/2 neuf en demi sous-sol sur la rue Frigon à Shawinigan. Insonorisation et isolation aux dernières normes. | |
| 449 | + Stationnement, remise extérieure, internet haute vitesse, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 450 | + <br> | |
| 451 | + <span class="opensans font-016"> | |
| 452 | + <b> | |
| 453 | + Disponible maintenant | |
| 454 | + </b> | |
| 455 | + </span> | |
| 456 | + <br> | |
| 457 | + <span class="opensans font-020"> | |
| 458 | + <b> | |
| 459 | + 1300$ | |
| 460 | + </b> | |
| 461 | + </span> | |
| 462 | + <span class="opensans font-014"> | |
| 463 | + PAR MOIS | |
| 464 | + </span> | |
| 465 | + </p> | |
| 466 | + </p> | |
| 467 | + | |
| 468 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 469 | + | |
| 470 | + <div class="spacer-005"></div> | |
| 471 | + </div> | |
| 472 | + | |
| 473 | +</div> | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | +<br> | |
| 479 | +<br> | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | +<div class="columnswithgap-02"> | |
| 485 | + | |
| 486 | + <div class=""> | |
| 487 | + <p class="opensans font-026 font-hover-01"> | |
| 488 | + | |
| 489 | + <b> | |
| 490 | + 4 1/2, rue Frigon à Shawinigan | |
| 491 | + </b> | |
| 492 | + | |
| 493 | + </p> | |
| 494 | + | |
| 495 | + <img class="imagehover-02" src="logement-a-louer-mauricie/logement-a-louer-shawinigan_002.jpg" alt="Logement et appartement Shawinigan"> | |
| 496 | + | |
| 497 | + <div class="spacer-010px"></div> | |
| 498 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 499 | + Logement 4 1/2 neuf au 1er étage sur la rue Frigon à Shawinigan. Insonorisation et isolation aux dernières normes. | |
| 500 | + Stationnement, remise extérieure, internet haute vitesse, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 501 | + <br> | |
| 502 | + <span class="opensans font-016"> | |
| 503 | + <b> | |
| 504 | + Disponible maintenant | |
| 505 | + </b> | |
| 506 | + </span> | |
| 507 | + <br> | |
| 508 | + <span class="opensans font-020"> | |
| 509 | + <b> | |
| 510 | + 1325$ | |
| 511 | + </b> | |
| 512 | + </span> | |
| 513 | + <span class="opensans font-014"> | |
| 514 | + PAR MOIS | |
| 515 | + </span> | |
| 516 | + </p> | |
| 517 | + | |
| 518 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 519 | + | |
| 520 | + <div class="spacer-002"></div> | |
| 521 | + </div> | |
| 522 | + | |
| 523 | + | |
| 524 | + <div></div> | |
| 525 | + | |
| 526 | + | |
| 527 | + <div class=""> | |
| 528 | + <p class="opensans font-026 font-hover-01"> | |
| 529 | + | |
| 530 | + <b> | |
| 531 | + 4 1/2, rue Frigon à Shawinigan | |
| 532 | + </b> | |
| 533 | + | |
| 534 | + </p> | |
| 535 | + | |
| 536 | + <img class="imagehover-02" src="logement-a-louer-mauricie/logement-a-louer-shawinigan_002.jpg" alt="Logement et appartement Shawinigan"> | |
| 537 | + | |
| 538 | + <div class="spacer-010px"></div> | |
| 539 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 540 | + Logement 4 1/2 neuf au 2e étage sur la rue Frigon à Shawinigan. Insonorisation et isolation aux dernières normes. | |
| 541 | + Stationnement, remise extérieure, internet haute vitesse, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 542 | + <br> | |
| 543 | + <span class="opensans font-016"> | |
| 544 | + <b> | |
| 545 | + Disponible maintenant | |
| 546 | + </b> | |
| 547 | + </span> | |
| 548 | + <br> | |
| 549 | + <span class="opensans font-020"> | |
| 550 | + <b> | |
| 551 | + 1335$ | |
| 552 | + </b> | |
| 553 | + </span> | |
| 554 | + <span class="opensans font-014"> | |
| 555 | + PAR MOIS | |
| 556 | + </span> | |
| 557 | + </p> | |
| 558 | + </p> | |
| 559 | + | |
| 560 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 561 | + | |
| 562 | + <div class="spacer-005"></div> | |
| 563 | + </div> | |
| 564 | + | |
| 565 | +</div> | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | +<br> | |
| 572 | +<br> | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | +<div class="columnswithgap-02"> | |
| 579 | + | |
| 580 | + <div class=""> | |
| 581 | + <p class="opensans font-026 font-hover-01"> | |
| 582 | + | |
| 583 | + <b> | |
| 584 | + 4 1/2, rue Frigon à Shawinigan | |
| 585 | + </b> | |
| 586 | + | |
| 587 | + </p> | |
| 588 | + | |
| 589 | + <img class="imagehover-02" src="logement-a-louer-mauricie/logement-a-louer-shawinigan_002.jpg" alt="Logement et appartement Shawinigan"> | |
| 590 | + | |
| 591 | + <div class="spacer-010px"></div> | |
| 592 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 593 | + Logement 4 1/2 neuf au 3e étage sur la rue Frigon à Shawinigan. Insonorisation et isolation aux dernières normes. | |
| 594 | + Stationnement, remise extérieure, internet haute vitesse, air conditionné, grand balcon privé et aspirateur central inclus. Chat accepté. | |
| 595 | + <br> | |
| 596 | + <span class="opensans font-016"> | |
| 597 | + <b> | |
| 598 | + Disponible maintenant | |
| 599 | + </b> | |
| 600 | + </span> | |
| 601 | + <br> | |
| 602 | + <span class="opensans font-020"> | |
| 603 | + <b> | |
| 604 | + 1350$ | |
| 605 | + </b> | |
| 606 | + </span> | |
| 607 | + <span class="opensans font-014"> | |
| 608 | + PAR MOIS | |
| 609 | + </span> | |
| 610 | + </p> | |
| 611 | + | |
| 612 | + <a class="button-slim" href="location-de-logement-joliette-crabtree.html">DEMANDE DE LOCATION ❯</a> | |
| 613 | + | |
| 614 | + <div class="spacer-002"></div> | |
| 615 | + </div> | |
| 616 | + | |
| 617 | + | |
| 618 | + <div></div> | |
| 619 | + | |
| 620 | + | |
| 621 | + <div class=""> | |
| 622 | + | |
| 623 | + | |
| 624 | + <div class="spacer-005"></div> | |
| 625 | + </div> | |
| 626 | + | |
| 627 | +</div> | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
| 633 | +<br> | |
| 634 | + | |
| 635 | + | |
| 636 | + | |
| 637 | + | |
| 638 | +<br> | |
| 639 | +<br> | |
| 640 | +<br> | |
| 641 | + | |
| 642 | + <div class="padding-015px aligncenter"> | |
| 643 | + <p class="opensans font-045 blau-03"> | |
| 644 | + ENTREPÔTS DISPONIBLES | |
| 645 | + </p> | |
| 646 | + </div> | |
| 647 | + | |
| 648 | + | |
| 649 | +<br> | |
| 650 | + | |
| 651 | + | |
| 652 | + | |
| 653 | + | |
| 654 | +<div class="columnswithgap-02"> | |
| 655 | + | |
| 656 | + <div class=""> | |
| 657 | + <p class="opensans font-026 font-hover-01"> | |
| 658 | + <a href="mini-entrepots/location-mini-entrepot.html" target="_blank"> | |
| 659 | + <b> | |
| 660 | + Mini-entrepôts, Saint-Thomas (Joliette) | |
| 661 | + </b> | |
| 662 | + </a> | |
| 663 | + </p> | |
| 664 | + | |
| 665 | + <a href="mini-entrepots/location-mini-entrepot.html" target="_blank"> | |
| 666 | + <img class="imagehover-02" src="mini-entrepots-st-thomas.jpg" alt="Mini entrepots"> | |
| 667 | + </a> | |
| 668 | + | |
| 669 | + <div class="spacer-010px"></div> | |
| 670 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 671 | + Mini-entrepôts disponibles pour de la location à court, moyen ou long terme. Plusieurs formats | |
| 672 | + disponibles avec chauffage ou non, ainsi que des espaces extérieurs. Surveillance par caméra, barrière de sécurité | |
| 673 | + et terrain clôturé. Disponible depuis avril 2023. RÉSERVEZ VOTRE UNITÉ DÈS MAINTENANT! | |
| 674 | + <br> | |
| 675 | + <span class="opensans font-014"> | |
| 676 | + <b> | |
| 677 | + À partir de | |
| 678 | + </b> | |
| 679 | + </span> | |
| 680 | + <span class="opensans font-020"> | |
| 681 | + <b> | |
| 682 | + 100$ | |
| 683 | + </b> | |
| 684 | + </span> | |
| 685 | + <span class="opensans font-014"> | |
| 686 | + PAR MOIS | |
| 687 | + </span> | |
| 688 | + </p> | |
| 689 | + | |
| 690 | + <a class="button-slim" href="mini-entrepots/location-mini-entrepot.html" target="_blank">RÉSERVER ❯</a> | |
| 691 | + | |
| 692 | + <div class="spacer-002"></div> | |
| 693 | + </div> | |
| 694 | + | |
| 695 | + <div></div> | |
| 696 | + | |
| 697 | + <div class=""> | |
| 698 | + | |
| 699 | + <p class="opensans font-026 font-hover-01"> | |
| 700 | + <a href="mini-entrepots/mini-entrepot-saint-come.html" target="_blank"> | |
| 701 | + <b> | |
| 702 | + Mini-entrepôts, Saint-Côme | |
| 703 | + </b> | |
| 704 | + </a> | |
| 705 | + </p> | |
| 706 | + | |
| 707 | + <a href="mini-entrepots/mini-entrepot-saint-come.html" target="_blank"> | |
| 708 | + <img class="imagehover-02" src="mini-entrepots-st-come.jpg" alt="Mini entrepots"> | |
| 709 | + </a> | |
| 710 | + | |
| 711 | + <div class="spacer-010px"></div> | |
| 712 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 713 | + Mini-entrepôts disponibles pour de la location à court, moyen ou long terme. Plusieurs formats | |
| 714 | + disponibles avec chauffage ou non, ainsi que des espaces extérieurs. Surveillance par caméra, barrière de sécurité | |
| 715 | + et terrain clôturé. Pour réserver, veuillez contacter notre gestionnaire au 819 692-4522 | |
| 716 | + <br> | |
| 717 | + <span class="opensans font-014"> | |
| 718 | + <b> | |
| 719 | + À partir de | |
| 720 | + </b> | |
| 721 | + </span> | |
| 722 | + <span class="opensans font-020"> | |
| 723 | + <b> | |
| 724 | + 100$ | |
| 725 | + </b> | |
| 726 | + </span> | |
| 727 | + <span class="opensans font-014"> | |
| 728 | + PAR MOIS | |
| 729 | + </span> | |
| 730 | + </p> | |
| 731 | + | |
| 732 | + <a class="button-slim" href="mini-entrepots/mini-entrepot-saint-come.html" target="_blank">RÉSERVER ❯</a> | |
| 733 | + | |
| 734 | + | |
| 735 | + <div class="spacer-005"></div> | |
| 736 | + </div> | |
| 737 | + | |
| 738 | +</div> | |
| 739 | + | |
| 740 | + | |
| 741 | + | |
| 742 | + | |
| 743 | + | |
| 744 | + | |
| 745 | + <!-- | |
| 746 | + | |
| 747 | + <p class="opensans font-026 font-hover-01"> | |
| 748 | + | |
| 749 | + <b> | |
| 750 | + <a href="https://location360.ca" target="_blank"> | |
| 751 | + Mini-entrepôts, Saint-Charles-Borromée | |
| 752 | + </a> | |
| 753 | + </b> | |
| 754 | + </a> | |
| 755 | + </p> | |
| 756 | + | |
| 757 | + <a href="https://location360.ca" target="_blank"> | |
| 758 | + <img class="imagehover-02" src="mini-entrepots-saint-charles-borromee.jpg" alt="Mini entrepots"> | |
| 759 | + </a> | |
| 760 | + | |
| 761 | + <div class="spacer-010px"></div> | |
| 762 | + <p class="opensans font-014" style="opacity:0.71;"> | |
| 763 | + Mini-entrepôts disponibles à Saint-Charles-Borromée pour de la location à court, moyen et long terme. Plusieurs formats non chauffés, | |
| 764 | + ainsi que des espaces extérieurs. Surveillance par caméra, barrière de sécurité et terrain clôturé. Entreprise professionnelle et respectueuse. | |
| 765 | + Réservez votre unité dès maintenant! Disponible depuis avril 2023. RÉSERVEZ VOTRE UNITÉ DÈS MAINTENANT! | |
| 766 | + <br> | |
| 767 | + <span class="opensans font-014"> | |
| 768 | + <b> | |
| 769 | + À partir de | |
| 770 | + </b> | |
| 771 | + </span> | |
| 772 | + <span class="opensans font-020"> | |
| 773 | + <b> | |
| 774 | + 100$ | |
| 775 | + </b> | |
| 776 | + </span> | |
| 777 | + <span class="opensans font-014"> | |
| 778 | + PAR MOIS | |
| 779 | + </span> | |
| 780 | + </p> | |
| 781 | + | |
| 782 | + <a class="button-slim" href="https://location360.ca" target="_blank">RÉSERVER ❯</a> | |
| 783 | + | |
| 784 | + --> | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | +</div> | |
| 789 | + | |
| 790 | +<br> | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | +<div class="spacer-050px"></div> | |
| 798 | + | |
| 799 | + | |
| 800 | +</main> | |
| 801 | + | |
| 802 | + | |
| 803 | + | |
| 804 | + | |
| 805 | +<a name="contact"></a> | |
| 806 | + | |
| 807 | + | |
| 808 | + | |
| 809 | + | |
| 810 | +<footer> | |
| 811 | + | |
| 812 | +<br> | |
| 813 | +<br> | |
| 814 | +<br> | |
| 815 | + | |
| 816 | +<div class="container-95pct footer-padding"> | |
| 817 | +<div class="spacer-010px"></div> | |
| 818 | + | |
| 819 | + <div class="footer-columns-03"> | |
| 820 | + | |
| 821 | + <div class="aligncenter"> | |
| 822 | + <a class="" href="index.html"> | |
| 823 | + <img class="footer-logo imagehover-02" src="acces-logis-gb_650px_blanc.png" alt="Acces Logis"> | |
| 824 | + </a> | |
| 825 | + <div class="footer-spacer-002"></div> | |
| 826 | + <p> | |
| 827 | + <span class="footer-rbq opensans" style="opacity:0.95;"> | |
| 828 | + <b> | |
| 829 | + RBQ 5748-0311-01 | |
| 830 | + </b> | |
| 831 | + </span> | |
| 832 | + </p> | |
| 833 | + <br> | |
| 834 | + <p> | |
| 835 | + <br> | |
| 836 | + <span class="opensans footer-email italic"> | |
| 837 | + <a href="mailto:location@acceslogisgb.com">location@acceslogisgb.com</a> | |
| 838 | + </span> | |
| 839 | + </p> | |
| 840 | + <div class="footer-spacer-003"></div> | |
| 841 | + </div> | |
| 842 | + | |
| 843 | + | |
| 844 | + <div class="aligncenter"> | |
| 845 | + <p> | |
| 846 | + <span class="opensans footer-title bold"> | |
| 847 | + Sébastien Gélinas | |
| 848 | + </span> | |
| 849 | + <br> | |
| 850 | + <span class="opensans footer-title"> | |
| 851 | + Président | |
| 852 | + </span> | |
| 853 | + </p> | |
| 854 | + <img class="footer-image" src="sebastien-gelinas.jpg" alt="Sebastien Gelinas"> | |
| 855 | + <div class="footer-spacer-002"></div> | |
| 856 | + <p class="opensans footer-text justify" style="text-align:justify;"> | |
| 857 | + Passionné de projets dans l'immobilier, je suis un promoteur dans ce domaine depuis 10 ans dans la grande | |
| 858 | + région de Joliette. Je cherche constamment à me dépasser et à offrir aux gens du milieu des logements de | |
| 859 | + qualité dans un environnement sain, sécuritaire et agréable. L'intégrité, le respect et la rigueur | |
| 860 | + guident mes actions au quotidien. Je suis fier de mes qualités d'entrepreneur qui font de la compagnie | |
| 861 | + Accès Logis GB une référence dans le domaine des logements locatifs dans Lanaudière nord. | |
| 862 | + </p> | |
| 863 | + <div class="footer-spacer-003"></div> | |
| 864 | + </div> | |
| 865 | + | |
| 866 | + | |
| 867 | + <div class="aligncenter"> | |
| 868 | + <p> | |
| 869 | + <span class="opensans footer-title bold"> | |
| 870 | + Charles-Antoine Pilotte | |
| 871 | + </span> | |
| 872 | + <br> | |
| 873 | + <span class="opensans footer-title"> | |
| 874 | + Gestionnaire des immeubles | |
| 875 | + </span> | |
| 876 | + </p> | |
| 877 | + <img class="footer-image" src="charles-antoine-pilotte.jpg" alt="Charles-Antoine Pilotte"> | |
| 878 | + <div class="footer-spacer-002"></div> | |
| 879 | + <p class="opensans footer-text justify" style="text-align:justify;"> | |
| 880 | + Entrepreneur depuis plusieurs années, j'ai lancé en 2023 une entreprise spécialisée en gestion immobilière : Collab - Solution Immobilière. | |
| 881 | + Nous travaillons en étroite collaboration avec nos clients afin de les aider à atteindre leurs objectifs et surtout à les libérer de leur | |
| 882 | + gestion quotidienne. Nous sommes également axés sur la satisfaction des locataires et à leur écoute afin de leur procurer un milieu de vie | |
| 883 | + agréable dans lequel ils souhaiteront habiter longtemps. De plus, notre équipe polyvalente est également en mesure de s'occuper de pratiquement | |
| 884 | + tous les travaux manuels d'entretien ou d'urgence, ce qui nous permet d'offrir un service rapide, professionnel et sans délai pour | |
| 885 | + nos locataires et pour nos clients. | |
| 886 | + </p> | |
| 887 | + </div> | |
| 888 | + | |
| 889 | + | |
| 890 | + </div> | |
| 891 | + | |
| 892 | +</div> | |
| 893 | + | |
| 894 | + | |
| 895 | +<br> | |
| 896 | +<br> | |
| 897 | +<br> | |
| 898 | + | |
| 899 | + | |
| 900 | +<div class="backgroundcolor-01"> | |
| 901 | + <div class="container-1200px columns-02-5050 padding-010px aligncenter"> | |
| 902 | + <div class="verdana-09 fonthover-02"> | |
| 903 | + </div> | |
| 904 | + <div class="verdana-09 fonthover-02 alignright"> | |
| 905 | + | |
| 906 | + </div> | |
| 907 | + </div> | |
| 908 | +</div> | |
| 909 | + | |
| 910 | + | |
| 911 | +</footer> | |
| 912 | + | |
| 913 | + | |
| 914 | + | |
| 915 | +<div class="footer-credits"> | |
| 916 | +<div class="footer-credits-spacer"></div> | |
| 917 | +<a href="https://acceslogisgb.com/">Accès Logis GB inc.</a> | |
| 918 | +<div class="footer-credits-spacer"></div> | |
| 919 | +<a href="https://acceslogisgb.com/mini-entrepots/index.html">Location d'entrepôts Joliette</a> | |
| 920 | +<div class="footer-credits-spacer"></div> | |
| 921 | +<a href="politique-confidentialite.pdf" target="_blank">Politique de confidentialité</a> | |
| 922 | +<div class="footer-credits-spacer"></div> | |
| 923 | +</div> | |
| 924 | + | |
| 925 | + | |
| 926 | + | |
| 927 | +</body> | |
| 928 | +</html> | |
added
tests/fixtures/acceslogis_gb/expected.json
+159 −0
@@ -0,0 +1,159 @@ | ||
| 1 | +{ | |
| 2 | + "count": 11, | |
| 3 | + "listings": [ | |
| 4 | + { | |
| 5 | + "uid": "acceslogis_gb:3-1-2-rang-du-ruisseau-ste-elisabeth", | |
| 6 | + "url": "https://acceslogisgb.com/#logements", | |
| 7 | + "title": "3 1/2, Rang du Ruisseau, Ste-Élisabeth", | |
| 8 | + "address": "2510 Rang du Ruisseau", | |
| 9 | + "sector": "", | |
| 10 | + "city": "Sainte-Élisabeth", | |
| 11 | + "unit_type": "3½", | |
| 12 | + "price": 1150.0, | |
| 13 | + "availability": "Disponible maintenant", | |
| 14 | + "area_sqft": null, | |
| 15 | + "n_images": 1, | |
| 16 | + "n_amenities": 0 | |
| 17 | + }, | |
| 18 | + { | |
| 19 | + "uid": "acceslogis_gb:3-1-2-rue-frigon-a-shawinigan-demi-sous-sol", | |
| 20 | + "url": "https://acceslogisgb.com/#logements", | |
| 21 | + "title": "3 1/2, rue Frigon à Shawinigan", | |
| 22 | + "address": "", | |
| 23 | + "sector": "", | |
| 24 | + "city": "Shawinigan", | |
| 25 | + "unit_type": "3½", | |
| 26 | + "price": 1235.0, | |
| 27 | + "availability": "Disponible maintenant", | |
| 28 | + "area_sqft": null, | |
| 29 | + "n_images": 1, | |
| 30 | + "n_amenities": 0 | |
| 31 | + }, | |
| 32 | + { | |
| 33 | + "uid": "acceslogis_gb:4-1-2-a-st-ambroise-de-kildare-2e-etage", | |
| 34 | + "url": "https://acceslogisgb.com/#logements", | |
| 35 | + "title": "4 1/2 à St-Ambroise-de-Kildare", | |
| 36 | + "address": "", | |
| 37 | + "sector": "", | |
| 38 | + "city": "Saint-Ambroise-de-Kildare", | |
| 39 | + "unit_type": "4½", | |
| 40 | + "price": 1375.0, | |
| 41 | + "availability": "Disponible maintenant", | |
| 42 | + "area_sqft": null, | |
| 43 | + "n_images": 1, | |
| 44 | + "n_amenities": 0 | |
| 45 | + }, | |
| 46 | + { | |
| 47 | + "uid": "acceslogis_gb:4-1-2-a-st-ambroise-de-kildare-demi-sous-sol", | |
| 48 | + "url": "https://acceslogisgb.com/#logements", | |
| 49 | + "title": "4 1/2 à St-Ambroise-de-Kildare", | |
| 50 | + "address": "", | |
| 51 | + "sector": "", | |
| 52 | + "city": "Saint-Ambroise-de-Kildare", | |
| 53 | + "unit_type": "4½", | |
| 54 | + "price": 1325.0, | |
| 55 | + "availability": "Disponible maintenant", | |
| 56 | + "area_sqft": null, | |
| 57 | + "n_images": 1, | |
| 58 | + "n_amenities": 0 | |
| 59 | + }, | |
| 60 | + { | |
| 61 | + "uid": "acceslogis_gb:4-1-2-rang-du-ruisseau-ste-elisabeth", | |
| 62 | + "url": "https://acceslogisgb.com/#logements", | |
| 63 | + "title": "4 1/2, Rang du Ruisseau, Ste-Élisabeth", | |
| 64 | + "address": "2510 Rang du Ruisseau", | |
| 65 | + "sector": "", | |
| 66 | + "city": "Sainte-Élisabeth", | |
| 67 | + "unit_type": "4½", | |
| 68 | + "price": 1295.0, | |
| 69 | + "availability": "Disponible maintenant", | |
| 70 | + "area_sqft": null, | |
| 71 | + "n_images": 1, | |
| 72 | + "n_amenities": 0 | |
| 73 | + }, | |
| 74 | + { | |
| 75 | + "uid": "acceslogis_gb:4-1-2-rue-frigon-a-shawinigan-1er-etage", | |
| 76 | + "url": "https://acceslogisgb.com/#logements", | |
| 77 | + "title": "4 1/2, rue Frigon à Shawinigan", | |
| 78 | + "address": "", | |
| 79 | + "sector": "", | |
| 80 | + "city": "Shawinigan", | |
| 81 | + "unit_type": "4½", | |
| 82 | + "price": 1325.0, | |
| 83 | + "availability": "Disponible maintenant", | |
| 84 | + "area_sqft": null, | |
| 85 | + "n_images": 1, | |
| 86 | + "n_amenities": 0 | |
| 87 | + }, | |
| 88 | + { | |
| 89 | + "uid": "acceslogis_gb:4-1-2-rue-frigon-a-shawinigan-2e-etage", | |
| 90 | + "url": "https://acceslogisgb.com/#logements", | |
| 91 | + "title": "4 1/2, rue Frigon à Shawinigan", | |
| 92 | + "address": "", | |
| 93 | + "sector": "", | |
| 94 | + "city": "Shawinigan", | |
| 95 | + "unit_type": "4½", | |
| 96 | + "price": 1335.0, | |
| 97 | + "availability": "Disponible maintenant", | |
| 98 | + "area_sqft": null, | |
| 99 | + "n_images": 1, | |
| 100 | + "n_amenities": 0 | |
| 101 | + }, | |
| 102 | + { | |
| 103 | + "uid": "acceslogis_gb:4-1-2-rue-frigon-a-shawinigan-3e-etage", | |
| 104 | + "url": "https://acceslogisgb.com/#logements", | |
| 105 | + "title": "4 1/2, rue Frigon à Shawinigan", | |
| 106 | + "address": "", | |
| 107 | + "sector": "", | |
| 108 | + "city": "Shawinigan", | |
| 109 | + "unit_type": "4½", | |
| 110 | + "price": 1350.0, | |
| 111 | + "availability": "Disponible maintenant", | |
| 112 | + "area_sqft": null, | |
| 113 | + "n_images": 1, | |
| 114 | + "n_amenities": 0 | |
| 115 | + }, | |
| 116 | + { | |
| 117 | + "uid": "acceslogis_gb:4-1-2-rue-frigon-a-shawinigan-demi-sous-sol", | |
| 118 | + "url": "https://acceslogisgb.com/#logements", | |
| 119 | + "title": "4 1/2, rue Frigon à Shawinigan", | |
| 120 | + "address": "", | |
| 121 | + "sector": "", | |
| 122 | + "city": "Shawinigan", | |
| 123 | + "unit_type": "4½", | |
| 124 | + "price": 1300.0, | |
| 125 | + "availability": "Disponible maintenant", | |
| 126 | + "area_sqft": null, | |
| 127 | + "n_images": 1, | |
| 128 | + "n_amenities": 0 | |
| 129 | + }, | |
| 130 | + { | |
| 131 | + "uid": "acceslogis_gb:5-1-2-a-st-ambroise-de-kildare", | |
| 132 | + "url": "https://acceslogisgb.com/#logements", | |
| 133 | + "title": "5 1/2 à St-Ambroise-de-Kildare", | |
| 134 | + "address": "", | |
| 135 | + "sector": "", | |
| 136 | + "city": "Saint-Ambroise-de-Kildare", | |
| 137 | + "unit_type": "5½", | |
| 138 | + "price": 1500.0, | |
| 139 | + "availability": "Disponible maintenant", | |
| 140 | + "area_sqft": null, | |
| 141 | + "n_images": 1, | |
| 142 | + "n_amenities": 0 | |
| 143 | + }, | |
| 144 | + { | |
| 145 | + "uid": "acceslogis_gb:84-rue-precieux-sang-joliette-1er-etage", | |
| 146 | + "url": "https://acceslogisgb.com/#logements", | |
| 147 | + "title": "84 Rue Précieux-Sang, Joliette", | |
| 148 | + "address": "84 Rue Précieux-Sang", | |
| 149 | + "sector": "", | |
| 150 | + "city": "Joliette", | |
| 151 | + "unit_type": "4½", | |
| 152 | + "price": 1250.0, | |
| 153 | + "availability": "Disponible maintenant", | |
| 154 | + "area_sqft": null, | |
| 155 | + "n_images": 1, | |
| 156 | + "n_amenities": 0 | |
| 157 | + } | |
| 158 | + ] | |
| 159 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/acceslogis_gb/index.json
+9 −0
@@ -0,0 +1,9 @@ | ||
| 1 | +{ | |
| 2 | + "3e3670fb0276a0d9e5cd": { | |
| 3 | + "method": "GET", | |
| 4 | + "url": "https://acceslogisgb.com/", | |
| 5 | + "status": 200, | |
| 6 | + "content_type": "text/html", | |
| 7 | + "file": "3e3670fb0276a0d9e5cd.html" | |
| 8 | + } | |
| 9 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/ferrovia/ada8141de33c44ccc840.html
+2007 −0
@@ -0,0 +1,2007 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr-FR" class="no-js"> | |
| 3 | + <head> | |
| 4 | + | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width"> | |
| 7 | + <link rel="profile" href="http://gmpg.org/xfn/11"> | |
| 8 | + <link rel="pingback" href="https://www.ferroviamirabel.com/xmlrpc.php"> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | + <!-- Pixel Cat Facebook Pixel Code --> | |
| 11 | + <script type="text/plain" data-service="facebook" data-category="marketing"> | |
| 12 | + !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? | |
| 13 | + n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; | |
| 14 | + n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; | |
| 15 | + t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, | |
| 16 | + document,'script','https://connect.facebook.net/en_US/fbevents.js' ); | |
| 17 | + fbq( 'init', '552877629303142' ); </script> | |
| 18 | + <!-- DO NOT MODIFY --> | |
| 19 | + <!-- End Facebook Pixel Code --> | |
| 20 | + | |
| 21 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 22 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 23 | + var gtm4wp_datalayer_name = "dataLayer"; | |
| 24 | + var dataLayer = dataLayer || []; | |
| 25 | +</script> | |
| 26 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 27 | + <!-- This site is optimized with the Yoast SEO plugin v23.9 - https://yoast.com/wordpress/plugins/seo/ --> | |
| 28 | + <title>DISPONIBILITÉS PHASE 3 - Ferrovia</title> | |
| 29 | + <link rel="canonical" href="https://www.ferroviamirabel.com/disponibilites-phase-3/" /> | |
| 30 | + <meta property="og:locale" content="fr_FR" /> | |
| 31 | + <meta property="og:type" content="article" /> | |
| 32 | + <meta property="og:title" content="DISPONIBILITÉS PHASE 3 - Ferrovia" /> | |
| 33 | + <meta property="og:description" content="(450) 350-0039 Disponibilités, prix et plans de nos condos à louer (phase 3), situés à Mirabel, dans le secteur de Saint-Janvier PHASE 3 Plan du projet PLANS ET PRIX – PHASE 3 Disponibilités À noter, que les logements sont non-fumeurs et que les animaux ne sont pas admis. Déclaration de confidentialité Copyright © Ferrovia – […]" /> | |
| 34 | + <meta property="og:url" content="https://www.ferroviamirabel.com/disponibilites-phase-3/" /> | |
| 35 | + <meta property="og:site_name" content="Ferrovia" /> | |
| 36 | + <meta property="article:modified_time" content="2026-02-12T22:30:24+00:00" /> | |
| 37 | + <meta property="og:image" content="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" /> | |
| 38 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 39 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 40 | + <meta name="twitter:data1" content="6 minutes" /> | |
| 41 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/","url":"https://www.ferroviamirabel.com/disponibilites-phase-3/","name":"DISPONIBILITÉS PHASE 3 - Ferrovia","isPartOf":{"@id":"https://www.ferroviamirabel.com/#website"},"primaryImageOfPage":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/#primaryimage"},"image":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/#primaryimage"},"thumbnailUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","datePublished":"2024-09-09T15:40:17+00:00","dateModified":"2026-02-12T22:30:24+00:00","breadcrumb":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://www.ferroviamirabel.com/disponibilites-phase-3/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/#primaryimage","url":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","contentUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png"},{"@type":"BreadcrumbList","@id":"https://www.ferroviamirabel.com/disponibilites-phase-3/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://www.ferroviamirabel.com/"},{"@type":"ListItem","position":2,"name":"DISPONIBILITÉS PHASE 3"}]},{"@type":"WebSite","@id":"https://www.ferroviamirabel.com/#website","url":"https://www.ferroviamirabel.com/","name":"Ferrovia","description":"Condos locatifs - Mirabel","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.ferroviamirabel.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}</script> | |
| 42 | + <!-- / Yoast SEO plugin. --> | |
| 43 | + | |
| 44 | + | |
| 45 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 46 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux" href="https://www.ferroviamirabel.com/feed/" /> | |
| 47 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux des commentaires" href="https://www.ferroviamirabel.com/comments/feed/" /> | |
| 48 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-phase-3%2F" /> | |
| 49 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-phase-3%2F&format=xml" /> | |
| 50 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 51 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 52 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 53 | +</style> | |
| 54 | +<style id="wp-emoji-styles-inline-css"> | |
| 55 | + | |
| 56 | + img.wp-smiley, img.emoji { | |
| 57 | + display: inline !important; | |
| 58 | + border: none !important; | |
| 59 | + box-shadow: none !important; | |
| 60 | + height: 1em !important; | |
| 61 | + width: 1em !important; | |
| 62 | + margin: 0 0.07em !important; | |
| 63 | + vertical-align: -0.1em !important; | |
| 64 | + background: none !important; | |
| 65 | + padding: 0 !important; | |
| 66 | + } | |
| 67 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 68 | +</style> | |
| 69 | +<style id="classic-theme-styles-inline-css"> | |
| 70 | +/*! This file is auto-generated */ | |
| 71 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 72 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 73 | +</style> | |
| 74 | +<style id="global-styles-inline-css"> | |
| 75 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} | |
| 76 | +:root :where(.wp-block-icon svg){width: 24px;} | |
| 77 | +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} | |
| 78 | +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} | |
| 79 | +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} | |
| 80 | +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} | |
| 81 | +/*# sourceURL=global-styles-inline-css */ | |
| 82 | +</style> | |
| 83 | +<link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.3.3' media='all' /> | |
| 84 | +<style id="rs-plugin-settings-inline-css"> | |
| 85 | +#rs-demo-id {} | |
| 86 | +/*# sourceURL=rs-plugin-settings-inline-css */ | |
| 87 | +</style> | |
| 88 | +<link rel='stylesheet' id='cmplz-general-css' href='https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1769530449' media='all' /> | |
| 89 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='mihouse-fonts-css' data-href='https://fonts.googleapis.com/css?family=Prata%7COverpass%3A300%2C300i%2C400%2C400i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i%7COpen%2BSans&subset=latin%2Clatin-ext' media='all' /> | |
| 90 | +<link rel='stylesheet' id='mihouse-style-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/style.css?ver=7.0.3' media='all' /> | |
| 91 | +<link rel='stylesheet' id='bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/bootstrap.css?ver=7.0.3' media='all' /> | |
| 92 | +<link rel='stylesheet' id='fancybox-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.fancybox.css' media='all' /> | |
| 93 | +<link rel='stylesheet' id='mmenu-all-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.mmenu.all.css?ver=7.0.3' media='all' /> | |
| 94 | +<link rel='stylesheet' id='slick-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/slick/slick.css' media='all' /> | |
| 95 | +<link rel='stylesheet' id='fontawesome-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/fontawesome.css?ver=7.0.3' media='all' /> | |
| 96 | +<link rel='stylesheet' id='icofont-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/icofont.css?ver=7.0.3' media='all' /> | |
| 97 | +<link rel='stylesheet' id='ionicons-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/ionicons.css?ver=7.0.3' media='all' /> | |
| 98 | +<link rel='stylesheet' id='materia-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/materia.css?ver=7.0.3' media='all' /> | |
| 99 | +<link rel='stylesheet' id='elegant-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/elegant.css?ver=7.0.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='mihouse-style-template-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/template.css?ver=7.0.3' media='all' /> | |
| 101 | +<style id="mihouse-style-template-inline-css"> | |
| 102 | +.blog_title {font-family: Open Sans ;font-size: 14px;font-weight:400;} | |
| 103 | +/*# sourceURL=mihouse-style-template-inline-css */ | |
| 104 | +</style> | |
| 105 | +<link rel='stylesheet' id='elementor-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' media='all' /> | |
| 106 | +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.2' media='all' /> | |
| 107 | +<link rel='stylesheet' id='elementor-post-6-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-6.css?ver=1786094240' media='all' /> | |
| 108 | +<link rel='stylesheet' id='wpdt-elementor-widget-font-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/integrations/starter/page-builders/elementor/css/style.css?ver=7.3.3' media='all' /> | |
| 109 | +<link rel='stylesheet' id='widget-image-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.2' media='all' /> | |
| 110 | +<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=3.34.0' media='all' /> | |
| 111 | +<link rel='stylesheet' id='e-sticky-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=3.34.0' media='all' /> | |
| 112 | +<link rel='stylesheet' id='widget-spacer-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=4.2.2' media='all' /> | |
| 113 | +<link rel='stylesheet' id='widget-heading-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.2' media='all' /> | |
| 114 | +<link rel='stylesheet' id='elementor-post-11769-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-11769.css?ver=1786098563' media='all' /> | |
| 115 | +<link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1742245718' media='all' /> | |
| 116 | +<link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1742245720' media='all' /> | |
| 117 | +<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' /> | |
| 118 | +<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' /> | |
| 119 | +<script id="jquery-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 120 | +<script id="jquery-migrate-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 121 | +<script id="tp-tools-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.3.3"></script> | |
| 122 | +<script id="revmin-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.3.3"></script> | |
| 123 | +<link rel="https://api.w.org/" href="https://www.ferroviamirabel.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.ferroviamirabel.com/wp-json/wp/v2/pages/11769" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.ferroviamirabel.com/xmlrpc.php?rsd" /> | |
| 124 | +<meta name="generator" content="WordPress 7.0.3" /> | |
| 125 | +<link rel='shortlink' href='https://www.ferroviamirabel.com/?p=11769' /> | |
| 126 | +<meta name="generator" content="Redux 4.5.10" /> <style>.cmplz-hidden { | |
| 127 | + display: none !important; | |
| 128 | + }</style> | |
| 129 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 130 | +<!-- GTM Container placement set to automatic --> | |
| 131 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 132 | + var dataLayer_content = {"pagePostType":"page","pagePostType2":"single-page","pagePostAuthor":"bqsas"}; | |
| 133 | + dataLayer.push( dataLayer_content ); | |
| 134 | +</script> | |
| 135 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 136 | +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 137 | +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 138 | +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 139 | +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 140 | +})(window,document,'script','dataLayer','GTM-WPSL7SJ'); | |
| 141 | +</script> | |
| 142 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 143 | +<meta name="google-site-verification" content="Nlv5MPpNKTzvpNELWxPZq24HaIX_plPzXrAp5J9igsE" /> | |
| 144 | +<meta name="facebook-domain-verification" content="mat0etaoyaqdleu1nqk7cok5uj1i2k" /> | |
| 145 | + | |
| 146 | + | |
| 147 | +<meta name="generator" content="Elementor 4.2.2; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> | |
| 148 | +<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> | |
| 149 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 150 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 151 | + background-image: none !important; | |
| 152 | + } | |
| 153 | + @media screen and (max-height: 1024px) { | |
| 154 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 155 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 156 | + background-image: none !important; | |
| 157 | + } | |
| 158 | + } | |
| 159 | + @media screen and (max-height: 640px) { | |
| 160 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 161 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 162 | + background-image: none !important; | |
| 163 | + } | |
| 164 | + } | |
| 165 | + </style> | |
| 166 | + <meta name="generator" content="Powered by Slider Revolution 6.3.3 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> | |
| 167 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-32x32.png" sizes="32x32" /> | |
| 168 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-192x192.png" sizes="192x192" /> | |
| 169 | +<link rel="apple-touch-icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-180x180.png" /> | |
| 170 | +<meta name="msapplication-TileImage" content="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-270x270.png" /> | |
| 171 | +<script type="text/javascript">function setREVStartSize(e){ | |
| 172 | + //window.requestAnimationFrame(function() { | |
| 173 | + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; | |
| 174 | + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; | |
| 175 | + try { | |
| 176 | + var pw = document.getElementById(e.c).parentNode.offsetWidth, | |
| 177 | + newh; | |
| 178 | + pw = pw===0 || isNaN(pw) ? window.RSIW : pw; | |
| 179 | + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); | |
| 180 | + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); | |
| 181 | + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); | |
| 182 | + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); | |
| 183 | + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); | |
| 184 | + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); | |
| 185 | + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); | |
| 186 | + if(e.layout==="fullscreen" || e.l==="fullscreen") | |
| 187 | + newh = Math.max(e.mh,window.RSIH); | |
| 188 | + else{ | |
| 189 | + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; | |
| 190 | + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; | |
| 191 | + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; | |
| 192 | + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; | |
| 193 | + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; | |
| 194 | + | |
| 195 | + var nl = new Array(e.rl.length), | |
| 196 | + ix = 0, | |
| 197 | + sl; | |
| 198 | + e.tabw = e.tabhide>=pw ? 0 : e.tabw; | |
| 199 | + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; | |
| 200 | + e.tabh = e.tabhide>=pw ? 0 : e.tabh; | |
| 201 | + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; | |
| 202 | + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; | |
| 203 | + sl = nl[0]; | |
| 204 | + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} | |
| 205 | + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); | |
| 206 | + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); | |
| 207 | + } | |
| 208 | + if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style")); | |
| 209 | + document.getElementById(e.c).height = newh+"px"; | |
| 210 | + window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }"; | |
| 211 | + } catch(e){ | |
| 212 | + console.log("Failure at Presize of Slider:" + e) | |
| 213 | + } | |
| 214 | + //}); | |
| 215 | + };</script> | |
| 216 | +<style id="wp-custom-css"> | |
| 217 | +@media only screen and (max-width: 1024px) { | |
| 218 | + html body .phone-number .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description{ | |
| 219 | + pointer-events: none !important; | |
| 220 | + text-decoration:none !important; | |
| 221 | + color:inherit !important; | |
| 222 | + color:#a3a3a3 !important; | |
| 223 | + } | |
| 224 | +} | |
| 225 | +</style> | |
| 226 | + <style type="text/css"> | |
| 227 | + body:before { display:none !important} | |
| 228 | + body:after { display:none !important} | |
| 229 | + body, body.page-template-revslider-page-template, body.page-template---publicviewsrevslider-page-template-php { background:transparent} | |
| 230 | + </style> | |
| 231 | + </head> | |
| 232 | + | |
| 233 | + <body data-cmplz=1 class="wp-singular page-template page-template--- page-template-public page-template-views page-template-revslider-page-template page-template---publicviewsrevslider-page-template-php page page-id-11769 wp-theme-mihouse disponibilites-phase-3 banners-effect-1 full-layout elementor-default elementor-kit-6 elementor-page elementor-page-11769"> | |
| 234 | + <div> | |
| 235 | + <div data-elementor-type="wp-page" data-elementor-id="11769" class="elementor elementor-11769" data-elementor-post-type="page"> | |
| 236 | + <header class="elementor-section elementor-top-section elementor-element elementor-element-6e3699a elementor-section-content-middle elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="6e3699a" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic","sticky":"top","stretch_section":"section-stretched","sticky_on":["desktop","tablet","mobile"],"sticky_offset":0,"sticky_effects_offset":0,"sticky_anchor_link_offset":0}"> | |
| 237 | + <div class="elementor-container elementor-column-gap-no"> | |
| 238 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-76bbada" data-id="76bbada" data-element_type="column" data-e-type="column"> | |
| 239 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 240 | + <div class="elementor-element elementor-element-6148e6f elementor-widget elementor-widget-image" data-id="6148e6f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 241 | + <div class="elementor-widget-container"> | |
| 242 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" title="Logo Ferrovia – Projet immobilier – Condos Laurentides" alt="Logo Ferrovia - Projet immobilier - Condos Laurentides" loading="lazy" /> </div> | |
| 243 | + </div> | |
| 244 | + </div> | |
| 245 | + </div> | |
| 246 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-95b0dd0" data-id="95b0dd0" data-element_type="column" data-e-type="column"> | |
| 247 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 248 | + <div class="elementor-element elementor-element-b5a1f28 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="b5a1f28" data-element_type="widget" data-e-type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\" aria-hidden=\"true\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> | |
| 249 | + <div class="elementor-widget-container"> | |
| 250 | + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> | |
| 251 | + <ul id="menu-1-b5a1f28" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item">ACCUEIL</a></li> | |
| 252 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item">PROJET</a></li> | |
| 253 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item">INTÉRIEURS</a> | |
| 254 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 255 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item">PHASE 1</a></li> | |
| 256 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item">PHASE 3</a></li> | |
| 257 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item">PHASE 4</a></li> | |
| 258 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item">PHOTOS DES UNITÉS</a></li> | |
| 259 | +</ul> | |
| 260 | +</li> | |
| 261 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item">DISPONIBILITÉS</a> | |
| 262 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 263 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" class="elementor-sub-item">PHASE 1</a></li> | |
| 264 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor">PHASE 2 (à venir)</a></li> | |
| 265 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" aria-current="page" class="elementor-sub-item elementor-item-active">PHASE 3</a></li> | |
| 266 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" class="elementor-sub-item">PHASE 4</a></li> | |
| 267 | +</ul> | |
| 268 | +</li> | |
| 269 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item">À PROPOS</a></li> | |
| 270 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item">INFORMATION</a></li> | |
| 271 | +</ul> </nav> | |
| 272 | + <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Permuter le menu" aria-expanded="false"> | |
| 273 | + <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> | |
| 274 | + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> | |
| 275 | + <ul id="menu-2-b5a1f28" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item" tabindex="-1">ACCUEIL</a></li> | |
| 276 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item" tabindex="-1">PROJET</a></li> | |
| 277 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item" tabindex="-1">INTÉRIEURS</a> | |
| 278 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 279 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item" tabindex="-1">PHASE 1</a></li> | |
| 280 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item" tabindex="-1">PHASE 3</a></li> | |
| 281 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item" tabindex="-1">PHASE 4</a></li> | |
| 282 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item" tabindex="-1">PHOTOS DES UNITÉS</a></li> | |
| 283 | +</ul> | |
| 284 | +</li> | |
| 285 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item" tabindex="-1">DISPONIBILITÉS</a> | |
| 286 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 287 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" class="elementor-sub-item" tabindex="-1">PHASE 1</a></li> | |
| 288 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">PHASE 2 (à venir)</a></li> | |
| 289 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">PHASE 3</a></li> | |
| 290 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" class="elementor-sub-item" tabindex="-1">PHASE 4</a></li> | |
| 291 | +</ul> | |
| 292 | +</li> | |
| 293 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item" tabindex="-1">À PROPOS</a></li> | |
| 294 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item" tabindex="-1">INFORMATION</a></li> | |
| 295 | +</ul> </nav> | |
| 296 | + </div> | |
| 297 | + </div> | |
| 298 | + </div> | |
| 299 | + </div> | |
| 300 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-edc2479" data-id="edc2479" data-element_type="column" data-e-type="column"> | |
| 301 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 302 | + <div class="elementor-element elementor-element-5777de1 elementor-align-center elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="5777de1" data-element_type="widget" data-e-type="widget" data-widget_type="button.default"> | |
| 303 | + <div class="elementor-widget-container"> | |
| 304 | + <div class="elementor-button-wrapper"> | |
| 305 | + <a class="elementor-button elementor-button-link elementor-size-md" href="tel:(450)%20350-0039"> | |
| 306 | + <span class="elementor-button-content-wrapper"> | |
| 307 | + <span class="elementor-button-text">(450) 350-0039</span> | |
| 308 | + </span> | |
| 309 | + </a> | |
| 310 | + </div> | |
| 311 | + </div> | |
| 312 | + </div> | |
| 313 | + </div> | |
| 314 | + </div> | |
| 315 | + </div> | |
| 316 | + </header> | |
| 317 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-3e94ea0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3e94ea0" data-element_type="section" data-e-type="section"> | |
| 318 | + <div class="elementor-container elementor-column-gap-default"> | |
| 319 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ada1a63" data-id="ada1a63" data-element_type="column" data-e-type="column"> | |
| 320 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 321 | + <div class="elementor-element elementor-element-d5854bd elementor-widget elementor-widget-spacer" data-id="d5854bd" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default"> | |
| 322 | + <div class="elementor-widget-container"> | |
| 323 | + <div class="elementor-spacer"> | |
| 324 | + <div class="elementor-spacer-inner"></div> | |
| 325 | + </div> | |
| 326 | + </div> | |
| 327 | + </div> | |
| 328 | + <div class="elementor-element elementor-element-69bad8c elementor-widget elementor-widget-heading" data-id="69bad8c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default"> | |
| 329 | + <div class="elementor-widget-container"> | |
| 330 | + <h1 class="elementor-heading-title elementor-size-default">Disponibilités, prix et plans de nos condos à louer (phase 3), situés à Mirabel, dans le secteur de Saint-Janvier</h1> </div> | |
| 331 | + </div> | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + </section> | |
| 336 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-6dd9691 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="6dd9691" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 337 | + <div class="elementor-container elementor-column-gap-default"> | |
| 338 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-aa22917" data-id="aa22917" data-element_type="column" data-e-type="column"> | |
| 339 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 340 | + <div class="elementor-element elementor-element-2bf02fd text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="2bf02fd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 341 | + <div class="elementor-widget-container"> | |
| 342 | + <p class="subtitle">PHASE 3</p><h3 class="title">Plan du projet</h3> </div> | |
| 343 | + </div> | |
| 344 | + </div> | |
| 345 | + </div> | |
| 346 | + </div> | |
| 347 | + </section> | |
| 348 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-c28d281 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="c28d281" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 349 | + <div class="elementor-container elementor-column-gap-default"> | |
| 350 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2d43a52" data-id="2d43a52" data-element_type="column" data-e-type="column"> | |
| 351 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 352 | + <div class="elementor-element elementor-element-85ed12d elementor-widget elementor-widget-image" data-id="85ed12d" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 353 | + <div class="elementor-widget-container"> | |
| 354 | + <img fetchpriority="high" decoding="async" width="1483" height="534" src="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg" class="attachment-full size-full wp-image-11641" alt="" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg 1483w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-300x108.jpg 300w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-1024x369.jpg 1024w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-768x277.jpg 768w" sizes="(max-width: 1483px) 100vw, 1483px" /> </div> | |
| 355 | + </div> | |
| 356 | + </div> | |
| 357 | + </div> | |
| 358 | + </div> | |
| 359 | + </section> | |
| 360 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-fbff831 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="fbff831" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 361 | + <div class="elementor-container elementor-column-gap-default"> | |
| 362 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3b3b35b" data-id="3b3b35b" data-element_type="column" data-e-type="column"> | |
| 363 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 364 | + <div class="elementor-element elementor-element-30e19de text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="30e19de" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 365 | + <div class="elementor-widget-container"> | |
| 366 | + <p class="subtitle">PLANS ET PRIX – PHASE 3</p><h3 class="title">Disponibilités</h3><p>À noter, que les logements sont non-fumeurs et que les animaux ne sont pas admis.</p> </div> | |
| 367 | + </div> | |
| 368 | + <div class="elementor-element elementor-element-e4dfd06 elementor-widget elementor-widget-text-editor" data-id="e4dfd06" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 369 | + <div class="elementor-widget-container"> | |
| 370 | + | |
| 371 | +<div class="wpdt-c wdt-skin-light"> | |
| 372 | + | |
| 373 | + <input type="hidden" id="wdtNonceFrontendServerSide_6" name="wdtNonceFrontendServerSide_6" value="fa0f419dd9" /><input type="hidden" name="_wp_http_referer" value="/disponibilites-phase-3/" /> <input type="hidden" id="table_1_desc" | |
| 374 | + value='{"tableId":"table_1","tableType":"manual","selector":"#table_1","responsive":true,"responsiveAction":"icon","editable":false,"inlineEditing":false,"infoBlock":false,"pagination_top":0,"pagination":1,"paginationAlign":"right","paginationLayout":"full_numbers","paginationLayoutMobile":"simple","file_location":"","tableSkin":"light","table_wcag":0,"simple_template_id":0,"scrollable":true,"fixedLayout":false,"globalSearch":false,"showRowsPerPage":false,"popoverTools":false,"loader":1,"showCartInformation":0,"hideBeforeLoad":false,"number_format":1,"decimalPlaces":2,"spinnerSrc":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/wpdatatables\/assets\/\/img\/spinner.gif","index_column":0,"groupingEnabled":false,"tableWpId":6,"dataTableParams":{"sDom":"BT\u003C\u0027clear\u0027\u003E\u003C\u0027wdtscroll\u0027t\u003Ep","bSortCellsTop":false,"bFilter":true,"bPaginate":true,"sPaginationType":"full_numbers","aLengthMenu":[[1,5,10,25,50,100,-1],[1,5,10,25,50,100,"Tout"]],"iDisplayLength":-1,"columnDefs":[{"sType":"formatted-num","wdtType":"int","bVisible":false,"orderable":true,"searchable":true,"InputType":"text","name":"wdt_ID","origHeader":"wdt_ID","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":"numdata integer column-wdt_id","aTargets":[0]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"unit","origHeader":"unit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-unit","aTargets":[1]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"modle","origHeader":"modle","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-modle","aTargets":[2]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"tage","origHeader":"tage","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-tage","aTargets":[3]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"pices","origHeader":"pices","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-pices","aTargets":[4]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"superficiepc","origHeader":"superficiepc","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-superficiepc","aTargets":[5]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"salledeausupp","origHeader":"salledeausupp","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-salledeausupp","aTargets":[6]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"disponibilit","origHeader":"disponibilit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-disponibilit","aTargets":[7]},{"sType":"string","wdtType":"string","bVisible":false,"orderable":true,"searchable":true,"InputType":"text","name":"prix","origHeader":"prix","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-prix","aTargets":[8]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"statut","origHeader":"statut","notNull":false,"conditionalFormattingRules":[{"ifClause":"eq","cellVal":"Lou\u00e9","action":"setRowClass","setVal":"hide"}],"transformValueRules":"","className":" column-statut","aTargets":[9]},{"sType":"string","wdtType":"link","bVisible":true,"orderable":true,"searchable":true,"InputType":"link","name":"plan","origHeader":"plan","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-plan","aTargets":[10]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"dtail","origHeader":"dtail","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-dtail","aTargets":[11]}],"bAutoWidth":false,"order":[[0,"asc"]],"ordering":true,"fixedHeader":{"header":false,"headerOffset":0},"fixedColumns":false,"oLanguage":{"sSearchPlaceholder":""},"buttons":[],"bProcessing":false,"serverSide":true,"ajax":{"url":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php?action=get_wdtable&table_id=6","type":"POST"},"oSearch":{"bSmart":false,"bRegex":false,"sSearch":""}},"customRowDisplay":"","tabletWidth":"1024","mobileWidth":"480","renderFilter":"footer","advancedFilterEnabled":false,"serverSide":true,"autoRefreshInterval":0,"processing":true,"fnServerData":true,"columnsFixed":0,"sumFunctionsLabel":"","avgFunctionsLabel":"","minFunctionsLabel":"","maxFunctionsLabel":"","columnsDecimalPlaces":{"wdt_ID":-1,"unit":-1,"modle":-1,"tage":-1,"pices":-1,"superficiepc":-1,"salledeausupp":-1,"disponibilit":-1,"prix":-1,"statut":-1,"plan":-1,"dtail":-1},"columnsThousandsSeparator":{"wdt_ID":0},"sumColumns":[],"avgColumns":[],"sumAvgColumns":[],"conditional_formatting_columns":["statut"],"timeFormat":"h:i A","datepickFormat":"dd\/mm\/yy"}'/> | |
| 375 | + | |
| 376 | + <table id="table_1" | |
| 377 | + class=" scroll responsive display nowrap wdt-no-display data-t data-t wpDataTable wpDataTableID-6 " | |
| 378 | + style="" | |
| 379 | + data-described-by='table_1_desc' | |
| 380 | + data-wpdatatable_id="6"> | |
| 381 | + | |
| 382 | + <!-- Table header --> | |
| 383 | + | |
| 384 | +<thead> | |
| 385 | +<tr> | |
| 386 | + <th | |
| 387 | + class=" wdtheader sort numdata integer " | |
| 388 | + style=""> wdt_ID</th> <th | |
| 389 | + data-class="expand" class=" wdtheader sort " | |
| 390 | + style=""> UNITÉ</th> <th | |
| 391 | + class=" wdtheader sort " | |
| 392 | + style=""> MODÈLE</th> <th | |
| 393 | + class=" wdtheader sort " | |
| 394 | + style=""> ÉTAGE</th> <th | |
| 395 | + class=" wdtheader sort " | |
| 396 | + style=""> PIÈCES</th> <th | |
| 397 | + class=" wdtheader sort " | |
| 398 | + style=""> SUPERFICIE p.c.</th> <th | |
| 399 | + class=" wdtheader sort " | |
| 400 | + style=""> SALLE D'EAU SUPP.</th> <th | |
| 401 | + class=" wdtheader sort " | |
| 402 | + style=""> DISPONIBILITÉ</th> <th | |
| 403 | + class=" wdtheader sort " | |
| 404 | + style=""> PRIX</th> <th | |
| 405 | + class=" wdtheader sort " | |
| 406 | + style=""> STATUT</th> <th | |
| 407 | + class=" wdtheader sort " | |
| 408 | + style=""> PLAN</th> <th | |
| 409 | + class=" wdtheader sort " | |
| 410 | + style=""> DÉTAIL</th> </tr> | |
| 411 | +</thead> | |
| 412 | + <!-- /Table header --> | |
| 413 | + | |
| 414 | + <!-- Table body --> | |
| 415 | + | |
| 416 | +<tbody> | |
| 417 | +<!-- Table body --> | |
| 418 | +<div data-id="6" | |
| 419 | + class="wdt-timeline-item wdt-timeline-table_1" | |
| 420 | + style=""> | |
| 421 | + <div class="wdt-table-loader"> | |
| 422 | + <div class="wdt-table-loader-row wdt-table-loader-header"> | |
| 423 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 424 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 425 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 426 | + </div> | |
| 427 | + <div class="wdt-table-loader-row"> | |
| 428 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 429 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 430 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 431 | + </div> | |
| 432 | + <div class="wdt-table-loader-row"> | |
| 433 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 434 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 435 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 436 | + </div> | |
| 437 | + <div class="wdt-table-loader-row"> | |
| 438 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 439 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 440 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 441 | + </div> | |
| 442 | + <div class="wdt-table-loader-row"> | |
| 443 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 444 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 445 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 446 | + </div> | |
| 447 | + <div class="wdt-table-loader-row"> | |
| 448 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 449 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 450 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 451 | + </div> | |
| 452 | + <div class="wdt-table-loader-row"> | |
| 453 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 454 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 455 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 456 | + </div> | |
| 457 | + <div class="wdt-table-loader-row"> | |
| 458 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 459 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 460 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 461 | + </div> | |
| 462 | + <div class="wdt-table-loader-row"> | |
| 463 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 464 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 465 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 466 | + </div> | |
| 467 | + <div class="wdt-table-loader-row"> | |
| 468 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 469 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 470 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 471 | + </div> | |
| 472 | + <div class="wdt-table-loader-row"> | |
| 473 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 474 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 475 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 476 | + </div> | |
| 477 | + <div class="wdt-table-loader-row"> | |
| 478 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 479 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 480 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 481 | + </div> | |
| 482 | + <div class="wdt-table-loader-row"> | |
| 483 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 484 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 485 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 486 | + </div> | |
| 487 | + <div class="wdt-table-loader-row"> | |
| 488 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 489 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 490 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 491 | + </div> | |
| 492 | + <div class="wdt-table-loader-row"> | |
| 493 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 494 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 495 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 496 | + </div> | |
| 497 | + <div class="wdt-table-loader-row"> | |
| 498 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 499 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 500 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 501 | + </div> | |
| 502 | + <div class="wdt-table-loader-row"> | |
| 503 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 504 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 505 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 506 | + </div> | |
| 507 | + <div class="wdt-table-loader-row"> | |
| 508 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 509 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 510 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 511 | + </div> | |
| 512 | + <div class="wdt-table-loader-row"> | |
| 513 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 514 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 515 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 516 | + </div> | |
| 517 | + <div class="wdt-table-loader-row"> | |
| 518 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 519 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 520 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 521 | + </div> | |
| 522 | + <div class="wdt-table-loader-row"> | |
| 523 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 524 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 525 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 526 | + </div> | |
| 527 | + <div class="wdt-table-loader-row"> | |
| 528 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 529 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 530 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 531 | + </div> | |
| 532 | + <div class="wdt-table-loader-row"> | |
| 533 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 534 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 535 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 536 | + </div> | |
| 537 | + <div class="wdt-table-loader-row"> | |
| 538 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 539 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 540 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 541 | + </div> | |
| 542 | + <div class="wdt-table-loader-row"> | |
| 543 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 544 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 545 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 546 | + </div> | |
| 547 | + <div class="wdt-table-loader-row"> | |
| 548 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 549 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 550 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 551 | + </div> | |
| 552 | + <div class="wdt-table-loader-row"> | |
| 553 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 554 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 555 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 556 | + </div> | |
| 557 | + <div class="wdt-table-loader-row"> | |
| 558 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 559 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 560 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 561 | + </div> | |
| 562 | + <div class="wdt-table-loader-row"> | |
| 563 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 564 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 565 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 566 | + </div> | |
| 567 | + <div class="wdt-table-loader-row"> | |
| 568 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 569 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 570 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 571 | + </div> | |
| 572 | + <div class="wdt-table-loader-row"> | |
| 573 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 574 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 575 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 576 | + </div> | |
| 577 | + <div class="wdt-table-loader-row"> | |
| 578 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 579 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 580 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 581 | + </div> | |
| 582 | + <div class="wdt-table-loader-row"> | |
| 583 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 584 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 585 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 586 | + </div> | |
| 587 | + <div class="wdt-table-loader-row"> | |
| 588 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 589 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 590 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 591 | + </div> | |
| 592 | + <div class="wdt-table-loader-row"> | |
| 593 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 594 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 595 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 596 | + </div> | |
| 597 | + <div class="wdt-table-loader-row"> | |
| 598 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 599 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 600 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 601 | + </div> | |
| 602 | + <div class="wdt-table-loader-row"> | |
| 603 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 604 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 605 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 606 | + </div> | |
| 607 | + <div class="wdt-table-loader-row"> | |
| 608 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 609 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 610 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 611 | + </div> | |
| 612 | + <div class="wdt-table-loader-row"> | |
| 613 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 614 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 615 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 616 | + </div> | |
| 617 | + <div class="wdt-table-loader-row"> | |
| 618 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 619 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 620 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 621 | + </div> | |
| 622 | + <div class="wdt-table-loader-row"> | |
| 623 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 624 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 625 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 626 | + </div> | |
| 627 | + <div class="wdt-table-loader-row"> | |
| 628 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 629 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 630 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 631 | + </div> | |
| 632 | + <div class="wdt-table-loader-row"> | |
| 633 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 634 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 635 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 636 | + </div> | |
| 637 | + <div class="wdt-table-loader-row"> | |
| 638 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 639 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 640 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 641 | + </div> | |
| 642 | + <div class="wdt-table-loader-row"> | |
| 643 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 644 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 645 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 646 | + </div> | |
| 647 | + <div class="wdt-table-loader-row"> | |
| 648 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 649 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 650 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 651 | + </div> | |
| 652 | + <div class="wdt-table-loader-row"> | |
| 653 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 654 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 655 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 656 | + </div> | |
| 657 | + <div class="wdt-table-loader-row"> | |
| 658 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 659 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 660 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 661 | + </div> | |
| 662 | + <div class="wdt-table-loader-row"> | |
| 663 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 664 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 665 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 666 | + </div> | |
| 667 | + <div class="wdt-table-loader-row"> | |
| 668 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 669 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 670 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 671 | + </div> | |
| 672 | + </div> | |
| 673 | +</div><!-- /Table body --> | |
| 674 | + <tr id="table_6_row_0" | |
| 675 | + data-row-index="0"> | |
| 676 | + <td style="">1</td> | |
| 677 | + <td style="">101</td> | |
| 678 | + <td style="">F</td> | |
| 679 | + <td style="">1</td> | |
| 680 | + <td style="">4 1/2</td> | |
| 681 | + <td style="">1200</td> | |
| 682 | + <td style="">OUI</td> | |
| 683 | + <td style="">ÉTÉ 2025</td> | |
| 684 | + <td style=""></td> | |
| 685 | + <td style="">Loué</td> | |
| 686 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 687 | + <td style=""></td> | |
| 688 | + </tr> | |
| 689 | + <tr id="table_6_row_1" | |
| 690 | + data-row-index="1"> | |
| 691 | + <td style="">2</td> | |
| 692 | + <td style="">102</td> | |
| 693 | + <td style="">A’</td> | |
| 694 | + <td style="">1</td> | |
| 695 | + <td style="">4 1/2</td> | |
| 696 | + <td style="">1155</td> | |
| 697 | + <td style="">NON</td> | |
| 698 | + <td style="">ÉTÉ 2025</td> | |
| 699 | + <td style=""></td> | |
| 700 | + <td style="">Loué</td> | |
| 701 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 702 | + <td style=""></td> | |
| 703 | + </tr> | |
| 704 | + <tr id="table_6_row_2" | |
| 705 | + data-row-index="2"> | |
| 706 | + <td style="">3</td> | |
| 707 | + <td style="">103</td> | |
| 708 | + <td style="">I</td> | |
| 709 | + <td style="">1</td> | |
| 710 | + <td style="">3 1/2</td> | |
| 711 | + <td style="">680</td> | |
| 712 | + <td style="">NON</td> | |
| 713 | + <td style="">ÉTÉ 2025</td> | |
| 714 | + <td style=""></td> | |
| 715 | + <td style="">Loué</td> | |
| 716 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_I.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 717 | + <td style=""></td> | |
| 718 | + </tr> | |
| 719 | + <tr id="table_6_row_3" | |
| 720 | + data-row-index="3"> | |
| 721 | + <td style="">4</td> | |
| 722 | + <td style="">104</td> | |
| 723 | + <td style="">B’</td> | |
| 724 | + <td style="">1</td> | |
| 725 | + <td style="">4 1/2</td> | |
| 726 | + <td style="">1200</td> | |
| 727 | + <td style="">NON</td> | |
| 728 | + <td style="">ÉTÉ 2025</td> | |
| 729 | + <td style=""></td> | |
| 730 | + <td style="">Loué</td> | |
| 731 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 732 | + <td style=""></td> | |
| 733 | + </tr> | |
| 734 | + <tr id="table_6_row_4" | |
| 735 | + data-row-index="4"> | |
| 736 | + <td style="">5</td> | |
| 737 | + <td style="">105</td> | |
| 738 | + <td style="">H</td> | |
| 739 | + <td style="">1</td> | |
| 740 | + <td style="">3 1/2</td> | |
| 741 | + <td style="">740</td> | |
| 742 | + <td style="">NON</td> | |
| 743 | + <td style="">ÉTÉ 2025</td> | |
| 744 | + <td style=""></td> | |
| 745 | + <td style="">Loué</td> | |
| 746 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_H.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 747 | + <td style=""></td> | |
| 748 | + </tr> | |
| 749 | + <tr id="table_6_row_5" | |
| 750 | + data-row-index="5"> | |
| 751 | + <td style="">6</td> | |
| 752 | + <td style="">106</td> | |
| 753 | + <td style="">G</td> | |
| 754 | + <td style="">1</td> | |
| 755 | + <td style="">4 1/2</td> | |
| 756 | + <td style="">1200</td> | |
| 757 | + <td style="">OUI</td> | |
| 758 | + <td style="">ÉTÉ 2025</td> | |
| 759 | + <td style=""></td> | |
| 760 | + <td style="">Loué</td> | |
| 761 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 762 | + <td style=""></td> | |
| 763 | + </tr> | |
| 764 | + <tr id="table_6_row_6" | |
| 765 | + data-row-index="6"> | |
| 766 | + <td style="">7</td> | |
| 767 | + <td style="">107</td> | |
| 768 | + <td style="">A’</td> | |
| 769 | + <td style="">1</td> | |
| 770 | + <td style="">4 1/2</td> | |
| 771 | + <td style="">1155</td> | |
| 772 | + <td style="">NON</td> | |
| 773 | + <td style="">ÉTÉ 2025</td> | |
| 774 | + <td style=""></td> | |
| 775 | + <td style="">Loué</td> | |
| 776 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 777 | + <td style=""></td> | |
| 778 | + </tr> | |
| 779 | + <tr id="table_6_row_7" | |
| 780 | + data-row-index="7"> | |
| 781 | + <td style="">8</td> | |
| 782 | + <td style="">108</td> | |
| 783 | + <td style="">A</td> | |
| 784 | + <td style="">1</td> | |
| 785 | + <td style="">4 1/2</td> | |
| 786 | + <td style="">1155</td> | |
| 787 | + <td style="">NON</td> | |
| 788 | + <td style="">ÉTÉ 2025</td> | |
| 789 | + <td style=""></td> | |
| 790 | + <td style="">Loué</td> | |
| 791 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 792 | + <td style=""></td> | |
| 793 | + </tr> | |
| 794 | + <tr id="table_6_row_8" | |
| 795 | + data-row-index="8"> | |
| 796 | + <td style="">9</td> | |
| 797 | + <td style="">201</td> | |
| 798 | + <td style="">F</td> | |
| 799 | + <td style="">2</td> | |
| 800 | + <td style="">4 1/2</td> | |
| 801 | + <td style="">1200</td> | |
| 802 | + <td style="">OUI</td> | |
| 803 | + <td style="">ÉTÉ 2025</td> | |
| 804 | + <td style=""></td> | |
| 805 | + <td style="">Loué</td> | |
| 806 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 807 | + <td style=""></td> | |
| 808 | + </tr> | |
| 809 | + <tr id="table_6_row_9" | |
| 810 | + data-row-index="9"> | |
| 811 | + <td style="">10</td> | |
| 812 | + <td style="">202</td> | |
| 813 | + <td style="">A’</td> | |
| 814 | + <td style="">2</td> | |
| 815 | + <td style="">4 1/2</td> | |
| 816 | + <td style="">1155</td> | |
| 817 | + <td style="">NON</td> | |
| 818 | + <td style="">ÉTÉ 2025</td> | |
| 819 | + <td style=""></td> | |
| 820 | + <td style="">Loué</td> | |
| 821 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 822 | + <td style=""></td> | |
| 823 | + </tr> | |
| 824 | + <tr id="table_6_row_10" | |
| 825 | + data-row-index="10"> | |
| 826 | + <td style="">11</td> | |
| 827 | + <td style="">203</td> | |
| 828 | + <td style="">E’</td> | |
| 829 | + <td style="">2</td> | |
| 830 | + <td style="">3 1/2</td> | |
| 831 | + <td style="">950</td> | |
| 832 | + <td style="">NON</td> | |
| 833 | + <td style="">ÉTÉ 2025</td> | |
| 834 | + <td style=""></td> | |
| 835 | + <td style="">Loué</td> | |
| 836 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 837 | + <td style=""></td> | |
| 838 | + </tr> | |
| 839 | + <tr id="table_6_row_11" | |
| 840 | + data-row-index="11"> | |
| 841 | + <td style="">12</td> | |
| 842 | + <td style="">204</td> | |
| 843 | + <td style="">B’</td> | |
| 844 | + <td style="">2</td> | |
| 845 | + <td style="">4 1/2</td> | |
| 846 | + <td style="">1200</td> | |
| 847 | + <td style="">NON</td> | |
| 848 | + <td style="">ÉTÉ 2025</td> | |
| 849 | + <td style=""></td> | |
| 850 | + <td style="">Loué</td> | |
| 851 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 852 | + <td style=""></td> | |
| 853 | + </tr> | |
| 854 | + <tr id="table_6_row_12" | |
| 855 | + data-row-index="12"> | |
| 856 | + <td style="">13</td> | |
| 857 | + <td style="">205</td> | |
| 858 | + <td style="">D</td> | |
| 859 | + <td style="">2</td> | |
| 860 | + <td style="">3 1/2</td> | |
| 861 | + <td style="">860</td> | |
| 862 | + <td style="">NON</td> | |
| 863 | + <td style="">ÉTÉ 2025</td> | |
| 864 | + <td style=""></td> | |
| 865 | + <td style="">Loué</td> | |
| 866 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 867 | + <td style=""></td> | |
| 868 | + </tr> | |
| 869 | + <tr id="table_6_row_13" | |
| 870 | + data-row-index="13"> | |
| 871 | + <td style="">14</td> | |
| 872 | + <td style="">206</td> | |
| 873 | + <td style="">G</td> | |
| 874 | + <td style="">2</td> | |
| 875 | + <td style="">4 1/2</td> | |
| 876 | + <td style="">1200</td> | |
| 877 | + <td style="">OUI</td> | |
| 878 | + <td style="">ÉTÉ 2025</td> | |
| 879 | + <td style=""></td> | |
| 880 | + <td style="">Loué</td> | |
| 881 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 882 | + <td style=""></td> | |
| 883 | + </tr> | |
| 884 | + <tr id="table_6_row_14" | |
| 885 | + data-row-index="14"> | |
| 886 | + <td style="">15</td> | |
| 887 | + <td style="">207</td> | |
| 888 | + <td style="">A’</td> | |
| 889 | + <td style="">2</td> | |
| 890 | + <td style="">4 1/2</td> | |
| 891 | + <td style="">1155</td> | |
| 892 | + <td style="">NON</td> | |
| 893 | + <td style="">ÉTÉ 2025</td> | |
| 894 | + <td style=""></td> | |
| 895 | + <td style="">Loué</td> | |
| 896 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 897 | + <td style=""></td> | |
| 898 | + </tr> | |
| 899 | + <tr id="table_6_row_15" | |
| 900 | + data-row-index="15"> | |
| 901 | + <td style="">16</td> | |
| 902 | + <td style="">208</td> | |
| 903 | + <td style="">A</td> | |
| 904 | + <td style="">2</td> | |
| 905 | + <td style="">4 1/2</td> | |
| 906 | + <td style="">1155</td> | |
| 907 | + <td style="">NON</td> | |
| 908 | + <td style="">ÉTÉ 2025</td> | |
| 909 | + <td style=""></td> | |
| 910 | + <td style="">Loué</td> | |
| 911 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 912 | + <td style=""></td> | |
| 913 | + </tr> | |
| 914 | + <tr id="table_6_row_16" | |
| 915 | + data-row-index="16"> | |
| 916 | + <td style="">17</td> | |
| 917 | + <td style="">301</td> | |
| 918 | + <td style="">F</td> | |
| 919 | + <td style="">3</td> | |
| 920 | + <td style="">4 1/2</td> | |
| 921 | + <td style="">1200</td> | |
| 922 | + <td style="">OUI</td> | |
| 923 | + <td style="">ÉTÉ 2025</td> | |
| 924 | + <td style=""></td> | |
| 925 | + <td style="">Loué</td> | |
| 926 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 927 | + <td style=""></td> | |
| 928 | + </tr> | |
| 929 | + <tr id="table_6_row_17" | |
| 930 | + data-row-index="17"> | |
| 931 | + <td style="">18</td> | |
| 932 | + <td style="">302</td> | |
| 933 | + <td style="">A’</td> | |
| 934 | + <td style="">3</td> | |
| 935 | + <td style="">4 1/2</td> | |
| 936 | + <td style="">1155</td> | |
| 937 | + <td style="">NON</td> | |
| 938 | + <td style="">ÉTÉ 2025</td> | |
| 939 | + <td style=""></td> | |
| 940 | + <td style="">Loué</td> | |
| 941 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 942 | + <td style=""></td> | |
| 943 | + </tr> | |
| 944 | + <tr id="table_6_row_18" | |
| 945 | + data-row-index="18"> | |
| 946 | + <td style="">19</td> | |
| 947 | + <td style="">303</td> | |
| 948 | + <td style="">E’</td> | |
| 949 | + <td style="">3</td> | |
| 950 | + <td style="">3 1/2</td> | |
| 951 | + <td style="">950</td> | |
| 952 | + <td style="">NON</td> | |
| 953 | + <td style="">ÉTÉ 2025</td> | |
| 954 | + <td style=""></td> | |
| 955 | + <td style="">Loué</td> | |
| 956 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 957 | + <td style=""></td> | |
| 958 | + </tr> | |
| 959 | + <tr id="table_6_row_19" | |
| 960 | + data-row-index="19"> | |
| 961 | + <td style="">20</td> | |
| 962 | + <td style="">304</td> | |
| 963 | + <td style="">B’</td> | |
| 964 | + <td style="">3</td> | |
| 965 | + <td style="">4 1/2</td> | |
| 966 | + <td style="">1200</td> | |
| 967 | + <td style="">NON</td> | |
| 968 | + <td style="">ÉTÉ 2025</td> | |
| 969 | + <td style=""></td> | |
| 970 | + <td style="">Loué</td> | |
| 971 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 972 | + <td style=""></td> | |
| 973 | + </tr> | |
| 974 | + <tr id="table_6_row_20" | |
| 975 | + data-row-index="20"> | |
| 976 | + <td style="">21</td> | |
| 977 | + <td style="">305</td> | |
| 978 | + <td style="">D</td> | |
| 979 | + <td style="">3</td> | |
| 980 | + <td style="">3 1/2</td> | |
| 981 | + <td style="">860</td> | |
| 982 | + <td style="">NON</td> | |
| 983 | + <td style="">ÉTÉ 2025</td> | |
| 984 | + <td style=""></td> | |
| 985 | + <td style="">Loué</td> | |
| 986 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 987 | + <td style=""></td> | |
| 988 | + </tr> | |
| 989 | + <tr id="table_6_row_21" | |
| 990 | + data-row-index="21"> | |
| 991 | + <td style="">22</td> | |
| 992 | + <td style="">306</td> | |
| 993 | + <td style="">G</td> | |
| 994 | + <td style="">3</td> | |
| 995 | + <td style="">4 1/2</td> | |
| 996 | + <td style="">1200</td> | |
| 997 | + <td style="">OUI</td> | |
| 998 | + <td style="">ÉTÉ 2025</td> | |
| 999 | + <td style=""></td> | |
| 1000 | + <td style="">Loué</td> | |
| 1001 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1002 | + <td style=""></td> | |
| 1003 | + </tr> | |
| 1004 | + <tr id="table_6_row_22" | |
| 1005 | + data-row-index="22"> | |
| 1006 | + <td style="">23</td> | |
| 1007 | + <td style="">307</td> | |
| 1008 | + <td style="">A’</td> | |
| 1009 | + <td style="">3</td> | |
| 1010 | + <td style="">4 1/2</td> | |
| 1011 | + <td style="">1155</td> | |
| 1012 | + <td style="">NON</td> | |
| 1013 | + <td style="">ÉTÉ 2025</td> | |
| 1014 | + <td style=""></td> | |
| 1015 | + <td style="">Loué</td> | |
| 1016 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1017 | + <td style=""></td> | |
| 1018 | + </tr> | |
| 1019 | + <tr id="table_6_row_23" | |
| 1020 | + data-row-index="23"> | |
| 1021 | + <td style="">24</td> | |
| 1022 | + <td style="">308</td> | |
| 1023 | + <td style="">A</td> | |
| 1024 | + <td style="">3</td> | |
| 1025 | + <td style="">4 1/2</td> | |
| 1026 | + <td style="">1155</td> | |
| 1027 | + <td style="">NON</td> | |
| 1028 | + <td style="">ÉTÉ 2025</td> | |
| 1029 | + <td style=""></td> | |
| 1030 | + <td style="">Loué</td> | |
| 1031 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1032 | + <td style=""></td> | |
| 1033 | + </tr> | |
| 1034 | + <tr id="table_6_row_24" | |
| 1035 | + data-row-index="24"> | |
| 1036 | + <td style="">25</td> | |
| 1037 | + <td style="">401</td> | |
| 1038 | + <td style="">F</td> | |
| 1039 | + <td style="">4</td> | |
| 1040 | + <td style="">4 1/2</td> | |
| 1041 | + <td style="">1200</td> | |
| 1042 | + <td style="">OUI</td> | |
| 1043 | + <td style="">ÉTÉ 2025</td> | |
| 1044 | + <td style=""></td> | |
| 1045 | + <td style="">Loué</td> | |
| 1046 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1047 | + <td style=""></td> | |
| 1048 | + </tr> | |
| 1049 | + <tr id="table_6_row_25" | |
| 1050 | + data-row-index="25"> | |
| 1051 | + <td style="">26</td> | |
| 1052 | + <td style="">402</td> | |
| 1053 | + <td style="">A’</td> | |
| 1054 | + <td style="">4</td> | |
| 1055 | + <td style="">4 1/2</td> | |
| 1056 | + <td style="">1155</td> | |
| 1057 | + <td style="">NON</td> | |
| 1058 | + <td style="">ÉTÉ 2025</td> | |
| 1059 | + <td style=""></td> | |
| 1060 | + <td style="">Loué</td> | |
| 1061 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1062 | + <td style=""></td> | |
| 1063 | + </tr> | |
| 1064 | + <tr id="table_6_row_26" | |
| 1065 | + data-row-index="26"> | |
| 1066 | + <td style="">27</td> | |
| 1067 | + <td style="">403</td> | |
| 1068 | + <td style="">E’</td> | |
| 1069 | + <td style="">4</td> | |
| 1070 | + <td style="">3 1/2</td> | |
| 1071 | + <td style="">950</td> | |
| 1072 | + <td style="">NON</td> | |
| 1073 | + <td style="">ÉTÉ 2025</td> | |
| 1074 | + <td style=""></td> | |
| 1075 | + <td style="">Loué</td> | |
| 1076 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1077 | + <td style=""></td> | |
| 1078 | + </tr> | |
| 1079 | + <tr id="table_6_row_27" | |
| 1080 | + data-row-index="27"> | |
| 1081 | + <td style="">28</td> | |
| 1082 | + <td style="">404</td> | |
| 1083 | + <td style="">B’</td> | |
| 1084 | + <td style="">4</td> | |
| 1085 | + <td style="">4 1/2</td> | |
| 1086 | + <td style="">1200</td> | |
| 1087 | + <td style="">NON</td> | |
| 1088 | + <td style="">ÉTÉ 2025</td> | |
| 1089 | + <td style=""></td> | |
| 1090 | + <td style="">Loué</td> | |
| 1091 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1092 | + <td style=""></td> | |
| 1093 | + </tr> | |
| 1094 | + <tr id="table_6_row_28" | |
| 1095 | + data-row-index="28"> | |
| 1096 | + <td style="">29</td> | |
| 1097 | + <td style="">405</td> | |
| 1098 | + <td style="">D</td> | |
| 1099 | + <td style="">4</td> | |
| 1100 | + <td style="">3 1/2</td> | |
| 1101 | + <td style="">860</td> | |
| 1102 | + <td style="">NON</td> | |
| 1103 | + <td style="">ÉTÉ 2025</td> | |
| 1104 | + <td style=""></td> | |
| 1105 | + <td style="">Loué</td> | |
| 1106 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1107 | + <td style=""></td> | |
| 1108 | + </tr> | |
| 1109 | + <tr id="table_6_row_29" | |
| 1110 | + data-row-index="29"> | |
| 1111 | + <td style="">30</td> | |
| 1112 | + <td style="">406</td> | |
| 1113 | + <td style="">G</td> | |
| 1114 | + <td style="">4</td> | |
| 1115 | + <td style="">4 1/2</td> | |
| 1116 | + <td style="">1200</td> | |
| 1117 | + <td style="">OUI</td> | |
| 1118 | + <td style="">ÉTÉ 2025</td> | |
| 1119 | + <td style=""></td> | |
| 1120 | + <td style="">Loué</td> | |
| 1121 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1122 | + <td style=""></td> | |
| 1123 | + </tr> | |
| 1124 | + <tr id="table_6_row_30" | |
| 1125 | + data-row-index="30"> | |
| 1126 | + <td style="">31</td> | |
| 1127 | + <td style="">407</td> | |
| 1128 | + <td style="">A’</td> | |
| 1129 | + <td style="">4</td> | |
| 1130 | + <td style="">4 1/2</td> | |
| 1131 | + <td style="">1155</td> | |
| 1132 | + <td style="">NON</td> | |
| 1133 | + <td style="">ÉTÉ 2025</td> | |
| 1134 | + <td style=""></td> | |
| 1135 | + <td style="">Loué</td> | |
| 1136 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1137 | + <td style=""></td> | |
| 1138 | + </tr> | |
| 1139 | + <tr id="table_6_row_31" | |
| 1140 | + data-row-index="31"> | |
| 1141 | + <td style="">32</td> | |
| 1142 | + <td style="">408</td> | |
| 1143 | + <td style="">A</td> | |
| 1144 | + <td style="">4</td> | |
| 1145 | + <td style="">4 1/2</td> | |
| 1146 | + <td style="">1155</td> | |
| 1147 | + <td style="">NON</td> | |
| 1148 | + <td style="">ÉTÉ 2025</td> | |
| 1149 | + <td style=""></td> | |
| 1150 | + <td style="">Loué</td> | |
| 1151 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1152 | + <td style=""></td> | |
| 1153 | + </tr> | |
| 1154 | + <tr id="table_6_row_32" | |
| 1155 | + data-row-index="32"> | |
| 1156 | + <td style="">33</td> | |
| 1157 | + <td style="">501</td> | |
| 1158 | + <td style="">F</td> | |
| 1159 | + <td style="">5</td> | |
| 1160 | + <td style="">4 1/2</td> | |
| 1161 | + <td style="">1200</td> | |
| 1162 | + <td style="">OUI</td> | |
| 1163 | + <td style="">ÉTÉ 2025</td> | |
| 1164 | + <td style=""></td> | |
| 1165 | + <td style="">Loué</td> | |
| 1166 | + <td style=""><a href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1167 | + <td style=""></td> | |
| 1168 | + </tr> | |
| 1169 | + <tr id="table_6_row_33" | |
| 1170 | + data-row-index="33"> | |
| 1171 | + <td style="">34</td> | |
| 1172 | + <td style="">502</td> | |
| 1173 | + <td style="">A’</td> | |
| 1174 | + <td style="">5</td> | |
| 1175 | + <td style="">4 1/2</td> | |
| 1176 | + <td style="">1155</td> | |
| 1177 | + <td style="">NON</td> | |
| 1178 | + <td style="">ÉTÉ 2025</td> | |
| 1179 | + <td style=""></td> | |
| 1180 | + <td style="">Loué</td> | |
| 1181 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1182 | + <td style=""></td> | |
| 1183 | + </tr> | |
| 1184 | + <tr id="table_6_row_34" | |
| 1185 | + data-row-index="34"> | |
| 1186 | + <td style="">35</td> | |
| 1187 | + <td style="">503</td> | |
| 1188 | + <td style="">E’</td> | |
| 1189 | + <td style="">5</td> | |
| 1190 | + <td style="">3 1/2</td> | |
| 1191 | + <td style="">950</td> | |
| 1192 | + <td style="">NON</td> | |
| 1193 | + <td style="">ÉTÉ 2025</td> | |
| 1194 | + <td style=""></td> | |
| 1195 | + <td style="">Loué</td> | |
| 1196 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1197 | + <td style=""></td> | |
| 1198 | + </tr> | |
| 1199 | + <tr id="table_6_row_35" | |
| 1200 | + data-row-index="35"> | |
| 1201 | + <td style="">36</td> | |
| 1202 | + <td style="">504</td> | |
| 1203 | + <td style="">B’</td> | |
| 1204 | + <td style="">5</td> | |
| 1205 | + <td style="">4 1/2</td> | |
| 1206 | + <td style="">1200</td> | |
| 1207 | + <td style="">NON</td> | |
| 1208 | + <td style="">ÉTÉ 2025</td> | |
| 1209 | + <td style=""></td> | |
| 1210 | + <td style="">Loué</td> | |
| 1211 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1212 | + <td style=""></td> | |
| 1213 | + </tr> | |
| 1214 | + <tr id="table_6_row_36" | |
| 1215 | + data-row-index="36"> | |
| 1216 | + <td style="">37</td> | |
| 1217 | + <td style="">505</td> | |
| 1218 | + <td style="">D</td> | |
| 1219 | + <td style="">5</td> | |
| 1220 | + <td style="">3 1/2</td> | |
| 1221 | + <td style="">860</td> | |
| 1222 | + <td style="">NON</td> | |
| 1223 | + <td style="">ÉTÉ 2025</td> | |
| 1224 | + <td style=""></td> | |
| 1225 | + <td style="">Loué</td> | |
| 1226 | + <td style=""><a href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1227 | + <td style=""></td> | |
| 1228 | + </tr> | |
| 1229 | + <tr id="table_6_row_37" | |
| 1230 | + data-row-index="37"> | |
| 1231 | + <td style="">38</td> | |
| 1232 | + <td style="">506</td> | |
| 1233 | + <td style="">G</td> | |
| 1234 | + <td style="">5</td> | |
| 1235 | + <td style="">4 1/2</td> | |
| 1236 | + <td style="">1200</td> | |
| 1237 | + <td style="">OUI</td> | |
| 1238 | + <td style="">ÉTÉ 2025</td> | |
| 1239 | + <td style=""></td> | |
| 1240 | + <td style="">Loué</td> | |
| 1241 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1242 | + <td style=""></td> | |
| 1243 | + </tr> | |
| 1244 | + <tr id="table_6_row_38" | |
| 1245 | + data-row-index="38"> | |
| 1246 | + <td style="">39</td> | |
| 1247 | + <td style="">507</td> | |
| 1248 | + <td style="">A’</td> | |
| 1249 | + <td style="">5</td> | |
| 1250 | + <td style="">4 1/2</td> | |
| 1251 | + <td style="">1155</td> | |
| 1252 | + <td style="">NON</td> | |
| 1253 | + <td style="">ÉTÉ 2025</td> | |
| 1254 | + <td style=""></td> | |
| 1255 | + <td style="">Loué</td> | |
| 1256 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1257 | + <td style=""></td> | |
| 1258 | + </tr> | |
| 1259 | + <tr id="table_6_row_39" | |
| 1260 | + data-row-index="39"> | |
| 1261 | + <td style="">40</td> | |
| 1262 | + <td style="">508</td> | |
| 1263 | + <td style="">A</td> | |
| 1264 | + <td style="">5</td> | |
| 1265 | + <td style="">4 1/2</td> | |
| 1266 | + <td style="">1155</td> | |
| 1267 | + <td style="">NON</td> | |
| 1268 | + <td style="">ÉTÉ 2025</td> | |
| 1269 | + <td style=""></td> | |
| 1270 | + <td style="">Loué</td> | |
| 1271 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1272 | + <td style=""></td> | |
| 1273 | + </tr> | |
| 1274 | + <tr id="table_6_row_40" | |
| 1275 | + data-row-index="40"> | |
| 1276 | + <td style="">41</td> | |
| 1277 | + <td style="">601</td> | |
| 1278 | + <td style="">A</td> | |
| 1279 | + <td style="">6</td> | |
| 1280 | + <td style="">4 1/2</td> | |
| 1281 | + <td style="">1155</td> | |
| 1282 | + <td style="">NON</td> | |
| 1283 | + <td style="">ÉTÉ 2026</td> | |
| 1284 | + <td style=""></td> | |
| 1285 | + <td style="">Loué</td> | |
| 1286 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1287 | + <td style=""></td> | |
| 1288 | + </tr> | |
| 1289 | + <tr id="table_6_row_41" | |
| 1290 | + data-row-index="41"> | |
| 1291 | + <td style="">42</td> | |
| 1292 | + <td style="">602</td> | |
| 1293 | + <td style="">A’</td> | |
| 1294 | + <td style="">6</td> | |
| 1295 | + <td style="">4 1/2</td> | |
| 1296 | + <td style="">1155</td> | |
| 1297 | + <td style="">NON</td> | |
| 1298 | + <td style="">ÉTÉ 2025</td> | |
| 1299 | + <td style=""></td> | |
| 1300 | + <td style="">Loué</td> | |
| 1301 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1302 | + <td style=""></td> | |
| 1303 | + </tr> | |
| 1304 | + <tr id="table_6_row_42" | |
| 1305 | + data-row-index="42"> | |
| 1306 | + <td style="">43</td> | |
| 1307 | + <td style="">603</td> | |
| 1308 | + <td style="">E’</td> | |
| 1309 | + <td style="">6</td> | |
| 1310 | + <td style="">3 1/2</td> | |
| 1311 | + <td style="">950</td> | |
| 1312 | + <td style="">NON</td> | |
| 1313 | + <td style="">ÉTÉ 2026</td> | |
| 1314 | + <td style=""></td> | |
| 1315 | + <td style="">Disponible</td> | |
| 1316 | + <td style=""><a href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1317 | + <td style=""></td> | |
| 1318 | + </tr> | |
| 1319 | + <tr id="table_6_row_43" | |
| 1320 | + data-row-index="43"> | |
| 1321 | + <td style="">44</td> | |
| 1322 | + <td style="">604</td> | |
| 1323 | + <td style="">B’</td> | |
| 1324 | + <td style="">6</td> | |
| 1325 | + <td style="">4 1/2</td> | |
| 1326 | + <td style="">1200</td> | |
| 1327 | + <td style="">NON</td> | |
| 1328 | + <td style="">ÉTÉ 2025</td> | |
| 1329 | + <td style=""></td> | |
| 1330 | + <td style="">Loué</td> | |
| 1331 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1332 | + <td style=""></td> | |
| 1333 | + </tr> | |
| 1334 | + <tr id="table_6_row_44" | |
| 1335 | + data-row-index="44"> | |
| 1336 | + <td style="">45</td> | |
| 1337 | + <td style="">605</td> | |
| 1338 | + <td style="">D</td> | |
| 1339 | + <td style="">6</td> | |
| 1340 | + <td style="">3 1/2</td> | |
| 1341 | + <td style="">860</td> | |
| 1342 | + <td style="">NON</td> | |
| 1343 | + <td style="">ÉTÉ 2025</td> | |
| 1344 | + <td style=""></td> | |
| 1345 | + <td style="">Loué</td> | |
| 1346 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1347 | + <td style=""></td> | |
| 1348 | + </tr> | |
| 1349 | + <tr id="table_6_row_45" | |
| 1350 | + data-row-index="45"> | |
| 1351 | + <td style="">46</td> | |
| 1352 | + <td style="">606</td> | |
| 1353 | + <td style="">G</td> | |
| 1354 | + <td style="">6</td> | |
| 1355 | + <td style="">4 1/2</td> | |
| 1356 | + <td style="">1200</td> | |
| 1357 | + <td style="">OUI</td> | |
| 1358 | + <td style="">ÉTÉ 2025</td> | |
| 1359 | + <td style=""></td> | |
| 1360 | + <td style="">Loué</td> | |
| 1361 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1362 | + <td style=""></td> | |
| 1363 | + </tr> | |
| 1364 | + <tr id="table_6_row_46" | |
| 1365 | + data-row-index="46"> | |
| 1366 | + <td style="">47</td> | |
| 1367 | + <td style="">607</td> | |
| 1368 | + <td style="">A’</td> | |
| 1369 | + <td style="">6</td> | |
| 1370 | + <td style="">4 1/2</td> | |
| 1371 | + <td style="">1155</td> | |
| 1372 | + <td style="">NON</td> | |
| 1373 | + <td style="">ÉTÉ 2025</td> | |
| 1374 | + <td style=""></td> | |
| 1375 | + <td style="">Loué</td> | |
| 1376 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1377 | + <td style=""></td> | |
| 1378 | + </tr> | |
| 1379 | + <tr id="table_6_row_47" | |
| 1380 | + data-row-index="47"> | |
| 1381 | + <td style="">48</td> | |
| 1382 | + <td style="">608</td> | |
| 1383 | + <td style="">A</td> | |
| 1384 | + <td style="">6</td> | |
| 1385 | + <td style="">4 1/2</td> | |
| 1386 | + <td style="">1155</td> | |
| 1387 | + <td style="">NON</td> | |
| 1388 | + <td style="">ÉTÉ 2025</td> | |
| 1389 | + <td style=""></td> | |
| 1390 | + <td style="">Loué</td> | |
| 1391 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Ferrovia_Plans_8.5x14_Phase3_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1392 | + <td style=""></td> | |
| 1393 | + </tr> | |
| 1394 | + </tbody> <!-- /Table body --> | |
| 1395 | + | |
| 1396 | + <!-- Table footer --> | |
| 1397 | + | |
| 1398 | + <!-- /Table footer --> | |
| 1399 | + </table> | |
| 1400 | + | |
| 1401 | +</div><style> | |
| 1402 | +table.wpDataTable td.numdata { text-align: right !important; } | |
| 1403 | +</style> | |
| 1404 | +<style> | |
| 1405 | + /* th background color */ | |
| 1406 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1407 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1408 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th, | |
| 1409 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting { | |
| 1410 | + background-color: rgb(199,146,19) !important; | |
| 1411 | + background-image: none !important; | |
| 1412 | + } | |
| 1413 | + | |
| 1414 | + /* th font color */ | |
| 1415 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1416 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1417 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th { | |
| 1418 | + color: rgb(255,255,255) !important; | |
| 1419 | + } | |
| 1420 | + | |
| 1421 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting:after, | |
| 1422 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_asc:after { | |
| 1423 | + border-bottom-color: rgb(255,255,255) !important; | |
| 1424 | + } | |
| 1425 | + | |
| 1426 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_desc:after { | |
| 1427 | + border-top-color: rgb(255,255,255) !important; | |
| 1428 | + } | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + </style> | |
| 1433 | +<style> | |
| 1434 | +</style> | |
| 1435 | +<style> | |
| 1436 | + | |
| 1437 | + | |
| 1438 | + | |
| 1439 | +</style> | |
| 1440 | + </div> | |
| 1441 | + </div> | |
| 1442 | + </div> | |
| 1443 | + </div> | |
| 1444 | + </div> | |
| 1445 | + </section> | |
| 1446 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-236dc88 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="236dc88" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1447 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1448 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e520e86" data-id="e520e86" data-element_type="column" data-e-type="column"> | |
| 1449 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1450 | + <div class="elementor-element elementor-element-18294e3 elementor-widget elementor-widget-image" data-id="18294e3" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1451 | + <div class="elementor-widget-container"> | |
| 1452 | + <img decoding="async" width="300" height="100" src="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png" class="attachment-medium size-medium wp-image-9302" alt="Logo - Ferrovia - Condos à Mirabel" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png 300w, https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond.png 600w" sizes="(max-width: 300px) 100vw, 300px" /> </div> | |
| 1453 | + </div> | |
| 1454 | + </div> | |
| 1455 | + </div> | |
| 1456 | + </div> | |
| 1457 | + </section> | |
| 1458 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-8b9fe8e elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="8b9fe8e" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1459 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1460 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5191f02" data-id="5191f02" data-element_type="column" data-e-type="column"> | |
| 1461 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1462 | + <div class="elementor-element elementor-element-1972338 elementor-widget elementor-widget-image" data-id="1972338" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1463 | + <div class="elementor-widget-container"> | |
| 1464 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozntf5j754pgq7zoy0ctfm3cbslvwrty.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1465 | + </div> | |
| 1466 | + </div> | |
| 1467 | + </div> | |
| 1468 | + </div> | |
| 1469 | + </section> | |
| 1470 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-7f8f911 elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="7f8f911" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1471 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1472 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-54d80d8" data-id="54d80d8" data-element_type="column" data-e-type="column"> | |
| 1473 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1474 | + <div class="elementor-element elementor-element-f858cba elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="f858cba" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1475 | + <div class="elementor-widget-container"> | |
| 1476 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1477 | + </div> | |
| 1478 | + </div> | |
| 1479 | + </div> | |
| 1480 | + </div> | |
| 1481 | + </section> | |
| 1482 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-106a308 elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="106a308" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1483 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1484 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3d58093" data-id="3d58093" data-element_type="column" data-e-type="column"> | |
| 1485 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1486 | + <div class="elementor-element elementor-element-ad29a50 elementor-widget elementor-widget-image" data-id="ad29a50" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1487 | + <div class="elementor-widget-container"> | |
| 1488 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1489 | + </div> | |
| 1490 | + </div> | |
| 1491 | + </div> | |
| 1492 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-8515be2" data-id="8515be2" data-element_type="column" data-e-type="column"> | |
| 1493 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1494 | + <div class="elementor-element elementor-element-e68aad9 elementor-widget elementor-widget-image" data-id="e68aad9" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1495 | + <div class="elementor-widget-container"> | |
| 1496 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozgg8wsfr7f6yx6r5rn5pp9lvezk1mfw.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1497 | + </div> | |
| 1498 | + </div> | |
| 1499 | + </div> | |
| 1500 | + </div> | |
| 1501 | + </section> | |
| 1502 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-d85632e elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="d85632e" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1503 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1504 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f9488bd" data-id="f9488bd" data-element_type="column" data-e-type="column"> | |
| 1505 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1506 | + <div class="elementor-element elementor-element-51b918e elementor-widget elementor-widget-text-editor" data-id="51b918e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 1507 | + <div class="elementor-widget-container"> | |
| 1508 | + <p><span style="color: #999999;"><a style="color: #999999;" href="https://www.ferroviamirabel.com/declaration-de-confidentialite/">Déclaration de confidentialité</a></span></p> </div> | |
| 1509 | + </div> | |
| 1510 | + </div> | |
| 1511 | + </div> | |
| 1512 | + </div> | |
| 1513 | + </section> | |
| 1514 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-e5d0c35 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e5d0c35" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1515 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1516 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-96ec292" data-id="96ec292" data-element_type="column" data-e-type="column"> | |
| 1517 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1518 | + <div class="elementor-element elementor-element-bb289d9 elementor-widget elementor-widget-text-editor" data-id="bb289d9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 1519 | + <div class="elementor-widget-container"> | |
| 1520 | + <p style="text-align: center;"><span style="color: #a3a3a3;">Copyright © Ferrovia – Une réalisation de <span style="color: #ffffff;"><a style="color: #ffffff;" href="http://www.grohman.ca" target="_blank" rel="noopener nofollow">grohman.ca</a></span></span></p> </div> | |
| 1521 | + </div> | |
| 1522 | + </div> | |
| 1523 | + </div> | |
| 1524 | + </div> | |
| 1525 | + </section> | |
| 1526 | + </div> | |
| 1527 | + </div> | |
| 1528 | + <script type="speculationrules"> | |
| 1529 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/mihouse/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 1530 | +</script> | |
| 1531 | + | |
| 1532 | +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr --> | |
| 1533 | +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 bottom-right-view-preferences optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin"> | |
| 1534 | + <div class="cmplz-header"> | |
| 1535 | + <div class="cmplz-logo"></div> | |
| 1536 | + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement aux cookies</div> | |
| 1537 | + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermer la boîte de dialogue"> | |
| 1538 | + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg> | |
| 1539 | + </div> | |
| 1540 | + </div> | |
| 1541 | + | |
| 1542 | + <div class="cmplz-divider cmplz-divider-header"></div> | |
| 1543 | + <div class="cmplz-body"> | |
| 1544 | + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les cookies pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div> | |
| 1545 | + <!-- categories start --> | |
| 1546 | + <div class="cmplz-categories"> | |
| 1547 | + <details class="cmplz-category cmplz-functional" > | |
| 1548 | + <summary> | |
| 1549 | + <span class="cmplz-category-header"> | |
| 1550 | + <span class="cmplz-category-title">Fonctionnel</span> | |
| 1551 | + <span class='cmplz-always-active'> | |
| 1552 | + <span class="cmplz-banner-checkbox"> | |
| 1553 | + <input type="checkbox" | |
| 1554 | + id="cmplz-functional-optin" | |
| 1555 | + data-category="cmplz_functional" | |
| 1556 | + class="cmplz-consent-checkbox cmplz-functional" | |
| 1557 | + size="40" | |
| 1558 | + value="1"/> | |
| 1559 | + <label class="cmplz-label" for="cmplz-functional-optin"><span class="screen-reader-text">Fonctionnel</span></label> | |
| 1560 | + </span> | |
| 1561 | + Toujours activé </span> | |
| 1562 | + <span class="cmplz-icon cmplz-open"> | |
| 1563 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1564 | + </span> | |
| 1565 | + </span> | |
| 1566 | + </summary> | |
| 1567 | + <div class="cmplz-description"> | |
| 1568 | + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’internaute, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span> | |
| 1569 | + </div> | |
| 1570 | + </details> | |
| 1571 | + | |
| 1572 | + <details class="cmplz-category cmplz-preferences" > | |
| 1573 | + <summary> | |
| 1574 | + <span class="cmplz-category-header"> | |
| 1575 | + <span class="cmplz-category-title">Préférences</span> | |
| 1576 | + <span class="cmplz-banner-checkbox"> | |
| 1577 | + <input type="checkbox" | |
| 1578 | + id="cmplz-preferences-optin" | |
| 1579 | + data-category="cmplz_preferences" | |
| 1580 | + class="cmplz-consent-checkbox cmplz-preferences" | |
| 1581 | + size="40" | |
| 1582 | + value="1"/> | |
| 1583 | + <label class="cmplz-label" for="cmplz-preferences-optin"><span class="screen-reader-text">Préférences</span></label> | |
| 1584 | + </span> | |
| 1585 | + <span class="cmplz-icon cmplz-open"> | |
| 1586 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1587 | + </span> | |
| 1588 | + </span> | |
| 1589 | + </summary> | |
| 1590 | + <div class="cmplz-description"> | |
| 1591 | + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou la personne utilisant le service.</span> | |
| 1592 | + </div> | |
| 1593 | + </details> | |
| 1594 | + | |
| 1595 | + <details class="cmplz-category cmplz-statistics" > | |
| 1596 | + <summary> | |
| 1597 | + <span class="cmplz-category-header"> | |
| 1598 | + <span class="cmplz-category-title">Statistiques</span> | |
| 1599 | + <span class="cmplz-banner-checkbox"> | |
| 1600 | + <input type="checkbox" | |
| 1601 | + id="cmplz-statistics-optin" | |
| 1602 | + data-category="cmplz_statistics" | |
| 1603 | + class="cmplz-consent-checkbox cmplz-statistics" | |
| 1604 | + size="40" | |
| 1605 | + value="1"/> | |
| 1606 | + <label class="cmplz-label" for="cmplz-statistics-optin"><span class="screen-reader-text">Statistiques</span></label> | |
| 1607 | + </span> | |
| 1608 | + <span class="cmplz-icon cmplz-open"> | |
| 1609 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1610 | + </span> | |
| 1611 | + </span> | |
| 1612 | + </summary> | |
| 1613 | + <div class="cmplz-description"> | |
| 1614 | + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span> | |
| 1615 | + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span> | |
| 1616 | + </div> | |
| 1617 | + </details> | |
| 1618 | + <details class="cmplz-category cmplz-marketing" > | |
| 1619 | + <summary> | |
| 1620 | + <span class="cmplz-category-header"> | |
| 1621 | + <span class="cmplz-category-title">Marketing</span> | |
| 1622 | + <span class="cmplz-banner-checkbox"> | |
| 1623 | + <input type="checkbox" | |
| 1624 | + id="cmplz-marketing-optin" | |
| 1625 | + data-category="cmplz_marketing" | |
| 1626 | + class="cmplz-consent-checkbox cmplz-marketing" | |
| 1627 | + size="40" | |
| 1628 | + value="1"/> | |
| 1629 | + <label class="cmplz-label" for="cmplz-marketing-optin"><span class="screen-reader-text">Marketing</span></label> | |
| 1630 | + </span> | |
| 1631 | + <span class="cmplz-icon cmplz-open"> | |
| 1632 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1633 | + </span> | |
| 1634 | + </span> | |
| 1635 | + </summary> | |
| 1636 | + <div class="cmplz-description"> | |
| 1637 | + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’internautes afin d’envoyer des publicités, ou pour suivre l’internaute sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span> | |
| 1638 | + </div> | |
| 1639 | + </details> | |
| 1640 | + </div><!-- categories end --> | |
| 1641 | + </div> | |
| 1642 | + | |
| 1643 | + <div class="cmplz-links cmplz-information"> | |
| 1644 | + <ul> | |
| 1645 | + <li><a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a></li> | |
| 1646 | + <li><a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a></li> | |
| 1647 | + <li><a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a></li> | |
| 1648 | + <li><a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/" aria-label="En savoir plus sur les finalités de TCF de la base de données de cookies">En savoir plus sur ces finalités</a></li> | |
| 1649 | + </ul> | |
| 1650 | + </div> | |
| 1651 | + | |
| 1652 | + <div class="cmplz-divider cmplz-footer"></div> | |
| 1653 | + | |
| 1654 | + <div class="cmplz-buttons"> | |
| 1655 | + <button class="cmplz-btn cmplz-accept">Accepter</button> | |
| 1656 | + <button class="cmplz-btn cmplz-deny">Refuser</button> | |
| 1657 | + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button> | |
| 1658 | + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button> | |
| 1659 | + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a> | |
| 1660 | + </div> | |
| 1661 | + | |
| 1662 | + | |
| 1663 | + <div class="cmplz-documents cmplz-links"> | |
| 1664 | + <ul> | |
| 1665 | + <li><a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1666 | + <li><a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1667 | + <li><a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a></li> | |
| 1668 | + </ul> | |
| 1669 | + </div> | |
| 1670 | +</div> | |
| 1671 | +</div> | |
| 1672 | + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button> | |
| 1673 | + | |
| 1674 | +</div> <script> | |
| 1675 | + ( () => { | |
| 1676 | + const lazyloadRunObserver = () => { | |
| 1677 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 1678 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 1679 | + entries.forEach( ( entry ) => { | |
| 1680 | + if ( entry.isIntersecting ) { | |
| 1681 | + let lazyloadBackground = entry.target; | |
| 1682 | + if( lazyloadBackground ) { | |
| 1683 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 1684 | + } | |
| 1685 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 1686 | + } | |
| 1687 | + }); | |
| 1688 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 1689 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 1690 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 1691 | + } ); | |
| 1692 | + }; | |
| 1693 | + const events = [ | |
| 1694 | + 'DOMContentLoaded', | |
| 1695 | + 'elementor/lazyload/observe', | |
| 1696 | + ]; | |
| 1697 | + events.forEach( ( event ) => { | |
| 1698 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 1699 | + } ); | |
| 1700 | + } )(); | |
| 1701 | + </script> | |
| 1702 | + | |
| 1703 | +<!-- .wpdt-c --> | |
| 1704 | +<div class="wpdt-c"> | |
| 1705 | + <!-- .wdt-frontend-modal --> | |
| 1706 | + <div id="wdt-frontend-modal" class="modal fade wdt-frontend-modal" style="display: none" data-backdrop="static" | |
| 1707 | + data-keyboard="false" tabindex="-1" role="dialog" aria-hidden="true" aria-modal="true"> | |
| 1708 | + | |
| 1709 | + <!-- .modal-dialog --> | |
| 1710 | + <div class="modal-dialog"> | |
| 1711 | + | |
| 1712 | + <!-- Preloader --> | |
| 1713 | + | |
| 1714 | +<div class="overlayed wdt-preload-layer"> | |
| 1715 | + <div class="preloader pl-lg"> | |
| 1716 | + <svg class="pl-circular" viewBox="25 25 50 50"> | |
| 1717 | + <circle class="plc-path" cx="50" cy="50" r="20"></circle> | |
| 1718 | + </svg> | |
| 1719 | + </div> | |
| 1720 | +</div> <!-- /Preloader --> | |
| 1721 | + | |
| 1722 | + <!-- .modal-content --> | |
| 1723 | + <div class="modal-content"> | |
| 1724 | + | |
| 1725 | + <!-- .modal-header --> | |
| 1726 | + <div class="modal-header"> | |
| 1727 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1728 | + aria-hidden="true">×</span></button> | |
| 1729 | + <h4 class="modal-title">Titre dynamique pour les modales</h4> | |
| 1730 | + </div> | |
| 1731 | + <!--/ .modal-header --> | |
| 1732 | + | |
| 1733 | + <!-- .modal-body --> | |
| 1734 | + <div class="modal-body"> | |
| 1735 | + </div> | |
| 1736 | + <!--/ .modal-body --> | |
| 1737 | + | |
| 1738 | + <!-- .modal-footer --> | |
| 1739 | + <div class="modal-footer"> | |
| 1740 | + </div> | |
| 1741 | + <!--/ .modal-footer --> | |
| 1742 | + </div> | |
| 1743 | + <!--/ .modal-content --> | |
| 1744 | + </div> | |
| 1745 | + <!--/ .modal-dialog --> | |
| 1746 | + </div> | |
| 1747 | + <!--/ .wdt-frontend-modal --> | |
| 1748 | +</div> | |
| 1749 | +<!--/ .wpdt-c --> | |
| 1750 | +<!-- .wpdt-c --> | |
| 1751 | +<div class="wpdt-c"> | |
| 1752 | + <!-- #wdt-delete-modal --> | |
| 1753 | + <div class="modal fade in" id="wdt-delete-modal" style="display: none" data-backdrop="static" data-keyboard="false" | |
| 1754 | + tabindex="-1" role="dialog" aria-hidden="true"> | |
| 1755 | + | |
| 1756 | + <!-- .modal-dialog --> | |
| 1757 | + <div class="modal-dialog"> | |
| 1758 | + | |
| 1759 | + <!-- .modal-content --> | |
| 1760 | + <div class="modal-content"> | |
| 1761 | + | |
| 1762 | + <!-- .modal-header --> | |
| 1763 | + <div class="modal-header"> | |
| 1764 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1765 | + aria-hidden="true"> <i class="wpdt-icon-times-full"></i></span></button> | |
| 1766 | + <h4 class="modal-title">Êtes-vous sûr?</h4> | |
| 1767 | + </div> | |
| 1768 | + <!--/ .modal-header --> | |
| 1769 | + | |
| 1770 | + <!-- .modal-body --> | |
| 1771 | + <div class="modal-body"> | |
| 1772 | + <!-- .row --> | |
| 1773 | + <div class="row"> | |
| 1774 | + <div class="col-sm-12"> | |
| 1775 | + <small>S’il vous plaît confirmer la suppression. Il n’y a pas d’annulation de changement!</small> | |
| 1776 | + </div> | |
| 1777 | + </div> | |
| 1778 | + <!--/ .row --> | |
| 1779 | + </div> | |
| 1780 | + <!--/ .modal-body --> | |
| 1781 | + | |
| 1782 | + <!-- .modal-footer --> | |
| 1783 | + <div class="modal-footer"> | |
| 1784 | + <hr> | |
| 1785 | + <button type="button" class="btn btn-icon-text wdt-cancel-delete-button" data-dismiss="modal"> | |
| 1786 | + Annuler</button> | |
| 1787 | + <button type="button" class="btn btn-danger btn-icon-text wdt-browse-delete-button" | |
| 1788 | + id="wdt-browse-delete-button"><i | |
| 1789 | + class="wpdt-icon-trash"></i> Effacer</button> | |
| 1790 | + </div> | |
| 1791 | + <!--/ .modal-footer --> | |
| 1792 | + </div> | |
| 1793 | + <!--/ .modal-content --> | |
| 1794 | + </div> | |
| 1795 | + <!--/ .modal-dialog --> | |
| 1796 | + </div> | |
| 1797 | + <!--/ #wdt-delete-modal --> | |
| 1798 | +</div> | |
| 1799 | +<!--/ .wpdt-c --><link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-inter-google-fonts-css' data-href='https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap&ver=7.3.3' media='all' /> | |
| 1800 | +<link rel='stylesheet' id='wdt-bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/wpdatatables-bootstrap.css?ver=7.3.3' media='all' /> | |
| 1801 | +<link rel='stylesheet' id='wdt-bootstrap-select-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-select/bootstrap-select.min.css?ver=7.3.3' media='all' /> | |
| 1802 | +<link rel='stylesheet' id='wdt-animate-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/animate/animate.min.css?ver=7.3.3' media='all' /> | |
| 1803 | +<link rel='stylesheet' id='wdt-uikit-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/uikit/uikit.css?ver=7.3.3' media='all' /> | |
| 1804 | +<link rel='stylesheet' id='wdt-bootstrap-tagsinput-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.css?ver=7.3.3' media='all' /> | |
| 1805 | +<link rel='stylesheet' id='wdt-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1806 | +<link rel='stylesheet' id='wdt-bootstrap-nouislider-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.css?ver=7.3.3' media='all' /> | |
| 1807 | +<link rel='stylesheet' id='wdt-wp-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/wdt-bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1808 | +<link rel='stylesheet' id='wdt-bootstrap-colorpicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.css?ver=7.3.3' media='all' /> | |
| 1809 | +<link rel='stylesheet' id='wdt-wpdt-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/style.min.css?ver=7.3.3' media='all' /> | |
| 1810 | +<link rel='stylesheet' id='wdt-wpdatatables-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt.frontend-starter.min.css?ver=7.3.3' media='all' /> | |
| 1811 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-roboto-google-fonts-css' data-href='https://fonts.googleapis.com/css?family=Roboto:wght@400;500&display=swap&ver=7.3.3' media='all' /> | |
| 1812 | +<link rel='stylesheet' id='wdt-skin-light-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt-skins/light.css?ver=7.3.3' media='all' /> | |
| 1813 | +<link rel='stylesheet' id='dashicons-css' href='https://www.ferroviamirabel.com/wp-includes/css/dashicons.min.css?ver=7.0.3' media='all' /> | |
| 1814 | +<script id="bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/bootstrap.min.js"></script> | |
| 1815 | +<script id="mmenu-all-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.mmenu.all.min.js"></script> | |
| 1816 | +<script id="slick-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/slick.min.js"></script> | |
| 1817 | +<script id="instafeed-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/instafeed.min.js"></script> | |
| 1818 | +<script id="countdown-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.countdown.min.js"></script> | |
| 1819 | +<script id="fancybox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.fancybox.min.js"></script> | |
| 1820 | +<script id="elevatezoom-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.elevatezoom.js"></script> | |
| 1821 | +<script id="swipebox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.swipebox.min.js"></script> | |
| 1822 | +<script id="sticky-kit-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.sticky-kit.min.js"></script> | |
| 1823 | +<script id="wc-quantity-increment-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/wc-quantity-increment.min.js"></script> | |
| 1824 | +<script id="isotopes-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/isotopes.js"></script> | |
| 1825 | +<script id="jquery-cookie-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.cookie.min.js"></script> | |
| 1826 | +<script id="mihouse-newsletter-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/newsletter.js"></script> | |
| 1827 | +<script id="mihouse-script-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/functions.js"></script> | |
| 1828 | +<script id="mihouse-portfolio-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/portfolio.js"></script> | |
| 1829 | +<script id="elementor-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.2"></script> | |
| 1830 | +<script id="elementor-frontend-modules-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.2"></script> | |
| 1831 | +<script id="jquery-ui-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script> | |
| 1832 | +<script id="elementor-frontend-js-before"> | |
| 1833 | +var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.2","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_panel_promotions":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b687f3bd9b","atomicFormsSendForm":"33e1d8a0c3"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":11769,"title":"DISPONIBILIT%C3%89S%20PHASE%203%20-%20Ferrovia","excerpt":"","featuredImage":false}}; | |
| 1834 | +//# sourceURL=elementor-frontend-js-before | |
| 1835 | +</script> | |
| 1836 | +<script id="elementor-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.2"></script> | |
| 1837 | +<script id="smartmenus-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script> | |
| 1838 | +<script id="e-sticky-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.34.0"></script> | |
| 1839 | +<script id="cmplz-cookiebanner-js-extra"> | |
| 1840 | +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"21","version":"7.4.4.2","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://www.ferroviamirabel.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"16","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les cookies {category} et activer ce contenu","css_file":"https://www.ferroviamirabel.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=21","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https://www.ferroviamirabel.com/accueil/politique-de-cookies-ca/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les cookies {category} et activer ce contenu"}; | |
| 1841 | +//# sourceURL=cmplz-cookiebanner-js-extra | |
| 1842 | +</script> | |
| 1843 | +<script defer id="cmplz-cookiebanner-js" src="https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1769530458"></script> | |
| 1844 | +<script id="cmplz-cookiebanner-js-after"> | |
| 1845 | + if ('undefined' != typeof window.jQuery) { | |
| 1846 | + jQuery(document).ready(function ($) { | |
| 1847 | + $(document).on('elementor/popup/show', () => { | |
| 1848 | + let rev_cats = cmplz_categories.reverse(); | |
| 1849 | + for (let key in rev_cats) { | |
| 1850 | + if (rev_cats.hasOwnProperty(key)) { | |
| 1851 | + let category = cmplz_categories[key]; | |
| 1852 | + if (cmplz_has_consent(category)) { | |
| 1853 | + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { | |
| 1854 | + cmplz_remove_placeholder(obj); | |
| 1855 | + }); | |
| 1856 | + } | |
| 1857 | + } | |
| 1858 | + } | |
| 1859 | + | |
| 1860 | + let services = cmplz_get_services_on_page(); | |
| 1861 | + for (let key in services) { | |
| 1862 | + if (services.hasOwnProperty(key)) { | |
| 1863 | + let service = services[key].service; | |
| 1864 | + let category = services[key].category; | |
| 1865 | + if (cmplz_has_service_consent(service, category)) { | |
| 1866 | + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { | |
| 1867 | + cmplz_remove_placeholder(obj); | |
| 1868 | + }); | |
| 1869 | + } | |
| 1870 | + } | |
| 1871 | + } | |
| 1872 | + }); | |
| 1873 | + }); | |
| 1874 | + } | |
| 1875 | + | |
| 1876 | + | |
| 1877 | + | |
| 1878 | + document.addEventListener("cmplz_enable_category", function(consentData) { | |
| 1879 | + var category = consentData.detail.category; | |
| 1880 | + var services = consentData.detail.services; | |
| 1881 | + var blockedContentContainers = []; | |
| 1882 | + let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; | |
| 1883 | + let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; | |
| 1884 | + for (var skey in services) { | |
| 1885 | + if (services.hasOwnProperty(skey)) { | |
| 1886 | + let service = skey; | |
| 1887 | + selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; | |
| 1888 | + selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; | |
| 1889 | + } | |
| 1890 | + } | |
| 1891 | + document.querySelectorAll(selectorVideo).forEach(obj => { | |
| 1892 | + let elementService = obj.getAttribute('data-service'); | |
| 1893 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1894 | + return; | |
| 1895 | + } | |
| 1896 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1897 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1898 | + | |
| 1899 | + if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ | |
| 1900 | + let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); | |
| 1901 | + obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); | |
| 1902 | + obj.classList.setAttribute('data-widget_type', attr); | |
| 1903 | + } | |
| 1904 | + if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { | |
| 1905 | + obj.classList.remove('cmplz-elementor-widget-video-playlist'); | |
| 1906 | + obj.classList.add('elementor-widget-video-playlist'); | |
| 1907 | + } | |
| 1908 | + obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); | |
| 1909 | + blockedContentContainers.push(obj); | |
| 1910 | + }); | |
| 1911 | + | |
| 1912 | + document.querySelectorAll(selectorGeneric).forEach(obj => { | |
| 1913 | + let elementService = obj.getAttribute('data-service'); | |
| 1914 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1915 | + return; | |
| 1916 | + } | |
| 1917 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1918 | + | |
| 1919 | + if (obj.classList.contains('cmplz-fb-video')) { | |
| 1920 | + obj.classList.remove('cmplz-fb-video'); | |
| 1921 | + obj.classList.add('fb-video'); | |
| 1922 | + } | |
| 1923 | + | |
| 1924 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1925 | + obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); | |
| 1926 | + blockedContentContainers.push(obj.closest('.elementor-widget')); | |
| 1927 | + }); | |
| 1928 | + | |
| 1929 | + /** | |
| 1930 | + * Trigger the widgets in Elementor | |
| 1931 | + */ | |
| 1932 | + for (var key in blockedContentContainers) { | |
| 1933 | + if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { | |
| 1934 | + let blockedContentContainer = blockedContentContainers[key]; | |
| 1935 | + if (elementorFrontend.elementsHandler) { | |
| 1936 | + elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) | |
| 1937 | + } | |
| 1938 | + var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); | |
| 1939 | + blockedContentContainer.classList.remove('cmplz-blocked-content-container'); | |
| 1940 | + blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); | |
| 1941 | + } | |
| 1942 | + } | |
| 1943 | + | |
| 1944 | + }); | |
| 1945 | + | |
| 1946 | + | |
| 1947 | +//# sourceURL=cmplz-cookiebanner-js-after | |
| 1948 | +</script> | |
| 1949 | +<script id="fca_pc_client_js-js-extra"> | |
| 1950 | +var fcaPcEvents = [{"triggerType":"post","trigger":["all"],"parameters":{"content_name":"{post_title}","content_type":"product","content_ids":"{post_id}"},"event":"ViewContent","delay":"0","scroll":"0","apiAction":"track","ID":"5484e3bf-8296-4610-ae88-dcd82aafe45d"}]; | |
| 1951 | +var fcaPcPost = {"title":"DISPONIBILIT\u00c9S PHASE 3","type":"page","id":"11769","categories":[]}; | |
| 1952 | +var fcaPcOptions = {"pixel_types":["Facebook Pixel"],"capis":[],"ajax_url":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php","debug":"","edd_currency":"USD","nonce":"e2be76ec4c","utm_support":"","user_parameters":"","edd_enabled":"","edd_delay":"0","woo_enabled":"","woo_delay":"0","woo_order_cookie":"","video_enabled":""}; | |
| 1953 | +//# sourceURL=fca_pc_client_js-js-extra | |
| 1954 | +</script> | |
| 1955 | +<script id="fca_pc_client_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/pixel-cat.min.js?ver=3.2.0"></script> | |
| 1956 | +<script id="fca_pc_video_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/video.js?ver=7.0.3"></script> | |
| 1957 | +<script id="wdt-bootstrap-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1958 | +<script id="wdt-bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap.min.js?ver=7.3.3"></script> | |
| 1959 | +<script id="wdt-bootstrap-ajax-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/ajax-bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1960 | +<script id="wdt-moment-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/moment/moment.js?ver=7.3.3"></script> | |
| 1961 | +<script id="wdt-common-js-extra"> | |
| 1962 | +var wpdatatables_edit_strings = {"success_common":"Succ\u00e8s!","error_common":"Erreur!","settings_saved_error_common":"Unable to save settings of plugin. Please try again or contact us over Support page.","close_common":"Fermer","tableNameEmpty_common":"Le nom de la table ne peut pas \u00eatre vide ! Veuillez fournir un nom pour votre table.","masterdetail_error_common":"For the selected master-detail option, the following fields cannot be empty: Parent Table Column Name and Child Table Column Name. Additionally, the tables must be connected through a common unique ID column.","masterdetailParentId_error_common":"For the selected master-detail option, the following field cannot be empty: Parent Table Column Name.","tableSaved_common":"Tableau enregistr\u00e9 avec succ\u00e8s!","selectExcelCsv_common":"S\u00e9lectionnez un fichier Excel ou CSV","choose_file_common":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_common":"Choisir le fichier","shortcodeSaved_common":"Le shortcode a \u00e9t\u00e9 copi\u00e9 dans le presse-papier.","dataSaved_common":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_common":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_common":"There was an error trying to delete a row!","rowDeleted_common":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","systemInfoSaved_common":"Les donn\u00e9es d'information du syst\u00e8me ont \u00e9t\u00e9 copi\u00e9es dans le presse-papiers. Vous pouvez maintenant les coller dans le fichier ou dans le ticket de support.","selected_replace_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace rows with source data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete all the data\u003C/strong\u003E you currently have in your table and replace it with data from your source file.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","selected_add_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Add data to current table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Eadd data\u003C/strong\u003E from the file source to your table.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E","selected_replace_table_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace entire table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete your entire table data and current column settings\u003C/strong\u003E and replace it with data from your source file with default settings for columns.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first. \u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","clear_table_data_common":"Clear table data","delete_common":"Effacer","deleteSelected_common":"Supprimer s\u00e9lectionn\u00e9","getJsonRoots_common":"Les racines JSON sont trouv\u00e9es !","errorText_common":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","failedToLoadFormFields_common":"Failed to load form fields","invalidResponseServer_common":"Invalid response from server"}; | |
| 1963 | +//# sourceURL=wdt-common-js-extra | |
| 1964 | +</script> | |
| 1965 | +<script id="wdt-common-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/admin/common.js?ver=7.3.3"></script> | |
| 1966 | +<script id="wdt-bootstrap-tagsinput-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.js?ver=7.3.3"></script> | |
| 1967 | +<script id="wdt-bootstrap-datetimepicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js?ver=7.3.3"></script> | |
| 1968 | +<script id="wdt-bootstrap-nouislider-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.js?ver=7.3.3"></script> | |
| 1969 | +<script id="wdt-wNumb-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/wNumb.min.js?ver=7.3.3"></script> | |
| 1970 | +<script id="wdt-bootstrap-colorpicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.js?ver=7.3.3"></script> | |
| 1971 | +<script id="wdt-bootstrap-growl-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-growl/bootstrap-growl.min.js?ver=7.3.3"></script> | |
| 1972 | +<script id="wdt-wpdatatables-js-extra"> | |
| 1973 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1974 | +var wpdatatables_inline_strings = {"invalid_email_inline":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_inline":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_inline":" le champ ne peut pas \u00eatre vide!","cannot_be_edit_inline":"Vous ne pouvez pas \u00e9diter ce champ","errorText_inline":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_inline":"Aucune s\u00e9lection","sLoadingRecords_inline":"Chargement...","currentlySelected_inline":"Actuellement s\u00e9lectionn\u00e9","search_inline":"Recherche...","statusInitialized_inline":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_inline":"Aucun r\u00e9sultats","statusTooShort_inline":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","selectFileAttachment_inline":"Choisir le fichier","changeFileAttachment_inline":"Changer","saveFileAttachment_inline":"Sauvegarder","removeFileAttachment_inline":"Supprimer","select_upload_file_inline":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_inline":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_inline":"Choisir le fichier","inlineEditing_inline":"Inline editing of the cell "}; | |
| 1975 | +var wpdatatables_filter_strings = {"errorText_columnfilter":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_columnfilter":"Aucune s\u00e9lection","sLoadingRecords_columnfilter":"Chargement...","currentlySelected_columnfilter":"Actuellement s\u00e9lectionn\u00e9","search_columnfilter":"Recherche...","statusInitialized_columnfilter":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_columnfilter":"Aucun r\u00e9sultats","statusTooShort_columnfilter":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","from_columnfilter":"De","to_columnfilter":"\u00c0","fromDate_columnfilter":"Date from","toDate_columnfilter":"Date to","fromDateTime_columnfilter":"DateTime from","toDateTime_columnfilter":"DateTime to","fromTime_columnfilter":"Time from","toTime_columnfilter":"Time to","filterInputString_columnfilter":"Filter input for ","filterInputNumber_columnfilter":"Filter input for number range filter ","filterInputDate_columnfilter":"Filter input for date picker ","filterInputDateTime_columnfilter":"Filter input for datetime picker ","filterInputTime_columnfilter":"Filter input for time picker ","filterCheckbox_columnfilter":"Filter checkbox for ","minValue_columnfilter":"Minimum Value: ","maxValue_columnfilter":"Maximum Value: ","multiSelectBoxOption_columnfilter":"MultiSelectBox option","selectBoxOption_columnfilter":"SelectBox option","dividerSearchBox_columnfilter":"This is divider between searchbox input and options to select"}; | |
| 1976 | +var wpdatatables_functions_strings = {"sInfo_functions":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_functions":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_functions":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_functions":"","sInfoThousands_functions":",","sLengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sLoadingRecords_functions":"Chargement...","sProcessing_functions":"En traitement...","sSearch_functions":"Recherche: ","lengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_functions":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_functions":"Aucun enregistrements correspondants trouv\u00e9s","oAria_functions":{"sSortAscending_functions":": activer pour trier la colonne en ordre croissant","sSortDescending_functions":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_functions":{"sFirst_functions":"Premier","sLast_functions":"Dernier","sNext_functions":"Suivant","sPrevious_functions":"Pr\u00e9c\u00e9dent"},"nothingSelected_functions":"Aucune s\u00e9lection"}; | |
| 1977 | +var wpdatatables_settings = {"wdtDateFormat":"d/m/Y","wdtTimeFormat":"h:i A","wdtNumberFormat":"1","wdtGlobalTableLoader":"1"}; | |
| 1978 | +var wpdatatables_frontend_strings = {"success_wpdatatables":"Succ\u00e8s!","error_wpdatatables":"Erreur!","dataSaved_wpdatatables":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_wpdatatables":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_wpdatatables":"There was an error trying to delete a row!","rowDeleted_wpdatatables":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","errorText_wpdatatables":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_wpdatatables":"Aucune s\u00e9lection","sLoadingRecords_wpdatatables":"Chargement...","currentlySelected_wpdatatables":"Actuellement s\u00e9lectionn\u00e9","search_wpdatatables":"Recherche...","statusInitialized_wpdatatables":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_wpdatatables":"Aucun r\u00e9sultats","statusTooShort_wpdatatables":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","select_upload_file_wpdatatables":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_wpdatatables":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_wpdatatables":"Choisir le fichier","add_new_entry_wpdatatables":"Ajouter une nouvelle entr\u00e9e","duplicate_entry_wpdatatables":"Duplicate entry","edit_entry_wpdatatables":"Modifier l\u2019entr\u00e9e","invalid_email_wpdatatables":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_wpdatatables":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_wpdatatables":" le champ ne peut pas \u00eatre vide!","sInfo_wpdatatables":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_wpdatatables":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_wpdatatables":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_wpdatatables":"","sInfoThousands_wpdatatables":",","sLengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sProcessing_wpdatatables":"En traitement...","sSearch_wpdatatables":"Recherche: ","lengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_wpdatatables":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_wpdatatables":"Aucun enregistrements correspondants trouv\u00e9s","oAria_wpdatatables":{"sSortAscending_wpdatatables":": activer pour trier la colonne en ordre croissant","sSortDescending_wpdatatables":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_wpdatatables":{"sFirst_wpdatatables":"Premier","sLast_wpdatatables":"Dernier","sNext_wpdatatables":"Suivant","sPrevious_wpdatatables":"Pr\u00e9c\u00e9dent"},"from_wpdatatables":"De","to_wpdatatables":"\u00c0","sortingError_wpdatatables":"At least one show/hide sorting icon must be enabled!","firstPageWCAG_wpdatatables":"Navigate to First page","lastPageWCAG_wpdatatables":"Navigate to Last page","nextPageWCAG_wpdatatables":"Navigate to Next page","previousPageWCAG_wpdatatables":"Navigate to Previous page","pageWCAG_wpdatatables":"Navigate to wpDataTable Page ","spacerWCAG_wpdatatables":"Spacer","printTableWCAG_wpdatatables":"Imprimer la table","exportTableWCAG_wpdatatables":"Exporter la table","newEntryWCAG_wpdatatables":"Nouvelle entr\u00e9e","deleteRowWCAG_wpdatatables":"Delete row","editRowWCAG_wpdatatables":"Edit row","duplicateRowWCAG_wpdatatables":"Duplicate row","clearFiltersWCAG_wpdatatables":"Effacer les filtres","columnVisibilityWCAG_wpdatatables":"Column visibility","sInfoEmptyWCAG_wpdatatables":"Showing 0 to 0 of 0 entries _COLUMN_ _DATA_","sInfoWCAG_wpdatatables":"Showing _START_ to _END_ of _TOTAL_ entries _COLUMN_ _DATA_","masterDetailWCAG_wpdatatables":"Master Detail","globalSearchWCAG_wpdatatables":"Global Search Table Input Field","chooseExportWCAG_wpdatatables":"Choose how to export table","optionHideWCAG_wpdatatables":"Option to either display or hide columns","rowsPerPageWCAG_wpdatatables":"Open dropdown menu for show rows per page","forWCAG_wpdatatables":"for ","columnSearchWCAG_wpdatatables":" column searching for ","valueFromWCAG_wpdatatables":"value from ","valueToWCAG_wpdatatables":" value to ","andforWCAG_wpdatatables":" and for ","andforGloablWCAG_wpdatatables":" and for Global search of value ","forGloablWCAG_wpdatatables":"for Global search of value ","lenghtMenuWCAG_wpdatatables":"Length menu:","searchTableWCAG_wpdatatables":"Search table:","all_wpdatatables":"Tout","customDisplayError_wpdatatables":"Invalid format of custom rows per page. Please enter a valid format like \"1,2,3,4\". If you use the number 0, it must be in the format 0 without any preceding zeros.","close_common_wpdatatables":"Fermer","error_adding_to_cart_wpdatatables":"Error adding products to cart.","select_products_for_cart_wpdatatables":"Please select products to add to the cart.","error_fetching_cart_info_wpdatatables":"Error fetching cart info.","could_not_add_to_cart_wpdatatables":"Could not add this product to cart - the stock of this product could be limited.","emtyfields_woo_front":"All of the following fields must be filled out: Taxonomy, Tax Field and Tax Terms."}; | |
| 1979 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1980 | +//# sourceURL=wdt-wpdatatables-js-extra | |
| 1981 | +</script> | |
| 1982 | +<script id="wdt-wpdatatables-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.frontend-starter.min.js?ver=7.3.3"></script> | |
| 1983 | +<script id="underscore-js" src="https://www.ferroviamirabel.com/wp-includes/js/underscore.min.js?ver=1.13.8"></script> | |
| 1984 | +<script id="elementor-pro-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.34.0"></script> | |
| 1985 | +<script id="wp-hooks-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 1986 | +<script id="wp-i18n-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 1987 | +<script id="wp-i18n-js-after"> | |
| 1988 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 1989 | +//# sourceURL=wp-i18n-js-after | |
| 1990 | +</script> | |
| 1991 | +<script id="elementor-pro-frontend-js-before"> | |
| 1992 | +var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","nonce":"108ef60315","urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.ferroviamirabel.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; | |
| 1993 | +//# sourceURL=elementor-pro-frontend-js-before | |
| 1994 | +</script> | |
| 1995 | +<script id="elementor-pro-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.34.0"></script> | |
| 1996 | +<script id="pro-elements-handlers-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.34.0"></script> | |
| 1997 | +<script id="wp-emoji-settings" type="application/json"> | |
| 1998 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}} | |
| 1999 | +</script> | |
| 2000 | +<script type="module"> | |
| 2001 | +/*! This file is auto-generated */ | |
| 2002 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 2003 | +//# sourceURL=https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-loader.min.js | |
| 2004 | +</script> | |
| 2005 | + | |
| 2006 | + </body> | |
| 2007 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/ferrovia/c120b357ef6e4896e7ae.html
+1996 −0
@@ -0,0 +1,1996 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr-FR" class="no-js"> | |
| 3 | + <head> | |
| 4 | + | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width"> | |
| 7 | + <link rel="profile" href="http://gmpg.org/xfn/11"> | |
| 8 | + <link rel="pingback" href="https://www.ferroviamirabel.com/xmlrpc.php"> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | + <!-- Pixel Cat Facebook Pixel Code --> | |
| 11 | + <script type="text/plain" data-service="facebook" data-category="marketing"> | |
| 12 | + !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? | |
| 13 | + n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; | |
| 14 | + n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; | |
| 15 | + t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, | |
| 16 | + document,'script','https://connect.facebook.net/en_US/fbevents.js' ); | |
| 17 | + fbq( 'init', '552877629303142' ); </script> | |
| 18 | + <!-- DO NOT MODIFY --> | |
| 19 | + <!-- End Facebook Pixel Code --> | |
| 20 | + | |
| 21 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 22 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 23 | + var gtm4wp_datalayer_name = "dataLayer"; | |
| 24 | + var dataLayer = dataLayer || []; | |
| 25 | +</script> | |
| 26 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 27 | + <!-- This site is optimized with the Yoast SEO plugin v23.9 - https://yoast.com/wordpress/plugins/seo/ --> | |
| 28 | + <title>Disponibilités | Prix & Plans | Phase 1 | Condos à louer à Mirabel | Ferrovia</title> | |
| 29 | + <meta name="description" content="Consultez les unités de condos à louer disponibles ainsi que leurs prix et plans ainsi que le plan du projet démontrant toutes les phases." /> | |
| 30 | + <link rel="canonical" href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" /> | |
| 31 | + <meta property="og:locale" content="fr_FR" /> | |
| 32 | + <meta property="og:type" content="article" /> | |
| 33 | + <meta property="og:title" content="Disponibilités | Prix & Plans | Phase 1 | Condos à louer à Mirabel | Ferrovia" /> | |
| 34 | + <meta property="og:description" content="Consultez les unités de condos à louer disponibles ainsi que leurs prix et plans ainsi que le plan du projet démontrant toutes les phases." /> | |
| 35 | + <meta property="og:url" content="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" /> | |
| 36 | + <meta property="og:site_name" content="Ferrovia" /> | |
| 37 | + <meta property="article:modified_time" content="2026-02-12T22:30:48+00:00" /> | |
| 38 | + <meta property="og:image" content="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" /> | |
| 39 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 40 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 41 | + <meta name="twitter:data1" content="6 minutes" /> | |
| 42 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/","url":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/","name":"Disponibilités | Prix & Plans | Phase 1 | Condos à louer à Mirabel | Ferrovia","isPartOf":{"@id":"https://www.ferroviamirabel.com/#website"},"primaryImageOfPage":{"@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/#primaryimage"},"image":{"@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/#primaryimage"},"thumbnailUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","datePublished":"2021-05-05T20:51:48+00:00","dateModified":"2026-02-12T22:30:48+00:00","description":"Consultez les unités de condos à louer disponibles ainsi que leurs prix et plans ainsi que le plan du projet démontrant toutes les phases.","breadcrumb":{"@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/#primaryimage","url":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","contentUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png"},{"@type":"BreadcrumbList","@id":"https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://www.ferroviamirabel.com/"},{"@type":"ListItem","position":2,"name":"DISPONIBILITÉS PHASE 1"}]},{"@type":"WebSite","@id":"https://www.ferroviamirabel.com/#website","url":"https://www.ferroviamirabel.com/","name":"Ferrovia","description":"Condos locatifs - Mirabel","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.ferroviamirabel.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}</script> | |
| 43 | + <!-- / Yoast SEO plugin. --> | |
| 44 | + | |
| 45 | + | |
| 46 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 47 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux" href="https://www.ferroviamirabel.com/feed/" /> | |
| 48 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux des commentaires" href="https://www.ferroviamirabel.com/comments/feed/" /> | |
| 49 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-prix-plans-phase1%2F" /> | |
| 50 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-prix-plans-phase1%2F&format=xml" /> | |
| 51 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 52 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 53 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 54 | +</style> | |
| 55 | +<style id="wp-emoji-styles-inline-css"> | |
| 56 | + | |
| 57 | + img.wp-smiley, img.emoji { | |
| 58 | + display: inline !important; | |
| 59 | + border: none !important; | |
| 60 | + box-shadow: none !important; | |
| 61 | + height: 1em !important; | |
| 62 | + width: 1em !important; | |
| 63 | + margin: 0 0.07em !important; | |
| 64 | + vertical-align: -0.1em !important; | |
| 65 | + background: none !important; | |
| 66 | + padding: 0 !important; | |
| 67 | + } | |
| 68 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 69 | +</style> | |
| 70 | +<style id="classic-theme-styles-inline-css"> | |
| 71 | +/*! This file is auto-generated */ | |
| 72 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 73 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 74 | +</style> | |
| 75 | +<style id="global-styles-inline-css"> | |
| 76 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} | |
| 77 | +:root :where(.wp-block-icon svg){width: 24px;} | |
| 78 | +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} | |
| 79 | +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} | |
| 80 | +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} | |
| 81 | +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} | |
| 82 | +/*# sourceURL=global-styles-inline-css */ | |
| 83 | +</style> | |
| 84 | +<link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.3.3' media='all' /> | |
| 85 | +<style id="rs-plugin-settings-inline-css"> | |
| 86 | +#rs-demo-id {} | |
| 87 | +/*# sourceURL=rs-plugin-settings-inline-css */ | |
| 88 | +</style> | |
| 89 | +<link rel='stylesheet' id='cmplz-general-css' href='https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1769530449' media='all' /> | |
| 90 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='mihouse-fonts-css' data-href='https://fonts.googleapis.com/css?family=Prata%7COverpass%3A300%2C300i%2C400%2C400i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i%7COpen%2BSans&subset=latin%2Clatin-ext' media='all' /> | |
| 91 | +<link rel='stylesheet' id='mihouse-style-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/style.css?ver=7.0.3' media='all' /> | |
| 92 | +<link rel='stylesheet' id='bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/bootstrap.css?ver=7.0.3' media='all' /> | |
| 93 | +<link rel='stylesheet' id='fancybox-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.fancybox.css' media='all' /> | |
| 94 | +<link rel='stylesheet' id='mmenu-all-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.mmenu.all.css?ver=7.0.3' media='all' /> | |
| 95 | +<link rel='stylesheet' id='slick-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/slick/slick.css' media='all' /> | |
| 96 | +<link rel='stylesheet' id='fontawesome-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/fontawesome.css?ver=7.0.3' media='all' /> | |
| 97 | +<link rel='stylesheet' id='icofont-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/icofont.css?ver=7.0.3' media='all' /> | |
| 98 | +<link rel='stylesheet' id='ionicons-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/ionicons.css?ver=7.0.3' media='all' /> | |
| 99 | +<link rel='stylesheet' id='materia-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/materia.css?ver=7.0.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='elegant-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/elegant.css?ver=7.0.3' media='all' /> | |
| 101 | +<link rel='stylesheet' id='mihouse-style-template-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/template.css?ver=7.0.3' media='all' /> | |
| 102 | +<style id="mihouse-style-template-inline-css"> | |
| 103 | +.blog_title {font-family: Open Sans ;font-size: 14px;font-weight:400;} | |
| 104 | +/*# sourceURL=mihouse-style-template-inline-css */ | |
| 105 | +</style> | |
| 106 | +<link rel='stylesheet' id='elementor-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' media='all' /> | |
| 107 | +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.2' media='all' /> | |
| 108 | +<link rel='stylesheet' id='elementor-post-6-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-6.css?ver=1786094240' media='all' /> | |
| 109 | +<link rel='stylesheet' id='wpdt-elementor-widget-font-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/integrations/starter/page-builders/elementor/css/style.css?ver=7.3.3' media='all' /> | |
| 110 | +<link rel='stylesheet' id='widget-image-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.2' media='all' /> | |
| 111 | +<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=3.34.0' media='all' /> | |
| 112 | +<link rel='stylesheet' id='e-sticky-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=3.34.0' media='all' /> | |
| 113 | +<link rel='stylesheet' id='widget-spacer-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=4.2.2' media='all' /> | |
| 114 | +<link rel='stylesheet' id='widget-heading-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.2' media='all' /> | |
| 115 | +<link rel='stylesheet' id='elementor-post-10048-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-10048.css?ver=1786098539' media='all' /> | |
| 116 | +<link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1742245718' media='all' /> | |
| 117 | +<link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1742245720' media='all' /> | |
| 118 | +<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' /> | |
| 119 | +<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' /> | |
| 120 | +<script id="jquery-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 121 | +<script id="jquery-migrate-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 122 | +<script id="tp-tools-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.3.3"></script> | |
| 123 | +<script id="revmin-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.3.3"></script> | |
| 124 | +<link rel="https://api.w.org/" href="https://www.ferroviamirabel.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.ferroviamirabel.com/wp-json/wp/v2/pages/10048" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.ferroviamirabel.com/xmlrpc.php?rsd" /> | |
| 125 | +<meta name="generator" content="WordPress 7.0.3" /> | |
| 126 | +<link rel='shortlink' href='https://www.ferroviamirabel.com/?p=10048' /> | |
| 127 | +<meta name="generator" content="Redux 4.5.10" /> <style>.cmplz-hidden { | |
| 128 | + display: none !important; | |
| 129 | + }</style> | |
| 130 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 131 | +<!-- GTM Container placement set to automatic --> | |
| 132 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 133 | + var dataLayer_content = {"pagePostType":"page","pagePostType2":"single-page","pagePostAuthor":"bqsas"}; | |
| 134 | + dataLayer.push( dataLayer_content ); | |
| 135 | +</script> | |
| 136 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 137 | +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 138 | +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 139 | +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 140 | +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 141 | +})(window,document,'script','dataLayer','GTM-WPSL7SJ'); | |
| 142 | +</script> | |
| 143 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 144 | +<meta name="google-site-verification" content="Nlv5MPpNKTzvpNELWxPZq24HaIX_plPzXrAp5J9igsE" /> | |
| 145 | +<meta name="facebook-domain-verification" content="mat0etaoyaqdleu1nqk7cok5uj1i2k" /> | |
| 146 | + | |
| 147 | + | |
| 148 | +<meta name="generator" content="Elementor 4.2.2; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> | |
| 149 | +<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> | |
| 150 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 151 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 152 | + background-image: none !important; | |
| 153 | + } | |
| 154 | + @media screen and (max-height: 1024px) { | |
| 155 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 156 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 157 | + background-image: none !important; | |
| 158 | + } | |
| 159 | + } | |
| 160 | + @media screen and (max-height: 640px) { | |
| 161 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 162 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 163 | + background-image: none !important; | |
| 164 | + } | |
| 165 | + } | |
| 166 | + </style> | |
| 167 | + <meta name="generator" content="Powered by Slider Revolution 6.3.3 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> | |
| 168 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-32x32.png" sizes="32x32" /> | |
| 169 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-192x192.png" sizes="192x192" /> | |
| 170 | +<link rel="apple-touch-icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-180x180.png" /> | |
| 171 | +<meta name="msapplication-TileImage" content="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-270x270.png" /> | |
| 172 | +<script type="text/javascript">function setREVStartSize(e){ | |
| 173 | + //window.requestAnimationFrame(function() { | |
| 174 | + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; | |
| 175 | + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; | |
| 176 | + try { | |
| 177 | + var pw = document.getElementById(e.c).parentNode.offsetWidth, | |
| 178 | + newh; | |
| 179 | + pw = pw===0 || isNaN(pw) ? window.RSIW : pw; | |
| 180 | + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); | |
| 181 | + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); | |
| 182 | + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); | |
| 183 | + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); | |
| 184 | + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); | |
| 185 | + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); | |
| 186 | + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); | |
| 187 | + if(e.layout==="fullscreen" || e.l==="fullscreen") | |
| 188 | + newh = Math.max(e.mh,window.RSIH); | |
| 189 | + else{ | |
| 190 | + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; | |
| 191 | + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; | |
| 192 | + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; | |
| 193 | + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; | |
| 194 | + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; | |
| 195 | + | |
| 196 | + var nl = new Array(e.rl.length), | |
| 197 | + ix = 0, | |
| 198 | + sl; | |
| 199 | + e.tabw = e.tabhide>=pw ? 0 : e.tabw; | |
| 200 | + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; | |
| 201 | + e.tabh = e.tabhide>=pw ? 0 : e.tabh; | |
| 202 | + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; | |
| 203 | + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; | |
| 204 | + sl = nl[0]; | |
| 205 | + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} | |
| 206 | + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); | |
| 207 | + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); | |
| 208 | + } | |
| 209 | + if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style")); | |
| 210 | + document.getElementById(e.c).height = newh+"px"; | |
| 211 | + window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }"; | |
| 212 | + } catch(e){ | |
| 213 | + console.log("Failure at Presize of Slider:" + e) | |
| 214 | + } | |
| 215 | + //}); | |
| 216 | + };</script> | |
| 217 | +<style id="wp-custom-css"> | |
| 218 | +@media only screen and (max-width: 1024px) { | |
| 219 | + html body .phone-number .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description{ | |
| 220 | + pointer-events: none !important; | |
| 221 | + text-decoration:none !important; | |
| 222 | + color:inherit !important; | |
| 223 | + color:#a3a3a3 !important; | |
| 224 | + } | |
| 225 | +} | |
| 226 | +</style> | |
| 227 | + <style type="text/css"> | |
| 228 | + body:before { display:none !important} | |
| 229 | + body:after { display:none !important} | |
| 230 | + body, body.page-template-revslider-page-template, body.page-template---publicviewsrevslider-page-template-php { background:transparent} | |
| 231 | + </style> | |
| 232 | + </head> | |
| 233 | + | |
| 234 | + <body data-cmplz=1 class="wp-singular page-template page-template--- page-template-public page-template-views page-template-revslider-page-template page-template---publicviewsrevslider-page-template-php page page-id-10048 wp-theme-mihouse disponibilites-prix-plans-phase1 banners-effect-1 full-layout elementor-default elementor-kit-6 elementor-page elementor-page-10048"> | |
| 235 | + <div> | |
| 236 | + <div data-elementor-type="wp-page" data-elementor-id="10048" class="elementor elementor-10048" data-elementor-post-type="page"> | |
| 237 | + <header class="elementor-section elementor-top-section elementor-element elementor-element-c1c91a4 elementor-section-content-middle elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="c1c91a4" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic","sticky":"top","stretch_section":"section-stretched","sticky_on":["desktop","tablet","mobile"],"sticky_offset":0,"sticky_effects_offset":0,"sticky_anchor_link_offset":0}"> | |
| 238 | + <div class="elementor-container elementor-column-gap-no"> | |
| 239 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6daeb29" data-id="6daeb29" data-element_type="column" data-e-type="column"> | |
| 240 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 241 | + <div class="elementor-element elementor-element-8c3dc24 elementor-widget elementor-widget-image" data-id="8c3dc24" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 242 | + <div class="elementor-widget-container"> | |
| 243 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" title="Logo Ferrovia – Projet immobilier – Condos Laurentides" alt="Logo Ferrovia - Projet immobilier - Condos Laurentides" loading="lazy" /> </div> | |
| 244 | + </div> | |
| 245 | + </div> | |
| 246 | + </div> | |
| 247 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b9e0b0b" data-id="b9e0b0b" data-element_type="column" data-e-type="column"> | |
| 248 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 249 | + <div class="elementor-element elementor-element-cbdb6b5 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="cbdb6b5" data-element_type="widget" data-e-type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\" aria-hidden=\"true\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> | |
| 250 | + <div class="elementor-widget-container"> | |
| 251 | + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> | |
| 252 | + <ul id="menu-1-cbdb6b5" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item">ACCUEIL</a></li> | |
| 253 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item">PROJET</a></li> | |
| 254 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item">INTÉRIEURS</a> | |
| 255 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 256 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item">PHASE 1</a></li> | |
| 257 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item">PHASE 3</a></li> | |
| 258 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item">PHASE 4</a></li> | |
| 259 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item">PHOTOS DES UNITÉS</a></li> | |
| 260 | +</ul> | |
| 261 | +</li> | |
| 262 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item">DISPONIBILITÉS</a> | |
| 263 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 264 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" aria-current="page" class="elementor-sub-item elementor-item-active">PHASE 1</a></li> | |
| 265 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor">PHASE 2 (à venir)</a></li> | |
| 266 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" class="elementor-sub-item">PHASE 3</a></li> | |
| 267 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" class="elementor-sub-item">PHASE 4</a></li> | |
| 268 | +</ul> | |
| 269 | +</li> | |
| 270 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item">À PROPOS</a></li> | |
| 271 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item">INFORMATION</a></li> | |
| 272 | +</ul> </nav> | |
| 273 | + <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Permuter le menu" aria-expanded="false"> | |
| 274 | + <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> | |
| 275 | + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> | |
| 276 | + <ul id="menu-2-cbdb6b5" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item" tabindex="-1">ACCUEIL</a></li> | |
| 277 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item" tabindex="-1">PROJET</a></li> | |
| 278 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item" tabindex="-1">INTÉRIEURS</a> | |
| 279 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 280 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item" tabindex="-1">PHASE 1</a></li> | |
| 281 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item" tabindex="-1">PHASE 3</a></li> | |
| 282 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item" tabindex="-1">PHASE 4</a></li> | |
| 283 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item" tabindex="-1">PHOTOS DES UNITÉS</a></li> | |
| 284 | +</ul> | |
| 285 | +</li> | |
| 286 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item" tabindex="-1">DISPONIBILITÉS</a> | |
| 287 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 288 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">PHASE 1</a></li> | |
| 289 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">PHASE 2 (à venir)</a></li> | |
| 290 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" class="elementor-sub-item" tabindex="-1">PHASE 3</a></li> | |
| 291 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" class="elementor-sub-item" tabindex="-1">PHASE 4</a></li> | |
| 292 | +</ul> | |
| 293 | +</li> | |
| 294 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item" tabindex="-1">À PROPOS</a></li> | |
| 295 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item" tabindex="-1">INFORMATION</a></li> | |
| 296 | +</ul> </nav> | |
| 297 | + </div> | |
| 298 | + </div> | |
| 299 | + </div> | |
| 300 | + </div> | |
| 301 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-1206490" data-id="1206490" data-element_type="column" data-e-type="column"> | |
| 302 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 303 | + <div class="elementor-element elementor-element-6d35bea elementor-align-center elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="6d35bea" data-element_type="widget" data-e-type="widget" data-widget_type="button.default"> | |
| 304 | + <div class="elementor-widget-container"> | |
| 305 | + <div class="elementor-button-wrapper"> | |
| 306 | + <a class="elementor-button elementor-button-link elementor-size-md" href="tel:(450)%20350-0039"> | |
| 307 | + <span class="elementor-button-content-wrapper"> | |
| 308 | + <span class="elementor-button-text">(450) 350-0039</span> | |
| 309 | + </span> | |
| 310 | + </a> | |
| 311 | + </div> | |
| 312 | + </div> | |
| 313 | + </div> | |
| 314 | + </div> | |
| 315 | + </div> | |
| 316 | + </div> | |
| 317 | + </header> | |
| 318 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-de5b558 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="de5b558" data-element_type="section" data-e-type="section"> | |
| 319 | + <div class="elementor-container elementor-column-gap-default"> | |
| 320 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e163d6f" data-id="e163d6f" data-element_type="column" data-e-type="column"> | |
| 321 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 322 | + <div class="elementor-element elementor-element-3e59ee8 elementor-widget elementor-widget-spacer" data-id="3e59ee8" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default"> | |
| 323 | + <div class="elementor-widget-container"> | |
| 324 | + <div class="elementor-spacer"> | |
| 325 | + <div class="elementor-spacer-inner"></div> | |
| 326 | + </div> | |
| 327 | + </div> | |
| 328 | + </div> | |
| 329 | + <div class="elementor-element elementor-element-233a36c elementor-widget elementor-widget-heading" data-id="233a36c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default"> | |
| 330 | + <div class="elementor-widget-container"> | |
| 331 | + <h1 class="elementor-heading-title elementor-size-default">Disponibilités, prix et plans de nos condos à louer, situés à Mirabel, dans le secteur de Saint-Janvier (projet terminé)</h1> </div> | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + </div> | |
| 336 | + </section> | |
| 337 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-ee41458 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="ee41458" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 338 | + <div class="elementor-container elementor-column-gap-default"> | |
| 339 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5ab8795" data-id="5ab8795" data-element_type="column" data-e-type="column"> | |
| 340 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 341 | + <div class="elementor-element elementor-element-5eb4f9d text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="5eb4f9d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 342 | + <div class="elementor-widget-container"> | |
| 343 | + <p class="subtitle">PHASE 1</p><h3 class="title">Plan du projet</h3> </div> | |
| 344 | + </div> | |
| 345 | + </div> | |
| 346 | + </div> | |
| 347 | + </div> | |
| 348 | + </section> | |
| 349 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-bd0af28 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="bd0af28" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 350 | + <div class="elementor-container elementor-column-gap-default"> | |
| 351 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-591b3e8" data-id="591b3e8" data-element_type="column" data-e-type="column"> | |
| 352 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 353 | + <div class="elementor-element elementor-element-97ab37b elementor-widget elementor-widget-image" data-id="97ab37b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 354 | + <div class="elementor-widget-container"> | |
| 355 | + <img fetchpriority="high" decoding="async" width="1483" height="534" src="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg" class="attachment-full size-full wp-image-11641" alt="" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg 1483w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-300x108.jpg 300w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-1024x369.jpg 1024w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-768x277.jpg 768w" sizes="(max-width: 1483px) 100vw, 1483px" /> </div> | |
| 356 | + </div> | |
| 357 | + </div> | |
| 358 | + </div> | |
| 359 | + </div> | |
| 360 | + </section> | |
| 361 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-a65d133 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="a65d133" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 362 | + <div class="elementor-container elementor-column-gap-default"> | |
| 363 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-85e48dd" data-id="85e48dd" data-element_type="column" data-e-type="column"> | |
| 364 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 365 | + <div class="elementor-element elementor-element-88216d5 text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="88216d5" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 366 | + <div class="elementor-widget-container"> | |
| 367 | + <p class="subtitle">PLANS ET PRIX – PHASE 1</p><h3 class="title">Disponibilités</h3><p>À noter, que les logements sont non-fumeurs et que les animaux ne sont pas admis.</p> </div> | |
| 368 | + </div> | |
| 369 | + </div> | |
| 370 | + </div> | |
| 371 | + </div> | |
| 372 | + </section> | |
| 373 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-008fa5c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="008fa5c" data-element_type="section" data-e-type="section"> | |
| 374 | + <div class="elementor-container elementor-column-gap-no"> | |
| 375 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-af322c6" data-id="af322c6" data-element_type="column" data-e-type="column"> | |
| 376 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 377 | + <div class="elementor-element elementor-element-a0e3c3e elementor-widget elementor-widget-text-editor" data-id="a0e3c3e" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 378 | + <div class="elementor-widget-container"> | |
| 379 | + <p style="text-align: center;"> | |
| 380 | +<div class="wpdt-c wdt-skin-light"> | |
| 381 | + | |
| 382 | + <input type="hidden" id="wdtNonceFrontendServerSide_5" name="wdtNonceFrontendServerSide_5" value="5b9be0fe5c" /><input type="hidden" name="_wp_http_referer" value="/disponibilites-prix-plans-phase1/" /> <input type="hidden" id="table_1_desc" | |
| 383 | + value='{"tableId":"table_1","tableType":"manual","selector":"#table_1","responsive":true,"responsiveAction":"icon","editable":false,"inlineEditing":false,"infoBlock":false,"pagination_top":0,"pagination":1,"paginationAlign":"right","paginationLayout":"full_numbers","paginationLayoutMobile":"simple","file_location":"","tableSkin":"light","table_wcag":0,"simple_template_id":0,"scrollable":true,"fixedLayout":false,"globalSearch":false,"showRowsPerPage":false,"popoverTools":false,"loader":1,"showCartInformation":0,"hideBeforeLoad":false,"number_format":1,"decimalPlaces":2,"spinnerSrc":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/wpdatatables\/assets\/\/img\/spinner.gif","index_column":0,"groupingEnabled":false,"tableWpId":5,"dataTableParams":{"sDom":"BT\u003C\u0027clear\u0027\u003E\u003C\u0027wdtscroll\u0027t\u003Ep","bSortCellsTop":false,"bFilter":true,"bPaginate":true,"sPaginationType":"full_numbers","aLengthMenu":[[1,5,10,25,50,100,-1],[1,5,10,25,50,100,"Tout"]],"iDisplayLength":-1,"columnDefs":[{"sType":"formatted-num","wdtType":"int","bVisible":false,"orderable":true,"searchable":true,"InputType":"text","name":"wdt_ID","origHeader":"wdt_ID","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":"numdata integer column-wdt_id","aTargets":[0]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"unit","origHeader":"unit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-unit","aTargets":[1]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"modle","origHeader":"modle","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-modle","aTargets":[2]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"tage","origHeader":"tage","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-tage","aTargets":[3]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"pices","origHeader":"pices","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-pices","aTargets":[4]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"superficiepc","origHeader":"superficiepc","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-superficiepc","aTargets":[5]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"salledeausupp","origHeader":"salledeausupp","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-salledeausupp","aTargets":[6]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"disponibilit","origHeader":"disponibilit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-disponibilit","aTargets":[7]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"prix","origHeader":"prix","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-prix","aTargets":[8]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"statut","origHeader":"statut","notNull":false,"conditionalFormattingRules":[{"ifClause":"eq","cellVal":"Lou\u00e9","action":"setRowClass","setVal":"hide"}],"transformValueRules":"","className":" column-statut","aTargets":[9]},{"sType":"string","wdtType":"link","bVisible":true,"orderable":true,"searchable":true,"InputType":"link","name":"plan","origHeader":"plan","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-plan","aTargets":[10]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"dtail","origHeader":"dtail","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-dtail","aTargets":[11]}],"bAutoWidth":false,"order":[[0,"asc"]],"ordering":true,"fixedHeader":{"header":false,"headerOffset":0},"fixedColumns":false,"oLanguage":{"sSearchPlaceholder":""},"buttons":[],"bProcessing":false,"serverSide":true,"ajax":{"url":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php?action=get_wdtable&table_id=5","type":"POST"},"oSearch":{"bSmart":false,"bRegex":false,"sSearch":""}},"customRowDisplay":"","tabletWidth":"1024","mobileWidth":"480","renderFilter":"footer","advancedFilterEnabled":false,"serverSide":true,"autoRefreshInterval":0,"processing":true,"fnServerData":true,"columnsFixed":0,"sumFunctionsLabel":"","avgFunctionsLabel":"","minFunctionsLabel":"","maxFunctionsLabel":"","columnsDecimalPlaces":{"wdt_ID":-1,"unit":-1,"modle":-1,"tage":-1,"pices":-1,"superficiepc":-1,"salledeausupp":-1,"disponibilit":-1,"prix":-1,"statut":-1,"plan":-1,"dtail":-1},"columnsThousandsSeparator":{"wdt_ID":0},"sumColumns":[],"avgColumns":[],"sumAvgColumns":[],"conditional_formatting_columns":["statut"],"timeFormat":"h:i A","datepickFormat":"dd\/mm\/yy"}'/> | |
| 384 | + | |
| 385 | + <table id="table_1" | |
| 386 | + class=" scroll responsive display nowrap wdt-no-display data-t data-t wpDataTable wpDataTableID-5 " | |
| 387 | + style="" | |
| 388 | + data-described-by='table_1_desc' | |
| 389 | + data-wpdatatable_id="5"> | |
| 390 | + | |
| 391 | + <!-- Table header --> | |
| 392 | + | |
| 393 | +<thead> | |
| 394 | +<tr> | |
| 395 | + <th | |
| 396 | + class=" wdtheader sort numdata integer " | |
| 397 | + style=""> wdt_ID</th> <th | |
| 398 | + data-class="expand" class=" wdtheader sort " | |
| 399 | + style=""> UNITÉ</th> <th | |
| 400 | + class=" wdtheader sort " | |
| 401 | + style=""> MODÈLE</th> <th | |
| 402 | + class=" wdtheader sort " | |
| 403 | + style=""> ÉTAGE</th> <th | |
| 404 | + class=" wdtheader sort " | |
| 405 | + style=""> PIÈCES</th> <th | |
| 406 | + class=" wdtheader sort " | |
| 407 | + style=""> SUPERFICIE p.c.</th> <th | |
| 408 | + class=" wdtheader sort " | |
| 409 | + style=""> SALLE D'EAU SUPP.</th> <th | |
| 410 | + class=" wdtheader sort " | |
| 411 | + style=""> DISPONIBILITÉ</th> <th | |
| 412 | + class=" wdtheader sort " | |
| 413 | + style=""> PRIX</th> <th | |
| 414 | + class=" wdtheader sort " | |
| 415 | + style=""> STATUT</th> <th | |
| 416 | + class=" wdtheader sort " | |
| 417 | + style=""> PLAN</th> <th | |
| 418 | + class=" wdtheader sort " | |
| 419 | + style=""> DÉTAIL</th> </tr> | |
| 420 | +</thead> | |
| 421 | + <!-- /Table header --> | |
| 422 | + | |
| 423 | + <!-- Table body --> | |
| 424 | + | |
| 425 | +<tbody> | |
| 426 | +<!-- Table body --> | |
| 427 | +<div data-id="5" | |
| 428 | + class="wdt-timeline-item wdt-timeline-table_1" | |
| 429 | + style=""> | |
| 430 | + <div class="wdt-table-loader"> | |
| 431 | + <div class="wdt-table-loader-row wdt-table-loader-header"> | |
| 432 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 433 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 434 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 435 | + </div> | |
| 436 | + <div class="wdt-table-loader-row"> | |
| 437 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 438 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 439 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 440 | + </div> | |
| 441 | + <div class="wdt-table-loader-row"> | |
| 442 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 443 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 444 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 445 | + </div> | |
| 446 | + <div class="wdt-table-loader-row"> | |
| 447 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 448 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 449 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 450 | + </div> | |
| 451 | + <div class="wdt-table-loader-row"> | |
| 452 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 453 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 454 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 455 | + </div> | |
| 456 | + <div class="wdt-table-loader-row"> | |
| 457 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 458 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 459 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 460 | + </div> | |
| 461 | + <div class="wdt-table-loader-row"> | |
| 462 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 463 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 464 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 465 | + </div> | |
| 466 | + <div class="wdt-table-loader-row"> | |
| 467 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 468 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 469 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 470 | + </div> | |
| 471 | + <div class="wdt-table-loader-row"> | |
| 472 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 473 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 474 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 475 | + </div> | |
| 476 | + <div class="wdt-table-loader-row"> | |
| 477 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 478 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 479 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 480 | + </div> | |
| 481 | + <div class="wdt-table-loader-row"> | |
| 482 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 483 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 484 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 485 | + </div> | |
| 486 | + <div class="wdt-table-loader-row"> | |
| 487 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 488 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 489 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 490 | + </div> | |
| 491 | + <div class="wdt-table-loader-row"> | |
| 492 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 493 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 494 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 495 | + </div> | |
| 496 | + <div class="wdt-table-loader-row"> | |
| 497 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 498 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 499 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 500 | + </div> | |
| 501 | + <div class="wdt-table-loader-row"> | |
| 502 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 503 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 504 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 505 | + </div> | |
| 506 | + <div class="wdt-table-loader-row"> | |
| 507 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 508 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 509 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 510 | + </div> | |
| 511 | + <div class="wdt-table-loader-row"> | |
| 512 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 513 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 514 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 515 | + </div> | |
| 516 | + <div class="wdt-table-loader-row"> | |
| 517 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 518 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 519 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 520 | + </div> | |
| 521 | + <div class="wdt-table-loader-row"> | |
| 522 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 523 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 524 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 525 | + </div> | |
| 526 | + <div class="wdt-table-loader-row"> | |
| 527 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 528 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 529 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 530 | + </div> | |
| 531 | + <div class="wdt-table-loader-row"> | |
| 532 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 533 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 534 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 535 | + </div> | |
| 536 | + <div class="wdt-table-loader-row"> | |
| 537 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 538 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 539 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 540 | + </div> | |
| 541 | + <div class="wdt-table-loader-row"> | |
| 542 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 543 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 544 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 545 | + </div> | |
| 546 | + <div class="wdt-table-loader-row"> | |
| 547 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 548 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 549 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 550 | + </div> | |
| 551 | + <div class="wdt-table-loader-row"> | |
| 552 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 553 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 554 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 555 | + </div> | |
| 556 | + <div class="wdt-table-loader-row"> | |
| 557 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 558 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 559 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 560 | + </div> | |
| 561 | + <div class="wdt-table-loader-row"> | |
| 562 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 563 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 564 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 565 | + </div> | |
| 566 | + <div class="wdt-table-loader-row"> | |
| 567 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 568 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 569 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 570 | + </div> | |
| 571 | + <div class="wdt-table-loader-row"> | |
| 572 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 573 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 574 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 575 | + </div> | |
| 576 | + <div class="wdt-table-loader-row"> | |
| 577 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 578 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 579 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 580 | + </div> | |
| 581 | + <div class="wdt-table-loader-row"> | |
| 582 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 583 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 584 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 585 | + </div> | |
| 586 | + <div class="wdt-table-loader-row"> | |
| 587 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 588 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 589 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 590 | + </div> | |
| 591 | + <div class="wdt-table-loader-row"> | |
| 592 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 593 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 594 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 595 | + </div> | |
| 596 | + <div class="wdt-table-loader-row"> | |
| 597 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 598 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 599 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 600 | + </div> | |
| 601 | + <div class="wdt-table-loader-row"> | |
| 602 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 603 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 604 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 605 | + </div> | |
| 606 | + <div class="wdt-table-loader-row"> | |
| 607 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 608 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 609 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 610 | + </div> | |
| 611 | + <div class="wdt-table-loader-row"> | |
| 612 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 613 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 614 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 615 | + </div> | |
| 616 | + <div class="wdt-table-loader-row"> | |
| 617 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 618 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 619 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 620 | + </div> | |
| 621 | + <div class="wdt-table-loader-row"> | |
| 622 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 623 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 624 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 625 | + </div> | |
| 626 | + <div class="wdt-table-loader-row"> | |
| 627 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 628 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 629 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 630 | + </div> | |
| 631 | + <div class="wdt-table-loader-row"> | |
| 632 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 633 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 634 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 635 | + </div> | |
| 636 | + <div class="wdt-table-loader-row"> | |
| 637 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 638 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 639 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 640 | + </div> | |
| 641 | + <div class="wdt-table-loader-row"> | |
| 642 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 643 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 644 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 645 | + </div> | |
| 646 | + <div class="wdt-table-loader-row"> | |
| 647 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 648 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 649 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 650 | + </div> | |
| 651 | + <div class="wdt-table-loader-row"> | |
| 652 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 653 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 654 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 655 | + </div> | |
| 656 | + <div class="wdt-table-loader-row"> | |
| 657 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 658 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 659 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 660 | + </div> | |
| 661 | + <div class="wdt-table-loader-row"> | |
| 662 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 663 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 664 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 665 | + </div> | |
| 666 | + <div class="wdt-table-loader-row"> | |
| 667 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 668 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 669 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 670 | + </div> | |
| 671 | + <div class="wdt-table-loader-row"> | |
| 672 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 673 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 674 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 675 | + </div> | |
| 676 | + </div> | |
| 677 | +</div><!-- /Table body --> | |
| 678 | + <tr id="table_5_row_0" | |
| 679 | + data-row-index="0"> | |
| 680 | + <td style="">1</td> | |
| 681 | + <td style="">101</td> | |
| 682 | + <td style="">A</td> | |
| 683 | + <td style="">1</td> | |
| 684 | + <td style="">4 1/2</td> | |
| 685 | + <td style="">1155</td> | |
| 686 | + <td style="">NON</td> | |
| 687 | + <td style="">ÉTÉ 2022</td> | |
| 688 | + <td style=""></td> | |
| 689 | + <td style="">Loué</td> | |
| 690 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 691 | + <td style=""></td> | |
| 692 | + </tr> | |
| 693 | + <tr id="table_5_row_1" | |
| 694 | + data-row-index="1"> | |
| 695 | + <td style="">2</td> | |
| 696 | + <td style="">102</td> | |
| 697 | + <td style="">A’</td> | |
| 698 | + <td style="">1</td> | |
| 699 | + <td style="">4 1/2</td> | |
| 700 | + <td style="">1155</td> | |
| 701 | + <td style="">NON</td> | |
| 702 | + <td style="">ÉTÉ 2022</td> | |
| 703 | + <td style=""></td> | |
| 704 | + <td style="">Loué</td> | |
| 705 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 706 | + <td style=""></td> | |
| 707 | + </tr> | |
| 708 | + <tr id="table_5_row_2" | |
| 709 | + data-row-index="2"> | |
| 710 | + <td style="">3</td> | |
| 711 | + <td style="">104</td> | |
| 712 | + <td style="">B’</td> | |
| 713 | + <td style="">1</td> | |
| 714 | + <td style="">4 1/2</td> | |
| 715 | + <td style="">1200</td> | |
| 716 | + <td style="">NON</td> | |
| 717 | + <td style="">ÉTÉ 2022</td> | |
| 718 | + <td style=""></td> | |
| 719 | + <td style="">Loué</td> | |
| 720 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 721 | + <td style=""></td> | |
| 722 | + </tr> | |
| 723 | + <tr id="table_5_row_3" | |
| 724 | + data-row-index="3"> | |
| 725 | + <td style="">4</td> | |
| 726 | + <td style="">105</td> | |
| 727 | + <td style="">C</td> | |
| 728 | + <td style="">1</td> | |
| 729 | + <td style="">4 1/2</td> | |
| 730 | + <td style="">1280</td> | |
| 731 | + <td style="">NON</td> | |
| 732 | + <td style="">ÉTÉ 2022</td> | |
| 733 | + <td style=""></td> | |
| 734 | + <td style="">Loué</td> | |
| 735 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-C.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 736 | + <td style=""></td> | |
| 737 | + </tr> | |
| 738 | + <tr id="table_5_row_4" | |
| 739 | + data-row-index="4"> | |
| 740 | + <td style="">5</td> | |
| 741 | + <td style="">106</td> | |
| 742 | + <td style="">B</td> | |
| 743 | + <td style="">1</td> | |
| 744 | + <td style="">4 1/2</td> | |
| 745 | + <td style="">1200</td> | |
| 746 | + <td style="">NON</td> | |
| 747 | + <td style="">ÉTÉ 2022</td> | |
| 748 | + <td style=""></td> | |
| 749 | + <td style="">Loué</td> | |
| 750 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 751 | + <td style=""></td> | |
| 752 | + </tr> | |
| 753 | + <tr id="table_5_row_5" | |
| 754 | + data-row-index="5"> | |
| 755 | + <td style="">6</td> | |
| 756 | + <td style="">107</td> | |
| 757 | + <td style="">A’</td> | |
| 758 | + <td style="">1</td> | |
| 759 | + <td style="">4 1/2</td> | |
| 760 | + <td style="">1155</td> | |
| 761 | + <td style="">NON</td> | |
| 762 | + <td style="">ÉTÉ 2022</td> | |
| 763 | + <td style=""></td> | |
| 764 | + <td style="">Loué</td> | |
| 765 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 766 | + <td style=""></td> | |
| 767 | + </tr> | |
| 768 | + <tr id="table_5_row_6" | |
| 769 | + data-row-index="6"> | |
| 770 | + <td style="">7</td> | |
| 771 | + <td style="">108</td> | |
| 772 | + <td style="">A</td> | |
| 773 | + <td style="">1</td> | |
| 774 | + <td style="">4 1/2</td> | |
| 775 | + <td style="">1155</td> | |
| 776 | + <td style="">NON</td> | |
| 777 | + <td style="">ÉTÉ 2022</td> | |
| 778 | + <td style=""></td> | |
| 779 | + <td style="">Loué</td> | |
| 780 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 781 | + <td style=""></td> | |
| 782 | + </tr> | |
| 783 | + <tr id="table_5_row_7" | |
| 784 | + data-row-index="7"> | |
| 785 | + <td style="">8</td> | |
| 786 | + <td style="">201</td> | |
| 787 | + <td style="">F</td> | |
| 788 | + <td style="">2</td> | |
| 789 | + <td style="">4 1/2</td> | |
| 790 | + <td style="">1200</td> | |
| 791 | + <td style="">OUI</td> | |
| 792 | + <td style="">ÉTÉ 2022</td> | |
| 793 | + <td style=""></td> | |
| 794 | + <td style="">Loué</td> | |
| 795 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 796 | + <td style=""></td> | |
| 797 | + </tr> | |
| 798 | + <tr id="table_5_row_8" | |
| 799 | + data-row-index="8"> | |
| 800 | + <td style="">9</td> | |
| 801 | + <td style="">202</td> | |
| 802 | + <td style="">A’</td> | |
| 803 | + <td style="">2</td> | |
| 804 | + <td style="">4 1/2</td> | |
| 805 | + <td style="">1155</td> | |
| 806 | + <td style="">NON</td> | |
| 807 | + <td style="">ÉTÉ 2022</td> | |
| 808 | + <td style=""></td> | |
| 809 | + <td style="">Loué</td> | |
| 810 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 811 | + <td style=""></td> | |
| 812 | + </tr> | |
| 813 | + <tr id="table_5_row_9" | |
| 814 | + data-row-index="9"> | |
| 815 | + <td style="">10</td> | |
| 816 | + <td style="">203</td> | |
| 817 | + <td style="">E</td> | |
| 818 | + <td style="">2</td> | |
| 819 | + <td style="">3 1/2</td> | |
| 820 | + <td style="">880</td> | |
| 821 | + <td style="">NON</td> | |
| 822 | + <td style="">ÉTÉ 2022</td> | |
| 823 | + <td style=""></td> | |
| 824 | + <td style="">Loué</td> | |
| 825 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_E.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 826 | + <td style=""></td> | |
| 827 | + </tr> | |
| 828 | + <tr id="table_5_row_10" | |
| 829 | + data-row-index="10"> | |
| 830 | + <td style="">11</td> | |
| 831 | + <td style="">204</td> | |
| 832 | + <td style="">B’</td> | |
| 833 | + <td style="">2</td> | |
| 834 | + <td style="">4 1/2</td> | |
| 835 | + <td style="">1200</td> | |
| 836 | + <td style="">NON</td> | |
| 837 | + <td style="">ÉTÉ 2022</td> | |
| 838 | + <td style=""></td> | |
| 839 | + <td style="">Loué</td> | |
| 840 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 841 | + <td style=""></td> | |
| 842 | + </tr> | |
| 843 | + <tr id="table_5_row_11" | |
| 844 | + data-row-index="11"> | |
| 845 | + <td style="">12</td> | |
| 846 | + <td style="">205</td> | |
| 847 | + <td style="">D</td> | |
| 848 | + <td style="">2</td> | |
| 849 | + <td style="">3 1/2</td> | |
| 850 | + <td style="">860</td> | |
| 851 | + <td style="">NON</td> | |
| 852 | + <td style="">ÉTÉ 2022</td> | |
| 853 | + <td style=""></td> | |
| 854 | + <td style="">Loué</td> | |
| 855 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 856 | + <td style=""></td> | |
| 857 | + </tr> | |
| 858 | + <tr id="table_5_row_12" | |
| 859 | + data-row-index="12"> | |
| 860 | + <td style="">13</td> | |
| 861 | + <td style="">206</td> | |
| 862 | + <td style="">B</td> | |
| 863 | + <td style="">2</td> | |
| 864 | + <td style="">4 1/2</td> | |
| 865 | + <td style="">1200</td> | |
| 866 | + <td style="">NON</td> | |
| 867 | + <td style="">ÉTÉ 2022</td> | |
| 868 | + <td style=""></td> | |
| 869 | + <td style="">Loué</td> | |
| 870 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 871 | + <td style=""></td> | |
| 872 | + </tr> | |
| 873 | + <tr id="table_5_row_13" | |
| 874 | + data-row-index="13"> | |
| 875 | + <td style="">14</td> | |
| 876 | + <td style="">207</td> | |
| 877 | + <td style="">A’</td> | |
| 878 | + <td style="">2</td> | |
| 879 | + <td style="">4 1/2</td> | |
| 880 | + <td style="">1155</td> | |
| 881 | + <td style="">NON</td> | |
| 882 | + <td style="">ÉTÉ 2022</td> | |
| 883 | + <td style=""></td> | |
| 884 | + <td style="">Loué</td> | |
| 885 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 886 | + <td style=""></td> | |
| 887 | + </tr> | |
| 888 | + <tr id="table_5_row_14" | |
| 889 | + data-row-index="14"> | |
| 890 | + <td style="">15</td> | |
| 891 | + <td style="">208</td> | |
| 892 | + <td style="">A</td> | |
| 893 | + <td style="">2</td> | |
| 894 | + <td style="">4 1/2</td> | |
| 895 | + <td style="">1155</td> | |
| 896 | + <td style="">NON</td> | |
| 897 | + <td style="">ÉTÉ 2022</td> | |
| 898 | + <td style=""></td> | |
| 899 | + <td style="">Loué</td> | |
| 900 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 901 | + <td style=""></td> | |
| 902 | + </tr> | |
| 903 | + <tr id="table_5_row_15" | |
| 904 | + data-row-index="15"> | |
| 905 | + <td style="">16</td> | |
| 906 | + <td style="">301</td> | |
| 907 | + <td style="">F</td> | |
| 908 | + <td style="">3</td> | |
| 909 | + <td style="">4 1/2</td> | |
| 910 | + <td style="">1200</td> | |
| 911 | + <td style="">OUI</td> | |
| 912 | + <td style="">ÉTÉ 2026</td> | |
| 913 | + <td style=""></td> | |
| 914 | + <td style="">Loué</td> | |
| 915 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_F.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 916 | + <td style=""></td> | |
| 917 | + </tr> | |
| 918 | + <tr id="table_5_row_16" | |
| 919 | + data-row-index="16"> | |
| 920 | + <td style="">17</td> | |
| 921 | + <td style="">302</td> | |
| 922 | + <td style="">A’</td> | |
| 923 | + <td style="">3</td> | |
| 924 | + <td style="">4 1/2</td> | |
| 925 | + <td style="">1155</td> | |
| 926 | + <td style="">NON</td> | |
| 927 | + <td style="">ÉTÉ 2022</td> | |
| 928 | + <td style=""></td> | |
| 929 | + <td style="">Loué</td> | |
| 930 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 931 | + <td style=""></td> | |
| 932 | + </tr> | |
| 933 | + <tr id="table_5_row_17" | |
| 934 | + data-row-index="17"> | |
| 935 | + <td style="">18</td> | |
| 936 | + <td style="">303</td> | |
| 937 | + <td style="">E</td> | |
| 938 | + <td style="">3</td> | |
| 939 | + <td style="">3 1/2</td> | |
| 940 | + <td style="">880</td> | |
| 941 | + <td style="">NON</td> | |
| 942 | + <td style="">ÉTÉ 2022</td> | |
| 943 | + <td style=""></td> | |
| 944 | + <td style="">Loué</td> | |
| 945 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_E.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 946 | + <td style=""></td> | |
| 947 | + </tr> | |
| 948 | + <tr id="table_5_row_18" | |
| 949 | + data-row-index="18"> | |
| 950 | + <td style="">19</td> | |
| 951 | + <td style="">304</td> | |
| 952 | + <td style="">B’</td> | |
| 953 | + <td style="">3</td> | |
| 954 | + <td style="">4 1/2</td> | |
| 955 | + <td style="">1200</td> | |
| 956 | + <td style="">NON</td> | |
| 957 | + <td style="">ÉTÉ 2022</td> | |
| 958 | + <td style=""></td> | |
| 959 | + <td style="">Loué</td> | |
| 960 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 961 | + <td style=""></td> | |
| 962 | + </tr> | |
| 963 | + <tr id="table_5_row_19" | |
| 964 | + data-row-index="19"> | |
| 965 | + <td style="">20</td> | |
| 966 | + <td style="">305</td> | |
| 967 | + <td style="">D</td> | |
| 968 | + <td style="">3</td> | |
| 969 | + <td style="">3 1/2</td> | |
| 970 | + <td style="">860</td> | |
| 971 | + <td style="">NON</td> | |
| 972 | + <td style="">ÉTÉ 2022</td> | |
| 973 | + <td style=""></td> | |
| 974 | + <td style="">Loué</td> | |
| 975 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 976 | + <td style=""></td> | |
| 977 | + </tr> | |
| 978 | + <tr id="table_5_row_20" | |
| 979 | + data-row-index="20"> | |
| 980 | + <td style="">21</td> | |
| 981 | + <td style="">306</td> | |
| 982 | + <td style="">B</td> | |
| 983 | + <td style="">3</td> | |
| 984 | + <td style="">4 1/2</td> | |
| 985 | + <td style="">1200</td> | |
| 986 | + <td style="">NON</td> | |
| 987 | + <td style="">ÉTÉ 2022</td> | |
| 988 | + <td style=""></td> | |
| 989 | + <td style="">Loué</td> | |
| 990 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 991 | + <td style=""></td> | |
| 992 | + </tr> | |
| 993 | + <tr id="table_5_row_21" | |
| 994 | + data-row-index="21"> | |
| 995 | + <td style="">22</td> | |
| 996 | + <td style="">307</td> | |
| 997 | + <td style="">A’</td> | |
| 998 | + <td style="">3</td> | |
| 999 | + <td style="">4 1/2</td> | |
| 1000 | + <td style="">1155</td> | |
| 1001 | + <td style="">NON</td> | |
| 1002 | + <td style="">ÉTÉ 2022</td> | |
| 1003 | + <td style=""></td> | |
| 1004 | + <td style="">Loué</td> | |
| 1005 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1006 | + <td style=""></td> | |
| 1007 | + </tr> | |
| 1008 | + <tr id="table_5_row_22" | |
| 1009 | + data-row-index="22"> | |
| 1010 | + <td style="">23</td> | |
| 1011 | + <td style="">308</td> | |
| 1012 | + <td style="">A</td> | |
| 1013 | + <td style="">3</td> | |
| 1014 | + <td style="">4 1/2</td> | |
| 1015 | + <td style="">1155</td> | |
| 1016 | + <td style="">NON</td> | |
| 1017 | + <td style="">ÉTÉ 2022</td> | |
| 1018 | + <td style=""></td> | |
| 1019 | + <td style="">Loué</td> | |
| 1020 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1021 | + <td style=""></td> | |
| 1022 | + </tr> | |
| 1023 | + <tr id="table_5_row_23" | |
| 1024 | + data-row-index="23"> | |
| 1025 | + <td style="">24</td> | |
| 1026 | + <td style="">401</td> | |
| 1027 | + <td style="">F</td> | |
| 1028 | + <td style="">4</td> | |
| 1029 | + <td style="">4 1/2</td> | |
| 1030 | + <td style="">1200</td> | |
| 1031 | + <td style="">OUI</td> | |
| 1032 | + <td style="">ÉTÉ 2022</td> | |
| 1033 | + <td style=""></td> | |
| 1034 | + <td style="">Loué</td> | |
| 1035 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1036 | + <td style=""></td> | |
| 1037 | + </tr> | |
| 1038 | + <tr id="table_5_row_24" | |
| 1039 | + data-row-index="24"> | |
| 1040 | + <td style="">25</td> | |
| 1041 | + <td style="">402</td> | |
| 1042 | + <td style="">A’</td> | |
| 1043 | + <td style="">4</td> | |
| 1044 | + <td style="">4 1/2</td> | |
| 1045 | + <td style="">1155</td> | |
| 1046 | + <td style="">NON</td> | |
| 1047 | + <td style="">ÉTÉ 2022</td> | |
| 1048 | + <td style=""></td> | |
| 1049 | + <td style="">Loué</td> | |
| 1050 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1051 | + <td style=""></td> | |
| 1052 | + </tr> | |
| 1053 | + <tr id="table_5_row_25" | |
| 1054 | + data-row-index="25"> | |
| 1055 | + <td style="">26</td> | |
| 1056 | + <td style="">403</td> | |
| 1057 | + <td style="">E</td> | |
| 1058 | + <td style="">4</td> | |
| 1059 | + <td style="">3 1/2</td> | |
| 1060 | + <td style="">880</td> | |
| 1061 | + <td style="">NON</td> | |
| 1062 | + <td style="">ÉTÉ 2022</td> | |
| 1063 | + <td style=""></td> | |
| 1064 | + <td style="">Loué</td> | |
| 1065 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_E.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1066 | + <td style=""></td> | |
| 1067 | + </tr> | |
| 1068 | + <tr id="table_5_row_26" | |
| 1069 | + data-row-index="26"> | |
| 1070 | + <td style="">27</td> | |
| 1071 | + <td style="">404</td> | |
| 1072 | + <td style="">B’</td> | |
| 1073 | + <td style="">4</td> | |
| 1074 | + <td style="">4 1/2</td> | |
| 1075 | + <td style="">1200</td> | |
| 1076 | + <td style="">NON</td> | |
| 1077 | + <td style="">ÉTÉ 2022</td> | |
| 1078 | + <td style=""></td> | |
| 1079 | + <td style="">Loué</td> | |
| 1080 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1081 | + <td style=""></td> | |
| 1082 | + </tr> | |
| 1083 | + <tr id="table_5_row_27" | |
| 1084 | + data-row-index="27"> | |
| 1085 | + <td style="">28</td> | |
| 1086 | + <td style="">405</td> | |
| 1087 | + <td style="">D</td> | |
| 1088 | + <td style="">4</td> | |
| 1089 | + <td style="">3 1/2</td> | |
| 1090 | + <td style="">860</td> | |
| 1091 | + <td style="">NON</td> | |
| 1092 | + <td style="">ÉTÉ 2022</td> | |
| 1093 | + <td style=""></td> | |
| 1094 | + <td style="">Loué</td> | |
| 1095 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1096 | + <td style=""></td> | |
| 1097 | + </tr> | |
| 1098 | + <tr id="table_5_row_28" | |
| 1099 | + data-row-index="28"> | |
| 1100 | + <td style="">29</td> | |
| 1101 | + <td style="">406</td> | |
| 1102 | + <td style="">B</td> | |
| 1103 | + <td style="">4</td> | |
| 1104 | + <td style="">4 1/2</td> | |
| 1105 | + <td style="">1200</td> | |
| 1106 | + <td style="">NON</td> | |
| 1107 | + <td style="">ÉTÉ 2022</td> | |
| 1108 | + <td style=""></td> | |
| 1109 | + <td style="">Loué</td> | |
| 1110 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1111 | + <td style=""></td> | |
| 1112 | + </tr> | |
| 1113 | + <tr id="table_5_row_29" | |
| 1114 | + data-row-index="29"> | |
| 1115 | + <td style="">30</td> | |
| 1116 | + <td style="">407</td> | |
| 1117 | + <td style="">A’</td> | |
| 1118 | + <td style="">4</td> | |
| 1119 | + <td style="">4 1/2</td> | |
| 1120 | + <td style="">1155</td> | |
| 1121 | + <td style="">NON</td> | |
| 1122 | + <td style="">ÉTÉ 2022</td> | |
| 1123 | + <td style=""></td> | |
| 1124 | + <td style="">Loué</td> | |
| 1125 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1126 | + <td style=""></td> | |
| 1127 | + </tr> | |
| 1128 | + <tr id="table_5_row_30" | |
| 1129 | + data-row-index="30"> | |
| 1130 | + <td style="">31</td> | |
| 1131 | + <td style="">408</td> | |
| 1132 | + <td style="">A</td> | |
| 1133 | + <td style="">4</td> | |
| 1134 | + <td style="">4 1/2</td> | |
| 1135 | + <td style="">1155</td> | |
| 1136 | + <td style="">NON</td> | |
| 1137 | + <td style="">ÉTÉ 2022</td> | |
| 1138 | + <td style=""></td> | |
| 1139 | + <td style="">Loué</td> | |
| 1140 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1141 | + <td style=""></td> | |
| 1142 | + </tr> | |
| 1143 | + <tr id="table_5_row_31" | |
| 1144 | + data-row-index="31"> | |
| 1145 | + <td style="">32</td> | |
| 1146 | + <td style="">501</td> | |
| 1147 | + <td style="">F</td> | |
| 1148 | + <td style="">5</td> | |
| 1149 | + <td style="">4 1/2</td> | |
| 1150 | + <td style="">1200</td> | |
| 1151 | + <td style="">OUI</td> | |
| 1152 | + <td style="">ÉTÉ 2022</td> | |
| 1153 | + <td style=""></td> | |
| 1154 | + <td style="">Loué</td> | |
| 1155 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1156 | + <td style=""></td> | |
| 1157 | + </tr> | |
| 1158 | + <tr id="table_5_row_32" | |
| 1159 | + data-row-index="32"> | |
| 1160 | + <td style="">33</td> | |
| 1161 | + <td style="">502</td> | |
| 1162 | + <td style="">A’</td> | |
| 1163 | + <td style="">5</td> | |
| 1164 | + <td style="">4 1/2</td> | |
| 1165 | + <td style="">1155</td> | |
| 1166 | + <td style="">NON</td> | |
| 1167 | + <td style="">ÉTÉ 2022</td> | |
| 1168 | + <td style=""></td> | |
| 1169 | + <td style="">Loué</td> | |
| 1170 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1171 | + <td style=""></td> | |
| 1172 | + </tr> | |
| 1173 | + <tr id="table_5_row_33" | |
| 1174 | + data-row-index="33"> | |
| 1175 | + <td style="">34</td> | |
| 1176 | + <td style="">503</td> | |
| 1177 | + <td style="">E</td> | |
| 1178 | + <td style="">5</td> | |
| 1179 | + <td style="">3 1/2</td> | |
| 1180 | + <td style="">880</td> | |
| 1181 | + <td style="">NON</td> | |
| 1182 | + <td style="">ÉTÉ 2022</td> | |
| 1183 | + <td style=""></td> | |
| 1184 | + <td style="">Loué</td> | |
| 1185 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_E.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1186 | + <td style=""></td> | |
| 1187 | + </tr> | |
| 1188 | + <tr id="table_5_row_34" | |
| 1189 | + data-row-index="34"> | |
| 1190 | + <td style="">35</td> | |
| 1191 | + <td style="">504</td> | |
| 1192 | + <td style="">B’</td> | |
| 1193 | + <td style="">5</td> | |
| 1194 | + <td style="">4 1/2</td> | |
| 1195 | + <td style="">1200</td> | |
| 1196 | + <td style="">NON</td> | |
| 1197 | + <td style="">ÉTÉ 2022</td> | |
| 1198 | + <td style=""></td> | |
| 1199 | + <td style="">Loué</td> | |
| 1200 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1201 | + <td style=""></td> | |
| 1202 | + </tr> | |
| 1203 | + <tr id="table_5_row_35" | |
| 1204 | + data-row-index="35"> | |
| 1205 | + <td style="">36</td> | |
| 1206 | + <td style="">505</td> | |
| 1207 | + <td style="">D</td> | |
| 1208 | + <td style="">5</td> | |
| 1209 | + <td style="">3 1/2</td> | |
| 1210 | + <td style="">860</td> | |
| 1211 | + <td style="">NON</td> | |
| 1212 | + <td style="">ÉTÉ 2022</td> | |
| 1213 | + <td style=""></td> | |
| 1214 | + <td style="">Loué</td> | |
| 1215 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1216 | + <td style=""></td> | |
| 1217 | + </tr> | |
| 1218 | + <tr id="table_5_row_36" | |
| 1219 | + data-row-index="36"> | |
| 1220 | + <td style="">37</td> | |
| 1221 | + <td style="">506</td> | |
| 1222 | + <td style="">B</td> | |
| 1223 | + <td style="">5</td> | |
| 1224 | + <td style="">4 1/2</td> | |
| 1225 | + <td style="">1200</td> | |
| 1226 | + <td style="">NON</td> | |
| 1227 | + <td style="">ÉTÉ 2022</td> | |
| 1228 | + <td style=""></td> | |
| 1229 | + <td style="">Loué</td> | |
| 1230 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1231 | + <td style=""></td> | |
| 1232 | + </tr> | |
| 1233 | + <tr id="table_5_row_37" | |
| 1234 | + data-row-index="37"> | |
| 1235 | + <td style="">38</td> | |
| 1236 | + <td style="">507</td> | |
| 1237 | + <td style="">A’</td> | |
| 1238 | + <td style="">5</td> | |
| 1239 | + <td style="">4 1/2</td> | |
| 1240 | + <td style="">1155</td> | |
| 1241 | + <td style="">NON</td> | |
| 1242 | + <td style="">ÉTÉ 2022</td> | |
| 1243 | + <td style=""></td> | |
| 1244 | + <td style="">Loué</td> | |
| 1245 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1246 | + <td style=""></td> | |
| 1247 | + </tr> | |
| 1248 | + <tr id="table_5_row_38" | |
| 1249 | + data-row-index="38"> | |
| 1250 | + <td style="">39</td> | |
| 1251 | + <td style="">508</td> | |
| 1252 | + <td style="">A</td> | |
| 1253 | + <td style="">5</td> | |
| 1254 | + <td style="">4 1/2</td> | |
| 1255 | + <td style="">1155</td> | |
| 1256 | + <td style="">NON</td> | |
| 1257 | + <td style="">ÉTÉ 2022</td> | |
| 1258 | + <td style=""></td> | |
| 1259 | + <td style="">Loué</td> | |
| 1260 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1261 | + <td style=""></td> | |
| 1262 | + </tr> | |
| 1263 | + <tr id="table_5_row_39" | |
| 1264 | + data-row-index="39"> | |
| 1265 | + <td style="">40</td> | |
| 1266 | + <td style="">601</td> | |
| 1267 | + <td style="">A</td> | |
| 1268 | + <td style="">6</td> | |
| 1269 | + <td style="">4 1/2</td> | |
| 1270 | + <td style="">1155</td> | |
| 1271 | + <td style="">NON</td> | |
| 1272 | + <td style="">ÉTÉ 2022</td> | |
| 1273 | + <td style=""></td> | |
| 1274 | + <td style="">Loué</td> | |
| 1275 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1276 | + <td style=""></td> | |
| 1277 | + </tr> | |
| 1278 | + <tr id="table_5_row_40" | |
| 1279 | + data-row-index="40"> | |
| 1280 | + <td style="">41</td> | |
| 1281 | + <td style="">602</td> | |
| 1282 | + <td style="">A’</td> | |
| 1283 | + <td style="">6</td> | |
| 1284 | + <td style="">4 1/2</td> | |
| 1285 | + <td style="">1155</td> | |
| 1286 | + <td style="">NON</td> | |
| 1287 | + <td style="">ÉTÉ 2022</td> | |
| 1288 | + <td style=""></td> | |
| 1289 | + <td style="">Loué</td> | |
| 1290 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1291 | + <td style=""></td> | |
| 1292 | + </tr> | |
| 1293 | + <tr id="table_5_row_41" | |
| 1294 | + data-row-index="41"> | |
| 1295 | + <td style="">42</td> | |
| 1296 | + <td style="">603</td> | |
| 1297 | + <td style="">E</td> | |
| 1298 | + <td style="">6</td> | |
| 1299 | + <td style="">3 1/2</td> | |
| 1300 | + <td style="">800</td> | |
| 1301 | + <td style="">NON</td> | |
| 1302 | + <td style="">ÉTÉ 2022</td> | |
| 1303 | + <td style=""></td> | |
| 1304 | + <td style="">Loué</td> | |
| 1305 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_E.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1306 | + <td style=""></td> | |
| 1307 | + </tr> | |
| 1308 | + <tr id="table_5_row_42" | |
| 1309 | + data-row-index="42"> | |
| 1310 | + <td style="">43</td> | |
| 1311 | + <td style="">604</td> | |
| 1312 | + <td style="">B’</td> | |
| 1313 | + <td style="">6</td> | |
| 1314 | + <td style="">4 1/2</td> | |
| 1315 | + <td style="">1200</td> | |
| 1316 | + <td style="">NON</td> | |
| 1317 | + <td style="">ÉTÉ 2022</td> | |
| 1318 | + <td style=""></td> | |
| 1319 | + <td style="">Loué</td> | |
| 1320 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1321 | + <td style=""></td> | |
| 1322 | + </tr> | |
| 1323 | + <tr id="table_5_row_43" | |
| 1324 | + data-row-index="43"> | |
| 1325 | + <td style="">44</td> | |
| 1326 | + <td style="">605</td> | |
| 1327 | + <td style="">D</td> | |
| 1328 | + <td style="">6</td> | |
| 1329 | + <td style="">3 1/2</td> | |
| 1330 | + <td style="">860</td> | |
| 1331 | + <td style="">NON</td> | |
| 1332 | + <td style="">ÉTÉ 2022</td> | |
| 1333 | + <td style=""></td> | |
| 1334 | + <td style="">Loué</td> | |
| 1335 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/11/Plans_8.5x14_Web_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1336 | + <td style=""></td> | |
| 1337 | + </tr> | |
| 1338 | + <tr id="table_5_row_44" | |
| 1339 | + data-row-index="44"> | |
| 1340 | + <td style="">45</td> | |
| 1341 | + <td style="">606</td> | |
| 1342 | + <td style="">B</td> | |
| 1343 | + <td style="">6</td> | |
| 1344 | + <td style="">4 1/2</td> | |
| 1345 | + <td style="">1200</td> | |
| 1346 | + <td style="">NON</td> | |
| 1347 | + <td style="">ÉTÉ 2022</td> | |
| 1348 | + <td style=""></td> | |
| 1349 | + <td style="">Loué</td> | |
| 1350 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-B.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1351 | + <td style=""></td> | |
| 1352 | + </tr> | |
| 1353 | + <tr id="table_5_row_45" | |
| 1354 | + data-row-index="45"> | |
| 1355 | + <td style="">46</td> | |
| 1356 | + <td style="">607</td> | |
| 1357 | + <td style="">A’</td> | |
| 1358 | + <td style="">6</td> | |
| 1359 | + <td style="">4 1/2</td> | |
| 1360 | + <td style="">1155</td> | |
| 1361 | + <td style="">NON</td> | |
| 1362 | + <td style="">ÉTÉ 2022</td> | |
| 1363 | + <td style=""></td> | |
| 1364 | + <td style="">Loué</td> | |
| 1365 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1366 | + <td style=""></td> | |
| 1367 | + </tr> | |
| 1368 | + <tr id="table_5_row_46" | |
| 1369 | + data-row-index="46"> | |
| 1370 | + <td style="">47</td> | |
| 1371 | + <td style="">608</td> | |
| 1372 | + <td style="">A</td> | |
| 1373 | + <td style="">6</td> | |
| 1374 | + <td style="">4 1/2</td> | |
| 1375 | + <td style="">1155</td> | |
| 1376 | + <td style="">NON</td> | |
| 1377 | + <td style="">ÉTÉ 2022</td> | |
| 1378 | + <td style=""></td> | |
| 1379 | + <td style="">Loué</td> | |
| 1380 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2021/06/Plans_8.5x14_Web_Model-A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1381 | + <td style=""></td> | |
| 1382 | + </tr> | |
| 1383 | + </tbody> <!-- /Table body --> | |
| 1384 | + | |
| 1385 | + <!-- Table footer --> | |
| 1386 | + | |
| 1387 | + <!-- /Table footer --> | |
| 1388 | + </table> | |
| 1389 | + | |
| 1390 | +</div><style> | |
| 1391 | +table.wpDataTable td.numdata { text-align: right !important; } | |
| 1392 | +</style> | |
| 1393 | +<style> | |
| 1394 | + /* th background color */ | |
| 1395 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1396 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1397 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th, | |
| 1398 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting { | |
| 1399 | + background-color: rgb(199,146,19) !important; | |
| 1400 | + background-image: none !important; | |
| 1401 | + } | |
| 1402 | + | |
| 1403 | + /* th font color */ | |
| 1404 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1405 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1406 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th { | |
| 1407 | + color: rgb(255,255,255) !important; | |
| 1408 | + } | |
| 1409 | + | |
| 1410 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting:after, | |
| 1411 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_asc:after { | |
| 1412 | + border-bottom-color: rgb(255,255,255) !important; | |
| 1413 | + } | |
| 1414 | + | |
| 1415 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_desc:after { | |
| 1416 | + border-top-color: rgb(255,255,255) !important; | |
| 1417 | + } | |
| 1418 | + | |
| 1419 | + | |
| 1420 | + | |
| 1421 | + </style> | |
| 1422 | +<style> | |
| 1423 | +</style> | |
| 1424 | +<style> | |
| 1425 | + | |
| 1426 | + | |
| 1427 | + | |
| 1428 | +</style> | |
| 1429 | +</p> </div> | |
| 1430 | + </div> | |
| 1431 | + </div> | |
| 1432 | + </div> | |
| 1433 | + </div> | |
| 1434 | + </section> | |
| 1435 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-5e7ea84 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5e7ea84" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1436 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1437 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4733821" data-id="4733821" data-element_type="column" data-e-type="column"> | |
| 1438 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1439 | + <div class="elementor-element elementor-element-a7428b7 elementor-widget elementor-widget-image" data-id="a7428b7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1440 | + <div class="elementor-widget-container"> | |
| 1441 | + <img decoding="async" width="300" height="100" src="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png" class="attachment-medium size-medium wp-image-9302" alt="Logo - Ferrovia - Condos à Mirabel" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png 300w, https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond.png 600w" sizes="(max-width: 300px) 100vw, 300px" /> </div> | |
| 1442 | + </div> | |
| 1443 | + </div> | |
| 1444 | + </div> | |
| 1445 | + </div> | |
| 1446 | + </section> | |
| 1447 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-2b11a4c elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="2b11a4c" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1448 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1449 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa9aaa2" data-id="fa9aaa2" data-element_type="column" data-e-type="column"> | |
| 1450 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1451 | + <div class="elementor-element elementor-element-09e147b elementor-widget elementor-widget-image" data-id="09e147b" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1452 | + <div class="elementor-widget-container"> | |
| 1453 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozntf5j754pgq7zoy0ctfm3cbslvwrty.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1454 | + </div> | |
| 1455 | + </div> | |
| 1456 | + </div> | |
| 1457 | + </div> | |
| 1458 | + </section> | |
| 1459 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-935342e elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="935342e" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1460 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1461 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-885169e" data-id="885169e" data-element_type="column" data-e-type="column"> | |
| 1462 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1463 | + <div class="elementor-element elementor-element-549f409 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="549f409" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1464 | + <div class="elementor-widget-container"> | |
| 1465 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1466 | + </div> | |
| 1467 | + </div> | |
| 1468 | + </div> | |
| 1469 | + </div> | |
| 1470 | + </section> | |
| 1471 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-90d4efe elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="90d4efe" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1472 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1473 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-62bcd1e" data-id="62bcd1e" data-element_type="column" data-e-type="column"> | |
| 1474 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1475 | + <div class="elementor-element elementor-element-d13a804 elementor-widget elementor-widget-image" data-id="d13a804" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1476 | + <div class="elementor-widget-container"> | |
| 1477 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1478 | + </div> | |
| 1479 | + </div> | |
| 1480 | + </div> | |
| 1481 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-680aabb" data-id="680aabb" data-element_type="column" data-e-type="column"> | |
| 1482 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1483 | + <div class="elementor-element elementor-element-8eae9a6 elementor-widget elementor-widget-image" data-id="8eae9a6" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1484 | + <div class="elementor-widget-container"> | |
| 1485 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozgg8wsfr7f6yx6r5rn5pp9lvezk1mfw.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1486 | + </div> | |
| 1487 | + </div> | |
| 1488 | + </div> | |
| 1489 | + </div> | |
| 1490 | + </section> | |
| 1491 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-09554f9 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="09554f9" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1492 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1493 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7f545ac" data-id="7f545ac" data-element_type="column" data-e-type="column"> | |
| 1494 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1495 | + <div class="elementor-element elementor-element-29933cb elementor-widget elementor-widget-text-editor" data-id="29933cb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 1496 | + <div class="elementor-widget-container"> | |
| 1497 | + <p><span style="color: #999999;"><a style="color: #999999;" href="https://www.ferroviamirabel.com/declaration-de-confidentialite/">Déclaration de confidentialité</a></span></p> </div> | |
| 1498 | + </div> | |
| 1499 | + </div> | |
| 1500 | + </div> | |
| 1501 | + </div> | |
| 1502 | + </section> | |
| 1503 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-d031e00 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d031e00" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1504 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1505 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-118bcd3" data-id="118bcd3" data-element_type="column" data-e-type="column"> | |
| 1506 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1507 | + <div class="elementor-element elementor-element-1b05f5b elementor-widget elementor-widget-text-editor" data-id="1b05f5b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 1508 | + <div class="elementor-widget-container"> | |
| 1509 | + <p style="text-align: center;"><span style="color: #a3a3a3;">Copyright © Ferrovia – Une réalisation de <span style="color: #ffffff;"><a style="color: #ffffff;" href="http://www.grohman.ca" target="_blank" rel="noopener nofollow">grohman.ca</a></span></span></p> </div> | |
| 1510 | + </div> | |
| 1511 | + </div> | |
| 1512 | + </div> | |
| 1513 | + </div> | |
| 1514 | + </section> | |
| 1515 | + </div> | |
| 1516 | + </div> | |
| 1517 | + <script type="speculationrules"> | |
| 1518 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/mihouse/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 1519 | +</script> | |
| 1520 | + | |
| 1521 | +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr --> | |
| 1522 | +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 bottom-right-view-preferences optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin"> | |
| 1523 | + <div class="cmplz-header"> | |
| 1524 | + <div class="cmplz-logo"></div> | |
| 1525 | + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement aux cookies</div> | |
| 1526 | + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermer la boîte de dialogue"> | |
| 1527 | + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg> | |
| 1528 | + </div> | |
| 1529 | + </div> | |
| 1530 | + | |
| 1531 | + <div class="cmplz-divider cmplz-divider-header"></div> | |
| 1532 | + <div class="cmplz-body"> | |
| 1533 | + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les cookies pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div> | |
| 1534 | + <!-- categories start --> | |
| 1535 | + <div class="cmplz-categories"> | |
| 1536 | + <details class="cmplz-category cmplz-functional" > | |
| 1537 | + <summary> | |
| 1538 | + <span class="cmplz-category-header"> | |
| 1539 | + <span class="cmplz-category-title">Fonctionnel</span> | |
| 1540 | + <span class='cmplz-always-active'> | |
| 1541 | + <span class="cmplz-banner-checkbox"> | |
| 1542 | + <input type="checkbox" | |
| 1543 | + id="cmplz-functional-optin" | |
| 1544 | + data-category="cmplz_functional" | |
| 1545 | + class="cmplz-consent-checkbox cmplz-functional" | |
| 1546 | + size="40" | |
| 1547 | + value="1"/> | |
| 1548 | + <label class="cmplz-label" for="cmplz-functional-optin"><span class="screen-reader-text">Fonctionnel</span></label> | |
| 1549 | + </span> | |
| 1550 | + Toujours activé </span> | |
| 1551 | + <span class="cmplz-icon cmplz-open"> | |
| 1552 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1553 | + </span> | |
| 1554 | + </span> | |
| 1555 | + </summary> | |
| 1556 | + <div class="cmplz-description"> | |
| 1557 | + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’internaute, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span> | |
| 1558 | + </div> | |
| 1559 | + </details> | |
| 1560 | + | |
| 1561 | + <details class="cmplz-category cmplz-preferences" > | |
| 1562 | + <summary> | |
| 1563 | + <span class="cmplz-category-header"> | |
| 1564 | + <span class="cmplz-category-title">Préférences</span> | |
| 1565 | + <span class="cmplz-banner-checkbox"> | |
| 1566 | + <input type="checkbox" | |
| 1567 | + id="cmplz-preferences-optin" | |
| 1568 | + data-category="cmplz_preferences" | |
| 1569 | + class="cmplz-consent-checkbox cmplz-preferences" | |
| 1570 | + size="40" | |
| 1571 | + value="1"/> | |
| 1572 | + <label class="cmplz-label" for="cmplz-preferences-optin"><span class="screen-reader-text">Préférences</span></label> | |
| 1573 | + </span> | |
| 1574 | + <span class="cmplz-icon cmplz-open"> | |
| 1575 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1576 | + </span> | |
| 1577 | + </span> | |
| 1578 | + </summary> | |
| 1579 | + <div class="cmplz-description"> | |
| 1580 | + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou la personne utilisant le service.</span> | |
| 1581 | + </div> | |
| 1582 | + </details> | |
| 1583 | + | |
| 1584 | + <details class="cmplz-category cmplz-statistics" > | |
| 1585 | + <summary> | |
| 1586 | + <span class="cmplz-category-header"> | |
| 1587 | + <span class="cmplz-category-title">Statistiques</span> | |
| 1588 | + <span class="cmplz-banner-checkbox"> | |
| 1589 | + <input type="checkbox" | |
| 1590 | + id="cmplz-statistics-optin" | |
| 1591 | + data-category="cmplz_statistics" | |
| 1592 | + class="cmplz-consent-checkbox cmplz-statistics" | |
| 1593 | + size="40" | |
| 1594 | + value="1"/> | |
| 1595 | + <label class="cmplz-label" for="cmplz-statistics-optin"><span class="screen-reader-text">Statistiques</span></label> | |
| 1596 | + </span> | |
| 1597 | + <span class="cmplz-icon cmplz-open"> | |
| 1598 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1599 | + </span> | |
| 1600 | + </span> | |
| 1601 | + </summary> | |
| 1602 | + <div class="cmplz-description"> | |
| 1603 | + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span> | |
| 1604 | + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span> | |
| 1605 | + </div> | |
| 1606 | + </details> | |
| 1607 | + <details class="cmplz-category cmplz-marketing" > | |
| 1608 | + <summary> | |
| 1609 | + <span class="cmplz-category-header"> | |
| 1610 | + <span class="cmplz-category-title">Marketing</span> | |
| 1611 | + <span class="cmplz-banner-checkbox"> | |
| 1612 | + <input type="checkbox" | |
| 1613 | + id="cmplz-marketing-optin" | |
| 1614 | + data-category="cmplz_marketing" | |
| 1615 | + class="cmplz-consent-checkbox cmplz-marketing" | |
| 1616 | + size="40" | |
| 1617 | + value="1"/> | |
| 1618 | + <label class="cmplz-label" for="cmplz-marketing-optin"><span class="screen-reader-text">Marketing</span></label> | |
| 1619 | + </span> | |
| 1620 | + <span class="cmplz-icon cmplz-open"> | |
| 1621 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1622 | + </span> | |
| 1623 | + </span> | |
| 1624 | + </summary> | |
| 1625 | + <div class="cmplz-description"> | |
| 1626 | + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’internautes afin d’envoyer des publicités, ou pour suivre l’internaute sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span> | |
| 1627 | + </div> | |
| 1628 | + </details> | |
| 1629 | + </div><!-- categories end --> | |
| 1630 | + </div> | |
| 1631 | + | |
| 1632 | + <div class="cmplz-links cmplz-information"> | |
| 1633 | + <ul> | |
| 1634 | + <li><a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a></li> | |
| 1635 | + <li><a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a></li> | |
| 1636 | + <li><a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a></li> | |
| 1637 | + <li><a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/" aria-label="En savoir plus sur les finalités de TCF de la base de données de cookies">En savoir plus sur ces finalités</a></li> | |
| 1638 | + </ul> | |
| 1639 | + </div> | |
| 1640 | + | |
| 1641 | + <div class="cmplz-divider cmplz-footer"></div> | |
| 1642 | + | |
| 1643 | + <div class="cmplz-buttons"> | |
| 1644 | + <button class="cmplz-btn cmplz-accept">Accepter</button> | |
| 1645 | + <button class="cmplz-btn cmplz-deny">Refuser</button> | |
| 1646 | + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button> | |
| 1647 | + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button> | |
| 1648 | + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a> | |
| 1649 | + </div> | |
| 1650 | + | |
| 1651 | + | |
| 1652 | + <div class="cmplz-documents cmplz-links"> | |
| 1653 | + <ul> | |
| 1654 | + <li><a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1655 | + <li><a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1656 | + <li><a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a></li> | |
| 1657 | + </ul> | |
| 1658 | + </div> | |
| 1659 | +</div> | |
| 1660 | +</div> | |
| 1661 | + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button> | |
| 1662 | + | |
| 1663 | +</div> <script> | |
| 1664 | + ( () => { | |
| 1665 | + const lazyloadRunObserver = () => { | |
| 1666 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 1667 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 1668 | + entries.forEach( ( entry ) => { | |
| 1669 | + if ( entry.isIntersecting ) { | |
| 1670 | + let lazyloadBackground = entry.target; | |
| 1671 | + if( lazyloadBackground ) { | |
| 1672 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 1673 | + } | |
| 1674 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 1675 | + } | |
| 1676 | + }); | |
| 1677 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 1678 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 1679 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 1680 | + } ); | |
| 1681 | + }; | |
| 1682 | + const events = [ | |
| 1683 | + 'DOMContentLoaded', | |
| 1684 | + 'elementor/lazyload/observe', | |
| 1685 | + ]; | |
| 1686 | + events.forEach( ( event ) => { | |
| 1687 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 1688 | + } ); | |
| 1689 | + } )(); | |
| 1690 | + </script> | |
| 1691 | + | |
| 1692 | +<!-- .wpdt-c --> | |
| 1693 | +<div class="wpdt-c"> | |
| 1694 | + <!-- .wdt-frontend-modal --> | |
| 1695 | + <div id="wdt-frontend-modal" class="modal fade wdt-frontend-modal" style="display: none" data-backdrop="static" | |
| 1696 | + data-keyboard="false" tabindex="-1" role="dialog" aria-hidden="true" aria-modal="true"> | |
| 1697 | + | |
| 1698 | + <!-- .modal-dialog --> | |
| 1699 | + <div class="modal-dialog"> | |
| 1700 | + | |
| 1701 | + <!-- Preloader --> | |
| 1702 | + | |
| 1703 | +<div class="overlayed wdt-preload-layer"> | |
| 1704 | + <div class="preloader pl-lg"> | |
| 1705 | + <svg class="pl-circular" viewBox="25 25 50 50"> | |
| 1706 | + <circle class="plc-path" cx="50" cy="50" r="20"></circle> | |
| 1707 | + </svg> | |
| 1708 | + </div> | |
| 1709 | +</div> <!-- /Preloader --> | |
| 1710 | + | |
| 1711 | + <!-- .modal-content --> | |
| 1712 | + <div class="modal-content"> | |
| 1713 | + | |
| 1714 | + <!-- .modal-header --> | |
| 1715 | + <div class="modal-header"> | |
| 1716 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1717 | + aria-hidden="true">×</span></button> | |
| 1718 | + <h4 class="modal-title">Titre dynamique pour les modales</h4> | |
| 1719 | + </div> | |
| 1720 | + <!--/ .modal-header --> | |
| 1721 | + | |
| 1722 | + <!-- .modal-body --> | |
| 1723 | + <div class="modal-body"> | |
| 1724 | + </div> | |
| 1725 | + <!--/ .modal-body --> | |
| 1726 | + | |
| 1727 | + <!-- .modal-footer --> | |
| 1728 | + <div class="modal-footer"> | |
| 1729 | + </div> | |
| 1730 | + <!--/ .modal-footer --> | |
| 1731 | + </div> | |
| 1732 | + <!--/ .modal-content --> | |
| 1733 | + </div> | |
| 1734 | + <!--/ .modal-dialog --> | |
| 1735 | + </div> | |
| 1736 | + <!--/ .wdt-frontend-modal --> | |
| 1737 | +</div> | |
| 1738 | +<!--/ .wpdt-c --> | |
| 1739 | +<!-- .wpdt-c --> | |
| 1740 | +<div class="wpdt-c"> | |
| 1741 | + <!-- #wdt-delete-modal --> | |
| 1742 | + <div class="modal fade in" id="wdt-delete-modal" style="display: none" data-backdrop="static" data-keyboard="false" | |
| 1743 | + tabindex="-1" role="dialog" aria-hidden="true"> | |
| 1744 | + | |
| 1745 | + <!-- .modal-dialog --> | |
| 1746 | + <div class="modal-dialog"> | |
| 1747 | + | |
| 1748 | + <!-- .modal-content --> | |
| 1749 | + <div class="modal-content"> | |
| 1750 | + | |
| 1751 | + <!-- .modal-header --> | |
| 1752 | + <div class="modal-header"> | |
| 1753 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1754 | + aria-hidden="true"> <i class="wpdt-icon-times-full"></i></span></button> | |
| 1755 | + <h4 class="modal-title">Êtes-vous sûr?</h4> | |
| 1756 | + </div> | |
| 1757 | + <!--/ .modal-header --> | |
| 1758 | + | |
| 1759 | + <!-- .modal-body --> | |
| 1760 | + <div class="modal-body"> | |
| 1761 | + <!-- .row --> | |
| 1762 | + <div class="row"> | |
| 1763 | + <div class="col-sm-12"> | |
| 1764 | + <small>S’il vous plaît confirmer la suppression. Il n’y a pas d’annulation de changement!</small> | |
| 1765 | + </div> | |
| 1766 | + </div> | |
| 1767 | + <!--/ .row --> | |
| 1768 | + </div> | |
| 1769 | + <!--/ .modal-body --> | |
| 1770 | + | |
| 1771 | + <!-- .modal-footer --> | |
| 1772 | + <div class="modal-footer"> | |
| 1773 | + <hr> | |
| 1774 | + <button type="button" class="btn btn-icon-text wdt-cancel-delete-button" data-dismiss="modal"> | |
| 1775 | + Annuler</button> | |
| 1776 | + <button type="button" class="btn btn-danger btn-icon-text wdt-browse-delete-button" | |
| 1777 | + id="wdt-browse-delete-button"><i | |
| 1778 | + class="wpdt-icon-trash"></i> Effacer</button> | |
| 1779 | + </div> | |
| 1780 | + <!--/ .modal-footer --> | |
| 1781 | + </div> | |
| 1782 | + <!--/ .modal-content --> | |
| 1783 | + </div> | |
| 1784 | + <!--/ .modal-dialog --> | |
| 1785 | + </div> | |
| 1786 | + <!--/ #wdt-delete-modal --> | |
| 1787 | +</div> | |
| 1788 | +<!--/ .wpdt-c --><link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-inter-google-fonts-css' data-href='https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap&ver=7.3.3' media='all' /> | |
| 1789 | +<link rel='stylesheet' id='wdt-bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/wpdatatables-bootstrap.css?ver=7.3.3' media='all' /> | |
| 1790 | +<link rel='stylesheet' id='wdt-bootstrap-select-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-select/bootstrap-select.min.css?ver=7.3.3' media='all' /> | |
| 1791 | +<link rel='stylesheet' id='wdt-animate-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/animate/animate.min.css?ver=7.3.3' media='all' /> | |
| 1792 | +<link rel='stylesheet' id='wdt-uikit-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/uikit/uikit.css?ver=7.3.3' media='all' /> | |
| 1793 | +<link rel='stylesheet' id='wdt-bootstrap-tagsinput-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.css?ver=7.3.3' media='all' /> | |
| 1794 | +<link rel='stylesheet' id='wdt-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1795 | +<link rel='stylesheet' id='wdt-bootstrap-nouislider-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.css?ver=7.3.3' media='all' /> | |
| 1796 | +<link rel='stylesheet' id='wdt-wp-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/wdt-bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1797 | +<link rel='stylesheet' id='wdt-bootstrap-colorpicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.css?ver=7.3.3' media='all' /> | |
| 1798 | +<link rel='stylesheet' id='wdt-wpdt-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/style.min.css?ver=7.3.3' media='all' /> | |
| 1799 | +<link rel='stylesheet' id='wdt-wpdatatables-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt.frontend-starter.min.css?ver=7.3.3' media='all' /> | |
| 1800 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-roboto-google-fonts-css' data-href='https://fonts.googleapis.com/css?family=Roboto:wght@400;500&display=swap&ver=7.3.3' media='all' /> | |
| 1801 | +<link rel='stylesheet' id='wdt-skin-light-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt-skins/light.css?ver=7.3.3' media='all' /> | |
| 1802 | +<link rel='stylesheet' id='dashicons-css' href='https://www.ferroviamirabel.com/wp-includes/css/dashicons.min.css?ver=7.0.3' media='all' /> | |
| 1803 | +<script id="bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/bootstrap.min.js"></script> | |
| 1804 | +<script id="mmenu-all-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.mmenu.all.min.js"></script> | |
| 1805 | +<script id="slick-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/slick.min.js"></script> | |
| 1806 | +<script id="instafeed-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/instafeed.min.js"></script> | |
| 1807 | +<script id="countdown-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.countdown.min.js"></script> | |
| 1808 | +<script id="fancybox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.fancybox.min.js"></script> | |
| 1809 | +<script id="elevatezoom-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.elevatezoom.js"></script> | |
| 1810 | +<script id="swipebox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.swipebox.min.js"></script> | |
| 1811 | +<script id="sticky-kit-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.sticky-kit.min.js"></script> | |
| 1812 | +<script id="wc-quantity-increment-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/wc-quantity-increment.min.js"></script> | |
| 1813 | +<script id="isotopes-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/isotopes.js"></script> | |
| 1814 | +<script id="jquery-cookie-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.cookie.min.js"></script> | |
| 1815 | +<script id="mihouse-newsletter-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/newsletter.js"></script> | |
| 1816 | +<script id="mihouse-script-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/functions.js"></script> | |
| 1817 | +<script id="mihouse-portfolio-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/portfolio.js"></script> | |
| 1818 | +<script id="elementor-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.2"></script> | |
| 1819 | +<script id="elementor-frontend-modules-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.2"></script> | |
| 1820 | +<script id="jquery-ui-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script> | |
| 1821 | +<script id="elementor-frontend-js-before"> | |
| 1822 | +var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.2","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_panel_promotions":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b687f3bd9b","atomicFormsSendForm":"33e1d8a0c3"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":10048,"title":"Disponibilit%C3%A9s%20%7C%20Prix%20%26%20Plans%20%7C%20Phase%201%20%7C%20Condos%20%C3%A0%20louer%20%C3%A0%20Mirabel%20%7C%20Ferrovia","excerpt":"","featuredImage":false}}; | |
| 1823 | +//# sourceURL=elementor-frontend-js-before | |
| 1824 | +</script> | |
| 1825 | +<script id="elementor-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.2"></script> | |
| 1826 | +<script id="smartmenus-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script> | |
| 1827 | +<script id="e-sticky-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.34.0"></script> | |
| 1828 | +<script id="cmplz-cookiebanner-js-extra"> | |
| 1829 | +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"21","version":"7.4.4.2","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://www.ferroviamirabel.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"16","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les cookies {category} et activer ce contenu","css_file":"https://www.ferroviamirabel.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=21","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https://www.ferroviamirabel.com/accueil/politique-de-cookies-ca/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les cookies {category} et activer ce contenu"}; | |
| 1830 | +//# sourceURL=cmplz-cookiebanner-js-extra | |
| 1831 | +</script> | |
| 1832 | +<script defer id="cmplz-cookiebanner-js" src="https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1769530458"></script> | |
| 1833 | +<script id="cmplz-cookiebanner-js-after"> | |
| 1834 | + if ('undefined' != typeof window.jQuery) { | |
| 1835 | + jQuery(document).ready(function ($) { | |
| 1836 | + $(document).on('elementor/popup/show', () => { | |
| 1837 | + let rev_cats = cmplz_categories.reverse(); | |
| 1838 | + for (let key in rev_cats) { | |
| 1839 | + if (rev_cats.hasOwnProperty(key)) { | |
| 1840 | + let category = cmplz_categories[key]; | |
| 1841 | + if (cmplz_has_consent(category)) { | |
| 1842 | + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { | |
| 1843 | + cmplz_remove_placeholder(obj); | |
| 1844 | + }); | |
| 1845 | + } | |
| 1846 | + } | |
| 1847 | + } | |
| 1848 | + | |
| 1849 | + let services = cmplz_get_services_on_page(); | |
| 1850 | + for (let key in services) { | |
| 1851 | + if (services.hasOwnProperty(key)) { | |
| 1852 | + let service = services[key].service; | |
| 1853 | + let category = services[key].category; | |
| 1854 | + if (cmplz_has_service_consent(service, category)) { | |
| 1855 | + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { | |
| 1856 | + cmplz_remove_placeholder(obj); | |
| 1857 | + }); | |
| 1858 | + } | |
| 1859 | + } | |
| 1860 | + } | |
| 1861 | + }); | |
| 1862 | + }); | |
| 1863 | + } | |
| 1864 | + | |
| 1865 | + | |
| 1866 | + | |
| 1867 | + document.addEventListener("cmplz_enable_category", function(consentData) { | |
| 1868 | + var category = consentData.detail.category; | |
| 1869 | + var services = consentData.detail.services; | |
| 1870 | + var blockedContentContainers = []; | |
| 1871 | + let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; | |
| 1872 | + let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; | |
| 1873 | + for (var skey in services) { | |
| 1874 | + if (services.hasOwnProperty(skey)) { | |
| 1875 | + let service = skey; | |
| 1876 | + selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; | |
| 1877 | + selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; | |
| 1878 | + } | |
| 1879 | + } | |
| 1880 | + document.querySelectorAll(selectorVideo).forEach(obj => { | |
| 1881 | + let elementService = obj.getAttribute('data-service'); | |
| 1882 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1883 | + return; | |
| 1884 | + } | |
| 1885 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1886 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1887 | + | |
| 1888 | + if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ | |
| 1889 | + let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); | |
| 1890 | + obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); | |
| 1891 | + obj.classList.setAttribute('data-widget_type', attr); | |
| 1892 | + } | |
| 1893 | + if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { | |
| 1894 | + obj.classList.remove('cmplz-elementor-widget-video-playlist'); | |
| 1895 | + obj.classList.add('elementor-widget-video-playlist'); | |
| 1896 | + } | |
| 1897 | + obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); | |
| 1898 | + blockedContentContainers.push(obj); | |
| 1899 | + }); | |
| 1900 | + | |
| 1901 | + document.querySelectorAll(selectorGeneric).forEach(obj => { | |
| 1902 | + let elementService = obj.getAttribute('data-service'); | |
| 1903 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1904 | + return; | |
| 1905 | + } | |
| 1906 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1907 | + | |
| 1908 | + if (obj.classList.contains('cmplz-fb-video')) { | |
| 1909 | + obj.classList.remove('cmplz-fb-video'); | |
| 1910 | + obj.classList.add('fb-video'); | |
| 1911 | + } | |
| 1912 | + | |
| 1913 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1914 | + obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); | |
| 1915 | + blockedContentContainers.push(obj.closest('.elementor-widget')); | |
| 1916 | + }); | |
| 1917 | + | |
| 1918 | + /** | |
| 1919 | + * Trigger the widgets in Elementor | |
| 1920 | + */ | |
| 1921 | + for (var key in blockedContentContainers) { | |
| 1922 | + if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { | |
| 1923 | + let blockedContentContainer = blockedContentContainers[key]; | |
| 1924 | + if (elementorFrontend.elementsHandler) { | |
| 1925 | + elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) | |
| 1926 | + } | |
| 1927 | + var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); | |
| 1928 | + blockedContentContainer.classList.remove('cmplz-blocked-content-container'); | |
| 1929 | + blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); | |
| 1930 | + } | |
| 1931 | + } | |
| 1932 | + | |
| 1933 | + }); | |
| 1934 | + | |
| 1935 | + | |
| 1936 | +//# sourceURL=cmplz-cookiebanner-js-after | |
| 1937 | +</script> | |
| 1938 | +<script id="fca_pc_client_js-js-extra"> | |
| 1939 | +var fcaPcEvents = [{"triggerType":"post","trigger":["all"],"parameters":{"content_name":"{post_title}","content_type":"product","content_ids":"{post_id}"},"event":"ViewContent","delay":"0","scroll":"0","apiAction":"track","ID":"5484e3bf-8296-4610-ae88-dcd82aafe45d"}]; | |
| 1940 | +var fcaPcPost = {"title":"DISPONIBILIT\u00c9S PHASE 1","type":"page","id":"10048","categories":[]}; | |
| 1941 | +var fcaPcOptions = {"pixel_types":["Facebook Pixel"],"capis":[],"ajax_url":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php","debug":"","edd_currency":"USD","nonce":"e2be76ec4c","utm_support":"","user_parameters":"","edd_enabled":"","edd_delay":"0","woo_enabled":"","woo_delay":"0","woo_order_cookie":"","video_enabled":""}; | |
| 1942 | +//# sourceURL=fca_pc_client_js-js-extra | |
| 1943 | +</script> | |
| 1944 | +<script id="fca_pc_client_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/pixel-cat.min.js?ver=3.2.0"></script> | |
| 1945 | +<script id="fca_pc_video_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/video.js?ver=7.0.3"></script> | |
| 1946 | +<script id="wdt-bootstrap-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1947 | +<script id="wdt-bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap.min.js?ver=7.3.3"></script> | |
| 1948 | +<script id="wdt-bootstrap-ajax-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/ajax-bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1949 | +<script id="wdt-moment-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/moment/moment.js?ver=7.3.3"></script> | |
| 1950 | +<script id="wdt-common-js-extra"> | |
| 1951 | +var wpdatatables_edit_strings = {"success_common":"Succ\u00e8s!","error_common":"Erreur!","settings_saved_error_common":"Unable to save settings of plugin. Please try again or contact us over Support page.","close_common":"Fermer","tableNameEmpty_common":"Le nom de la table ne peut pas \u00eatre vide ! Veuillez fournir un nom pour votre table.","masterdetail_error_common":"For the selected master-detail option, the following fields cannot be empty: Parent Table Column Name and Child Table Column Name. Additionally, the tables must be connected through a common unique ID column.","masterdetailParentId_error_common":"For the selected master-detail option, the following field cannot be empty: Parent Table Column Name.","tableSaved_common":"Tableau enregistr\u00e9 avec succ\u00e8s!","selectExcelCsv_common":"S\u00e9lectionnez un fichier Excel ou CSV","choose_file_common":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_common":"Choisir le fichier","shortcodeSaved_common":"Le shortcode a \u00e9t\u00e9 copi\u00e9 dans le presse-papier.","dataSaved_common":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_common":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_common":"There was an error trying to delete a row!","rowDeleted_common":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","systemInfoSaved_common":"Les donn\u00e9es d'information du syst\u00e8me ont \u00e9t\u00e9 copi\u00e9es dans le presse-papiers. Vous pouvez maintenant les coller dans le fichier ou dans le ticket de support.","selected_replace_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace rows with source data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete all the data\u003C/strong\u003E you currently have in your table and replace it with data from your source file.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","selected_add_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Add data to current table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Eadd data\u003C/strong\u003E from the file source to your table.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E","selected_replace_table_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace entire table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete your entire table data and current column settings\u003C/strong\u003E and replace it with data from your source file with default settings for columns.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first. \u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","clear_table_data_common":"Clear table data","delete_common":"Effacer","deleteSelected_common":"Supprimer s\u00e9lectionn\u00e9","getJsonRoots_common":"Les racines JSON sont trouv\u00e9es !","errorText_common":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","failedToLoadFormFields_common":"Failed to load form fields","invalidResponseServer_common":"Invalid response from server"}; | |
| 1952 | +//# sourceURL=wdt-common-js-extra | |
| 1953 | +</script> | |
| 1954 | +<script id="wdt-common-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/admin/common.js?ver=7.3.3"></script> | |
| 1955 | +<script id="wdt-bootstrap-tagsinput-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.js?ver=7.3.3"></script> | |
| 1956 | +<script id="wdt-bootstrap-datetimepicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js?ver=7.3.3"></script> | |
| 1957 | +<script id="wdt-bootstrap-nouislider-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.js?ver=7.3.3"></script> | |
| 1958 | +<script id="wdt-wNumb-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/wNumb.min.js?ver=7.3.3"></script> | |
| 1959 | +<script id="wdt-bootstrap-colorpicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.js?ver=7.3.3"></script> | |
| 1960 | +<script id="wdt-bootstrap-growl-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-growl/bootstrap-growl.min.js?ver=7.3.3"></script> | |
| 1961 | +<script id="wdt-wpdatatables-js-extra"> | |
| 1962 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1963 | +var wpdatatables_inline_strings = {"invalid_email_inline":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_inline":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_inline":" le champ ne peut pas \u00eatre vide!","cannot_be_edit_inline":"Vous ne pouvez pas \u00e9diter ce champ","errorText_inline":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_inline":"Aucune s\u00e9lection","sLoadingRecords_inline":"Chargement...","currentlySelected_inline":"Actuellement s\u00e9lectionn\u00e9","search_inline":"Recherche...","statusInitialized_inline":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_inline":"Aucun r\u00e9sultats","statusTooShort_inline":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","selectFileAttachment_inline":"Choisir le fichier","changeFileAttachment_inline":"Changer","saveFileAttachment_inline":"Sauvegarder","removeFileAttachment_inline":"Supprimer","select_upload_file_inline":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_inline":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_inline":"Choisir le fichier","inlineEditing_inline":"Inline editing of the cell "}; | |
| 1964 | +var wpdatatables_filter_strings = {"errorText_columnfilter":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_columnfilter":"Aucune s\u00e9lection","sLoadingRecords_columnfilter":"Chargement...","currentlySelected_columnfilter":"Actuellement s\u00e9lectionn\u00e9","search_columnfilter":"Recherche...","statusInitialized_columnfilter":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_columnfilter":"Aucun r\u00e9sultats","statusTooShort_columnfilter":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","from_columnfilter":"De","to_columnfilter":"\u00c0","fromDate_columnfilter":"Date from","toDate_columnfilter":"Date to","fromDateTime_columnfilter":"DateTime from","toDateTime_columnfilter":"DateTime to","fromTime_columnfilter":"Time from","toTime_columnfilter":"Time to","filterInputString_columnfilter":"Filter input for ","filterInputNumber_columnfilter":"Filter input for number range filter ","filterInputDate_columnfilter":"Filter input for date picker ","filterInputDateTime_columnfilter":"Filter input for datetime picker ","filterInputTime_columnfilter":"Filter input for time picker ","filterCheckbox_columnfilter":"Filter checkbox for ","minValue_columnfilter":"Minimum Value: ","maxValue_columnfilter":"Maximum Value: ","multiSelectBoxOption_columnfilter":"MultiSelectBox option","selectBoxOption_columnfilter":"SelectBox option","dividerSearchBox_columnfilter":"This is divider between searchbox input and options to select"}; | |
| 1965 | +var wpdatatables_functions_strings = {"sInfo_functions":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_functions":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_functions":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_functions":"","sInfoThousands_functions":",","sLengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sLoadingRecords_functions":"Chargement...","sProcessing_functions":"En traitement...","sSearch_functions":"Recherche: ","lengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_functions":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_functions":"Aucun enregistrements correspondants trouv\u00e9s","oAria_functions":{"sSortAscending_functions":": activer pour trier la colonne en ordre croissant","sSortDescending_functions":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_functions":{"sFirst_functions":"Premier","sLast_functions":"Dernier","sNext_functions":"Suivant","sPrevious_functions":"Pr\u00e9c\u00e9dent"},"nothingSelected_functions":"Aucune s\u00e9lection"}; | |
| 1966 | +var wpdatatables_settings = {"wdtDateFormat":"d/m/Y","wdtTimeFormat":"h:i A","wdtNumberFormat":"1","wdtGlobalTableLoader":"1"}; | |
| 1967 | +var wpdatatables_frontend_strings = {"success_wpdatatables":"Succ\u00e8s!","error_wpdatatables":"Erreur!","dataSaved_wpdatatables":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_wpdatatables":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_wpdatatables":"There was an error trying to delete a row!","rowDeleted_wpdatatables":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","errorText_wpdatatables":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_wpdatatables":"Aucune s\u00e9lection","sLoadingRecords_wpdatatables":"Chargement...","currentlySelected_wpdatatables":"Actuellement s\u00e9lectionn\u00e9","search_wpdatatables":"Recherche...","statusInitialized_wpdatatables":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_wpdatatables":"Aucun r\u00e9sultats","statusTooShort_wpdatatables":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","select_upload_file_wpdatatables":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_wpdatatables":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_wpdatatables":"Choisir le fichier","add_new_entry_wpdatatables":"Ajouter une nouvelle entr\u00e9e","duplicate_entry_wpdatatables":"Duplicate entry","edit_entry_wpdatatables":"Modifier l\u2019entr\u00e9e","invalid_email_wpdatatables":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_wpdatatables":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_wpdatatables":" le champ ne peut pas \u00eatre vide!","sInfo_wpdatatables":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_wpdatatables":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_wpdatatables":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_wpdatatables":"","sInfoThousands_wpdatatables":",","sLengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sProcessing_wpdatatables":"En traitement...","sSearch_wpdatatables":"Recherche: ","lengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_wpdatatables":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_wpdatatables":"Aucun enregistrements correspondants trouv\u00e9s","oAria_wpdatatables":{"sSortAscending_wpdatatables":": activer pour trier la colonne en ordre croissant","sSortDescending_wpdatatables":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_wpdatatables":{"sFirst_wpdatatables":"Premier","sLast_wpdatatables":"Dernier","sNext_wpdatatables":"Suivant","sPrevious_wpdatatables":"Pr\u00e9c\u00e9dent"},"from_wpdatatables":"De","to_wpdatatables":"\u00c0","sortingError_wpdatatables":"At least one show/hide sorting icon must be enabled!","firstPageWCAG_wpdatatables":"Navigate to First page","lastPageWCAG_wpdatatables":"Navigate to Last page","nextPageWCAG_wpdatatables":"Navigate to Next page","previousPageWCAG_wpdatatables":"Navigate to Previous page","pageWCAG_wpdatatables":"Navigate to wpDataTable Page ","spacerWCAG_wpdatatables":"Spacer","printTableWCAG_wpdatatables":"Imprimer la table","exportTableWCAG_wpdatatables":"Exporter la table","newEntryWCAG_wpdatatables":"Nouvelle entr\u00e9e","deleteRowWCAG_wpdatatables":"Delete row","editRowWCAG_wpdatatables":"Edit row","duplicateRowWCAG_wpdatatables":"Duplicate row","clearFiltersWCAG_wpdatatables":"Effacer les filtres","columnVisibilityWCAG_wpdatatables":"Column visibility","sInfoEmptyWCAG_wpdatatables":"Showing 0 to 0 of 0 entries _COLUMN_ _DATA_","sInfoWCAG_wpdatatables":"Showing _START_ to _END_ of _TOTAL_ entries _COLUMN_ _DATA_","masterDetailWCAG_wpdatatables":"Master Detail","globalSearchWCAG_wpdatatables":"Global Search Table Input Field","chooseExportWCAG_wpdatatables":"Choose how to export table","optionHideWCAG_wpdatatables":"Option to either display or hide columns","rowsPerPageWCAG_wpdatatables":"Open dropdown menu for show rows per page","forWCAG_wpdatatables":"for ","columnSearchWCAG_wpdatatables":" column searching for ","valueFromWCAG_wpdatatables":"value from ","valueToWCAG_wpdatatables":" value to ","andforWCAG_wpdatatables":" and for ","andforGloablWCAG_wpdatatables":" and for Global search of value ","forGloablWCAG_wpdatatables":"for Global search of value ","lenghtMenuWCAG_wpdatatables":"Length menu:","searchTableWCAG_wpdatatables":"Search table:","all_wpdatatables":"Tout","customDisplayError_wpdatatables":"Invalid format of custom rows per page. Please enter a valid format like \"1,2,3,4\". If you use the number 0, it must be in the format 0 without any preceding zeros.","close_common_wpdatatables":"Fermer","error_adding_to_cart_wpdatatables":"Error adding products to cart.","select_products_for_cart_wpdatatables":"Please select products to add to the cart.","error_fetching_cart_info_wpdatatables":"Error fetching cart info.","could_not_add_to_cart_wpdatatables":"Could not add this product to cart - the stock of this product could be limited.","emtyfields_woo_front":"All of the following fields must be filled out: Taxonomy, Tax Field and Tax Terms."}; | |
| 1968 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1969 | +//# sourceURL=wdt-wpdatatables-js-extra | |
| 1970 | +</script> | |
| 1971 | +<script id="wdt-wpdatatables-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.frontend-starter.min.js?ver=7.3.3"></script> | |
| 1972 | +<script id="underscore-js" src="https://www.ferroviamirabel.com/wp-includes/js/underscore.min.js?ver=1.13.8"></script> | |
| 1973 | +<script id="elementor-pro-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.34.0"></script> | |
| 1974 | +<script id="wp-hooks-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 1975 | +<script id="wp-i18n-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 1976 | +<script id="wp-i18n-js-after"> | |
| 1977 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 1978 | +//# sourceURL=wp-i18n-js-after | |
| 1979 | +</script> | |
| 1980 | +<script id="elementor-pro-frontend-js-before"> | |
| 1981 | +var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","nonce":"108ef60315","urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.ferroviamirabel.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; | |
| 1982 | +//# sourceURL=elementor-pro-frontend-js-before | |
| 1983 | +</script> | |
| 1984 | +<script id="elementor-pro-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.34.0"></script> | |
| 1985 | +<script id="pro-elements-handlers-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.34.0"></script> | |
| 1986 | +<script id="wp-emoji-settings" type="application/json"> | |
| 1987 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}} | |
| 1988 | +</script> | |
| 1989 | +<script type="module"> | |
| 1990 | +/*! This file is auto-generated */ | |
| 1991 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 1992 | +//# sourceURL=https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-loader.min.js | |
| 1993 | +</script> | |
| 1994 | + | |
| 1995 | + </body> | |
| 1996 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/ferrovia/expected.json
+327 −0
@@ -0,0 +1,327 @@ | ||
| 1 | +{ | |
| 2 | + "count": 23, | |
| 3 | + "listings": [ | |
| 4 | + { | |
| 5 | + "uid": "ferrovia:phase3-603", | |
| 6 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-3/", | |
| 7 | + "title": "Ferrovia phase 3 — unité 603 (3 1/2)", | |
| 8 | + "address": "", | |
| 9 | + "sector": "Saint-Janvier", | |
| 10 | + "city": "Mirabel", | |
| 11 | + "unit_type": "3½", | |
| 12 | + "price": null, | |
| 13 | + "availability": "ÉTÉ 2026", | |
| 14 | + "area_sqft": 950.0, | |
| 15 | + "n_images": 0, | |
| 16 | + "n_amenities": 0 | |
| 17 | + }, | |
| 18 | + { | |
| 19 | + "uid": "ferrovia:phase4-101", | |
| 20 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 21 | + "title": "Ferrovia phase 4 — unité 101 (4 1/2)", | |
| 22 | + "address": "", | |
| 23 | + "sector": "Saint-Janvier", | |
| 24 | + "city": "Mirabel", | |
| 25 | + "unit_type": "4½", | |
| 26 | + "price": null, | |
| 27 | + "availability": "Automne 2026", | |
| 28 | + "area_sqft": 1200.0, | |
| 29 | + "n_images": 0, | |
| 30 | + "n_amenities": 1 | |
| 31 | + }, | |
| 32 | + { | |
| 33 | + "uid": "ferrovia:phase4-107", | |
| 34 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 35 | + "title": "Ferrovia phase 4 — unité 107 (4 1/2)", | |
| 36 | + "address": "", | |
| 37 | + "sector": "Saint-Janvier", | |
| 38 | + "city": "Mirabel", | |
| 39 | + "unit_type": "4½", | |
| 40 | + "price": null, | |
| 41 | + "availability": "Automne 2026", | |
| 42 | + "area_sqft": 1155.0, | |
| 43 | + "n_images": 0, | |
| 44 | + "n_amenities": 0 | |
| 45 | + }, | |
| 46 | + { | |
| 47 | + "uid": "ferrovia:phase4-108", | |
| 48 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 49 | + "title": "Ferrovia phase 4 — unité 108 (4 1/2)", | |
| 50 | + "address": "", | |
| 51 | + "sector": "Saint-Janvier", | |
| 52 | + "city": "Mirabel", | |
| 53 | + "unit_type": "4½", | |
| 54 | + "price": null, | |
| 55 | + "availability": "Automne 2026", | |
| 56 | + "area_sqft": 1155.0, | |
| 57 | + "n_images": 0, | |
| 58 | + "n_amenities": 0 | |
| 59 | + }, | |
| 60 | + { | |
| 61 | + "uid": "ferrovia:phase4-201", | |
| 62 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 63 | + "title": "Ferrovia phase 4 — unité 201 (4 1/2)", | |
| 64 | + "address": "", | |
| 65 | + "sector": "Saint-Janvier", | |
| 66 | + "city": "Mirabel", | |
| 67 | + "unit_type": "4½", | |
| 68 | + "price": null, | |
| 69 | + "availability": "Automne 2026", | |
| 70 | + "area_sqft": 1200.0, | |
| 71 | + "n_images": 0, | |
| 72 | + "n_amenities": 1 | |
| 73 | + }, | |
| 74 | + { | |
| 75 | + "uid": "ferrovia:phase4-203", | |
| 76 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 77 | + "title": "Ferrovia phase 4 — unité 203 (3 1/2)", | |
| 78 | + "address": "", | |
| 79 | + "sector": "Saint-Janvier", | |
| 80 | + "city": "Mirabel", | |
| 81 | + "unit_type": "3½", | |
| 82 | + "price": null, | |
| 83 | + "availability": "Automne 2026", | |
| 84 | + "area_sqft": 950.0, | |
| 85 | + "n_images": 0, | |
| 86 | + "n_amenities": 0 | |
| 87 | + }, | |
| 88 | + { | |
| 89 | + "uid": "ferrovia:phase4-207", | |
| 90 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 91 | + "title": "Ferrovia phase 4 — unité 207 (4 1/2)", | |
| 92 | + "address": "", | |
| 93 | + "sector": "Saint-Janvier", | |
| 94 | + "city": "Mirabel", | |
| 95 | + "unit_type": "4½", | |
| 96 | + "price": null, | |
| 97 | + "availability": "Automne 2026", | |
| 98 | + "area_sqft": 1155.0, | |
| 99 | + "n_images": 0, | |
| 100 | + "n_amenities": 0 | |
| 101 | + }, | |
| 102 | + { | |
| 103 | + "uid": "ferrovia:phase4-302", | |
| 104 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 105 | + "title": "Ferrovia phase 4 — unité 302 (4 1/2)", | |
| 106 | + "address": "", | |
| 107 | + "sector": "Saint-Janvier", | |
| 108 | + "city": "Mirabel", | |
| 109 | + "unit_type": "4½", | |
| 110 | + "price": null, | |
| 111 | + "availability": "Automne 2026", | |
| 112 | + "area_sqft": 1155.0, | |
| 113 | + "n_images": 0, | |
| 114 | + "n_amenities": 0 | |
| 115 | + }, | |
| 116 | + { | |
| 117 | + "uid": "ferrovia:phase4-303", | |
| 118 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 119 | + "title": "Ferrovia phase 4 — unité 303 (3 1/2)", | |
| 120 | + "address": "", | |
| 121 | + "sector": "Saint-Janvier", | |
| 122 | + "city": "Mirabel", | |
| 123 | + "unit_type": "3½", | |
| 124 | + "price": null, | |
| 125 | + "availability": "Automne 2026", | |
| 126 | + "area_sqft": 950.0, | |
| 127 | + "n_images": 0, | |
| 128 | + "n_amenities": 0 | |
| 129 | + }, | |
| 130 | + { | |
| 131 | + "uid": "ferrovia:phase4-307", | |
| 132 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 133 | + "title": "Ferrovia phase 4 — unité 307 (4 1/2)", | |
| 134 | + "address": "", | |
| 135 | + "sector": "Saint-Janvier", | |
| 136 | + "city": "Mirabel", | |
| 137 | + "unit_type": "4½", | |
| 138 | + "price": null, | |
| 139 | + "availability": "Automne 2026", | |
| 140 | + "area_sqft": 1155.0, | |
| 141 | + "n_images": 0, | |
| 142 | + "n_amenities": 0 | |
| 143 | + }, | |
| 144 | + { | |
| 145 | + "uid": "ferrovia:phase4-308", | |
| 146 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 147 | + "title": "Ferrovia phase 4 — unité 308 (4 1/2)", | |
| 148 | + "address": "", | |
| 149 | + "sector": "Saint-Janvier", | |
| 150 | + "city": "Mirabel", | |
| 151 | + "unit_type": "4½", | |
| 152 | + "price": null, | |
| 153 | + "availability": "Automne 2026", | |
| 154 | + "area_sqft": 1155.0, | |
| 155 | + "n_images": 0, | |
| 156 | + "n_amenities": 0 | |
| 157 | + }, | |
| 158 | + { | |
| 159 | + "uid": "ferrovia:phase4-403", | |
| 160 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 161 | + "title": "Ferrovia phase 4 — unité 403 (3 1/2)", | |
| 162 | + "address": "", | |
| 163 | + "sector": "Saint-Janvier", | |
| 164 | + "city": "Mirabel", | |
| 165 | + "unit_type": "3½", | |
| 166 | + "price": null, | |
| 167 | + "availability": "Automne 2026", | |
| 168 | + "area_sqft": 950.0, | |
| 169 | + "n_images": 0, | |
| 170 | + "n_amenities": 0 | |
| 171 | + }, | |
| 172 | + { | |
| 173 | + "uid": "ferrovia:phase4-407", | |
| 174 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 175 | + "title": "Ferrovia phase 4 — unité 407 (4 1/2)", | |
| 176 | + "address": "", | |
| 177 | + "sector": "Saint-Janvier", | |
| 178 | + "city": "Mirabel", | |
| 179 | + "unit_type": "4½", | |
| 180 | + "price": null, | |
| 181 | + "availability": "Automne 2026", | |
| 182 | + "area_sqft": 1155.0, | |
| 183 | + "n_images": 0, | |
| 184 | + "n_amenities": 0 | |
| 185 | + }, | |
| 186 | + { | |
| 187 | + "uid": "ferrovia:phase4-501", | |
| 188 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 189 | + "title": "Ferrovia phase 4 — unité 501 (4 1/2)", | |
| 190 | + "address": "", | |
| 191 | + "sector": "Saint-Janvier", | |
| 192 | + "city": "Mirabel", | |
| 193 | + "unit_type": "4½", | |
| 194 | + "price": null, | |
| 195 | + "availability": "Automne 2026", | |
| 196 | + "area_sqft": 1200.0, | |
| 197 | + "n_images": 0, | |
| 198 | + "n_amenities": 1 | |
| 199 | + }, | |
| 200 | + { | |
| 201 | + "uid": "ferrovia:phase4-503", | |
| 202 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 203 | + "title": "Ferrovia phase 4 — unité 503 (3 1/2)", | |
| 204 | + "address": "", | |
| 205 | + "sector": "Saint-Janvier", | |
| 206 | + "city": "Mirabel", | |
| 207 | + "unit_type": "3½", | |
| 208 | + "price": null, | |
| 209 | + "availability": "Automne 2026", | |
| 210 | + "area_sqft": 950.0, | |
| 211 | + "n_images": 0, | |
| 212 | + "n_amenities": 0 | |
| 213 | + }, | |
| 214 | + { | |
| 215 | + "uid": "ferrovia:phase4-505", | |
| 216 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 217 | + "title": "Ferrovia phase 4 — unité 505 (3 1/2)", | |
| 218 | + "address": "", | |
| 219 | + "sector": "Saint-Janvier", | |
| 220 | + "city": "Mirabel", | |
| 221 | + "unit_type": "3½", | |
| 222 | + "price": null, | |
| 223 | + "availability": "Automne 2026", | |
| 224 | + "area_sqft": 860.0, | |
| 225 | + "n_images": 0, | |
| 226 | + "n_amenities": 0 | |
| 227 | + }, | |
| 228 | + { | |
| 229 | + "uid": "ferrovia:phase4-506", | |
| 230 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 231 | + "title": "Ferrovia phase 4 — unité 506 (4 1/2)", | |
| 232 | + "address": "", | |
| 233 | + "sector": "Saint-Janvier", | |
| 234 | + "city": "Mirabel", | |
| 235 | + "unit_type": "4½", | |
| 236 | + "price": null, | |
| 237 | + "availability": "Automne 2026", | |
| 238 | + "area_sqft": 1200.0, | |
| 239 | + "n_images": 0, | |
| 240 | + "n_amenities": 1 | |
| 241 | + }, | |
| 242 | + { | |
| 243 | + "uid": "ferrovia:phase4-507", | |
| 244 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 245 | + "title": "Ferrovia phase 4 — unité 507 (4 1/2)", | |
| 246 | + "address": "", | |
| 247 | + "sector": "Saint-Janvier", | |
| 248 | + "city": "Mirabel", | |
| 249 | + "unit_type": "4½", | |
| 250 | + "price": null, | |
| 251 | + "availability": "Automne 2026", | |
| 252 | + "area_sqft": 1155.0, | |
| 253 | + "n_images": 0, | |
| 254 | + "n_amenities": 0 | |
| 255 | + }, | |
| 256 | + { | |
| 257 | + "uid": "ferrovia:phase4-601", | |
| 258 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 259 | + "title": "Ferrovia phase 4 — unité 601 (4 1/2)", | |
| 260 | + "address": "", | |
| 261 | + "sector": "Saint-Janvier", | |
| 262 | + "city": "Mirabel", | |
| 263 | + "unit_type": "4½", | |
| 264 | + "price": null, | |
| 265 | + "availability": "Automne 2026", | |
| 266 | + "area_sqft": 1155.0, | |
| 267 | + "n_images": 0, | |
| 268 | + "n_amenities": 0 | |
| 269 | + }, | |
| 270 | + { | |
| 271 | + "uid": "ferrovia:phase4-603", | |
| 272 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 273 | + "title": "Ferrovia phase 4 — unité 603 (3 1/2)", | |
| 274 | + "address": "", | |
| 275 | + "sector": "Saint-Janvier", | |
| 276 | + "city": "Mirabel", | |
| 277 | + "unit_type": "3½", | |
| 278 | + "price": null, | |
| 279 | + "availability": "Automne 2026", | |
| 280 | + "area_sqft": 950.0, | |
| 281 | + "n_images": 0, | |
| 282 | + "n_amenities": 0 | |
| 283 | + }, | |
| 284 | + { | |
| 285 | + "uid": "ferrovia:phase4-605", | |
| 286 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 287 | + "title": "Ferrovia phase 4 — unité 605 (3 1/2)", | |
| 288 | + "address": "", | |
| 289 | + "sector": "Saint-Janvier", | |
| 290 | + "city": "Mirabel", | |
| 291 | + "unit_type": "3½", | |
| 292 | + "price": null, | |
| 293 | + "availability": "Automne 2026", | |
| 294 | + "area_sqft": 860.0, | |
| 295 | + "n_images": 0, | |
| 296 | + "n_amenities": 0 | |
| 297 | + }, | |
| 298 | + { | |
| 299 | + "uid": "ferrovia:phase4-606", | |
| 300 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 301 | + "title": "Ferrovia phase 4 — unité 606 (4 1/2)", | |
| 302 | + "address": "", | |
| 303 | + "sector": "Saint-Janvier", | |
| 304 | + "city": "Mirabel", | |
| 305 | + "unit_type": "4½", | |
| 306 | + "price": null, | |
| 307 | + "availability": "Automne 2026", | |
| 308 | + "area_sqft": 1200.0, | |
| 309 | + "n_images": 0, | |
| 310 | + "n_amenities": 1 | |
| 311 | + }, | |
| 312 | + { | |
| 313 | + "uid": "ferrovia:phase4-607", | |
| 314 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 315 | + "title": "Ferrovia phase 4 — unité 607 (4 1/2)", | |
| 316 | + "address": "", | |
| 317 | + "sector": "Saint-Janvier", | |
| 318 | + "city": "Mirabel", | |
| 319 | + "unit_type": "4½", | |
| 320 | + "price": null, | |
| 321 | + "availability": "Automne 2026", | |
| 322 | + "area_sqft": 1155.0, | |
| 323 | + "n_images": 0, | |
| 324 | + "n_amenities": 0 | |
| 325 | + } | |
| 326 | + ] | |
| 327 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/ferrovia/fd7bf1f70116d8fdd526.html
+1995 −0
@@ -0,0 +1,1995 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr-FR" class="no-js"> | |
| 3 | + <head> | |
| 4 | + | |
| 5 | + <meta charset="UTF-8"> | |
| 6 | + <meta name="viewport" content="width=device-width"> | |
| 7 | + <link rel="profile" href="http://gmpg.org/xfn/11"> | |
| 8 | + <link rel="pingback" href="https://www.ferroviamirabel.com/xmlrpc.php"> | |
| 9 | + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 10 | + <!-- Pixel Cat Facebook Pixel Code --> | |
| 11 | + <script type="text/plain" data-service="facebook" data-category="marketing"> | |
| 12 | + !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? | |
| 13 | + n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; | |
| 14 | + n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; | |
| 15 | + t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, | |
| 16 | + document,'script','https://connect.facebook.net/en_US/fbevents.js' ); | |
| 17 | + fbq( 'init', '552877629303142' ); </script> | |
| 18 | + <!-- DO NOT MODIFY --> | |
| 19 | + <!-- End Facebook Pixel Code --> | |
| 20 | + | |
| 21 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 22 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 23 | + var gtm4wp_datalayer_name = "dataLayer"; | |
| 24 | + var dataLayer = dataLayer || []; | |
| 25 | +</script> | |
| 26 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 27 | + <!-- This site is optimized with the Yoast SEO plugin v23.9 - https://yoast.com/wordpress/plugins/seo/ --> | |
| 28 | + <title>DISPONIBILITÉS PHASE 4 - Ferrovia</title> | |
| 29 | + <link rel="canonical" href="https://www.ferroviamirabel.com/disponibilites-phase-4/" /> | |
| 30 | + <meta property="og:locale" content="fr_FR" /> | |
| 31 | + <meta property="og:type" content="article" /> | |
| 32 | + <meta property="og:title" content="DISPONIBILITÉS PHASE 4 - Ferrovia" /> | |
| 33 | + <meta property="og:description" content="(450) 350-0039 Disponibilités et plans de nos condos à louer (phase 4), situés à Mirabel, dans le secteur de Saint-Janvier PHASE 4 Plan du projet PLANS ET PRIX – PHASE 4 Disponibilités À noter, que les logements sont non-fumeurs et que les animaux ne sont pas admis. Déclaration de confidentialité" /> | |
| 34 | + <meta property="og:url" content="https://www.ferroviamirabel.com/disponibilites-phase-4/" /> | |
| 35 | + <meta property="og:site_name" content="Ferrovia" /> | |
| 36 | + <meta property="article:modified_time" content="2026-02-12T22:30:03+00:00" /> | |
| 37 | + <meta property="og:image" content="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" /> | |
| 38 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 39 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 40 | + <meta name="twitter:data1" content="6 minutes" /> | |
| 41 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/","url":"https://www.ferroviamirabel.com/disponibilites-phase-4/","name":"DISPONIBILITÉS PHASE 4 - Ferrovia","isPartOf":{"@id":"https://www.ferroviamirabel.com/#website"},"primaryImageOfPage":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/#primaryimage"},"image":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/#primaryimage"},"thumbnailUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","datePublished":"2026-02-10T15:18:58+00:00","dateModified":"2026-02-12T22:30:03+00:00","breadcrumb":{"@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://www.ferroviamirabel.com/disponibilites-phase-4/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/#primaryimage","url":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png","contentUrl":"https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png"},{"@type":"BreadcrumbList","@id":"https://www.ferroviamirabel.com/disponibilites-phase-4/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://www.ferroviamirabel.com/"},{"@type":"ListItem","position":2,"name":"DISPONIBILITÉS PHASE 4"}]},{"@type":"WebSite","@id":"https://www.ferroviamirabel.com/#website","url":"https://www.ferroviamirabel.com/","name":"Ferrovia","description":"Condos locatifs - Mirabel","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.ferroviamirabel.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}</script> | |
| 42 | + <!-- / Yoast SEO plugin. --> | |
| 43 | + | |
| 44 | + | |
| 45 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 46 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux" href="https://www.ferroviamirabel.com/feed/" /> | |
| 47 | +<link rel="alternate" type="application/rss+xml" title="Ferrovia » Flux des commentaires" href="https://www.ferroviamirabel.com/comments/feed/" /> | |
| 48 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-phase-4%2F" /> | |
| 49 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.ferroviamirabel.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.ferroviamirabel.com%2Fdisponibilites-phase-4%2F&format=xml" /> | |
| 50 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 51 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 52 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 53 | +</style> | |
| 54 | +<style id="wp-emoji-styles-inline-css"> | |
| 55 | + | |
| 56 | + img.wp-smiley, img.emoji { | |
| 57 | + display: inline !important; | |
| 58 | + border: none !important; | |
| 59 | + box-shadow: none !important; | |
| 60 | + height: 1em !important; | |
| 61 | + width: 1em !important; | |
| 62 | + margin: 0 0.07em !important; | |
| 63 | + vertical-align: -0.1em !important; | |
| 64 | + background: none !important; | |
| 65 | + padding: 0 !important; | |
| 66 | + } | |
| 67 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 68 | +</style> | |
| 69 | +<style id="classic-theme-styles-inline-css"> | |
| 70 | +/*! This file is auto-generated */ | |
| 71 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 72 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 73 | +</style> | |
| 74 | +<style id="global-styles-inline-css"> | |
| 75 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} | |
| 76 | +:root :where(.wp-block-icon svg){width: 24px;} | |
| 77 | +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} | |
| 78 | +:where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} | |
| 79 | +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} | |
| 80 | +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} | |
| 81 | +/*# sourceURL=global-styles-inline-css */ | |
| 82 | +</style> | |
| 83 | +<link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.3.3' media='all' /> | |
| 84 | +<style id="rs-plugin-settings-inline-css"> | |
| 85 | +#rs-demo-id {} | |
| 86 | +/*# sourceURL=rs-plugin-settings-inline-css */ | |
| 87 | +</style> | |
| 88 | +<link rel='stylesheet' id='cmplz-general-css' href='https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1769530449' media='all' /> | |
| 89 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='mihouse-fonts-css' data-href='https://fonts.googleapis.com/css?family=Prata%7COverpass%3A300%2C300i%2C400%2C400i%2C600%2C600i%2C700%2C700i%2C800%2C800i%2C900%2C900i%7COpen%2BSans&subset=latin%2Clatin-ext' media='all' /> | |
| 90 | +<link rel='stylesheet' id='mihouse-style-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/style.css?ver=7.0.3' media='all' /> | |
| 91 | +<link rel='stylesheet' id='bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/bootstrap.css?ver=7.0.3' media='all' /> | |
| 92 | +<link rel='stylesheet' id='fancybox-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.fancybox.css' media='all' /> | |
| 93 | +<link rel='stylesheet' id='mmenu-all-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/jquery.mmenu.all.css?ver=7.0.3' media='all' /> | |
| 94 | +<link rel='stylesheet' id='slick-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/slick/slick.css' media='all' /> | |
| 95 | +<link rel='stylesheet' id='fontawesome-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/fontawesome.css?ver=7.0.3' media='all' /> | |
| 96 | +<link rel='stylesheet' id='icofont-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/icofont.css?ver=7.0.3' media='all' /> | |
| 97 | +<link rel='stylesheet' id='ionicons-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/ionicons.css?ver=7.0.3' media='all' /> | |
| 98 | +<link rel='stylesheet' id='materia-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/materia.css?ver=7.0.3' media='all' /> | |
| 99 | +<link rel='stylesheet' id='elegant-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/elegant.css?ver=7.0.3' media='all' /> | |
| 100 | +<link rel='stylesheet' id='mihouse-style-template-css' href='https://www.ferroviamirabel.com/wp-content/themes/mihouse/css/template.css?ver=7.0.3' media='all' /> | |
| 101 | +<style id="mihouse-style-template-inline-css"> | |
| 102 | +.blog_title {font-family: Open Sans ;font-size: 14px;font-weight:400;} | |
| 103 | +/*# sourceURL=mihouse-style-template-inline-css */ | |
| 104 | +</style> | |
| 105 | +<link rel='stylesheet' id='elementor-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.53.0' media='all' /> | |
| 106 | +<link rel='stylesheet' id='elementor-frontend-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.2.2' media='all' /> | |
| 107 | +<link rel='stylesheet' id='elementor-post-6-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-6.css?ver=1786094240' media='all' /> | |
| 108 | +<link rel='stylesheet' id='wpdt-elementor-widget-font-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/integrations/starter/page-builders/elementor/css/style.css?ver=7.3.3' media='all' /> | |
| 109 | +<link rel='stylesheet' id='widget-image-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.2.2' media='all' /> | |
| 110 | +<link rel='stylesheet' id='widget-nav-menu-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css?ver=3.34.0' media='all' /> | |
| 111 | +<link rel='stylesheet' id='e-sticky-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/css/modules/sticky.min.css?ver=3.34.0' media='all' /> | |
| 112 | +<link rel='stylesheet' id='widget-spacer-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-spacer.min.css?ver=4.2.2' media='all' /> | |
| 113 | +<link rel='stylesheet' id='widget-heading-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.2.2' media='all' /> | |
| 114 | +<link rel='stylesheet' id='elementor-post-12179-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/css/post-12179.css?ver=1786098575' media='all' /> | |
| 115 | +<link rel='stylesheet' id='elementor-gf-local-roboto-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1742245718' media='all' /> | |
| 116 | +<link rel='stylesheet' id='elementor-gf-local-robotoslab-css' href='https://www.ferroviamirabel.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css?ver=1742245720' media='all' /> | |
| 117 | +<link rel='stylesheet' id='elementor-icons-shared-0-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3' media='all' /> | |
| 118 | +<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3' media='all' /> | |
| 119 | +<script id="jquery-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 120 | +<script id="jquery-migrate-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 121 | +<script id="tp-tools-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.3.3"></script> | |
| 122 | +<script id="revmin-js" src="https://www.ferroviamirabel.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.3.3"></script> | |
| 123 | +<link rel="https://api.w.org/" href="https://www.ferroviamirabel.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.ferroviamirabel.com/wp-json/wp/v2/pages/12179" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.ferroviamirabel.com/xmlrpc.php?rsd" /> | |
| 124 | +<meta name="generator" content="WordPress 7.0.3" /> | |
| 125 | +<link rel='shortlink' href='https://www.ferroviamirabel.com/?p=12179' /> | |
| 126 | +<meta name="generator" content="Redux 4.5.10" /> <style>.cmplz-hidden { | |
| 127 | + display: none !important; | |
| 128 | + }</style> | |
| 129 | +<!-- Google Tag Manager for WordPress by gtm4wp.com --> | |
| 130 | +<!-- GTM Container placement set to automatic --> | |
| 131 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 132 | + var dataLayer_content = {"pagePostType":"page","pagePostType2":"single-page","pagePostAuthor":"bqsas"}; | |
| 133 | + dataLayer.push( dataLayer_content ); | |
| 134 | +</script> | |
| 135 | +<script data-cfasync="false" data-pagespeed-no-defer> | |
| 136 | +(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': | |
| 137 | +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], | |
| 138 | +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= | |
| 139 | +'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); | |
| 140 | +})(window,document,'script','dataLayer','GTM-WPSL7SJ'); | |
| 141 | +</script> | |
| 142 | +<!-- End Google Tag Manager for WordPress by gtm4wp.com --> | |
| 143 | +<meta name="google-site-verification" content="Nlv5MPpNKTzvpNELWxPZq24HaIX_plPzXrAp5J9igsE" /> | |
| 144 | +<meta name="facebook-domain-verification" content="mat0etaoyaqdleu1nqk7cok5uj1i2k" /> | |
| 145 | + | |
| 146 | + | |
| 147 | +<meta name="generator" content="Elementor 4.2.2; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> | |
| 148 | +<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> | |
| 149 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 150 | + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 151 | + background-image: none !important; | |
| 152 | + } | |
| 153 | + @media screen and (max-height: 1024px) { | |
| 154 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 155 | + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 156 | + background-image: none !important; | |
| 157 | + } | |
| 158 | + } | |
| 159 | + @media screen and (max-height: 640px) { | |
| 160 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), | |
| 161 | + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { | |
| 162 | + background-image: none !important; | |
| 163 | + } | |
| 164 | + } | |
| 165 | + </style> | |
| 166 | + <meta name="generator" content="Powered by Slider Revolution 6.3.3 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> | |
| 167 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-32x32.png" sizes="32x32" /> | |
| 168 | +<link rel="icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-192x192.png" sizes="192x192" /> | |
| 169 | +<link rel="apple-touch-icon" href="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-180x180.png" /> | |
| 170 | +<meta name="msapplication-TileImage" content="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/cropped-Ferrovia_Couleur_Fond-270x270.png" /> | |
| 171 | +<script type="text/javascript">function setREVStartSize(e){ | |
| 172 | + //window.requestAnimationFrame(function() { | |
| 173 | + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; | |
| 174 | + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; | |
| 175 | + try { | |
| 176 | + var pw = document.getElementById(e.c).parentNode.offsetWidth, | |
| 177 | + newh; | |
| 178 | + pw = pw===0 || isNaN(pw) ? window.RSIW : pw; | |
| 179 | + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); | |
| 180 | + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); | |
| 181 | + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); | |
| 182 | + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); | |
| 183 | + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); | |
| 184 | + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); | |
| 185 | + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); | |
| 186 | + if(e.layout==="fullscreen" || e.l==="fullscreen") | |
| 187 | + newh = Math.max(e.mh,window.RSIH); | |
| 188 | + else{ | |
| 189 | + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; | |
| 190 | + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; | |
| 191 | + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; | |
| 192 | + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; | |
| 193 | + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; | |
| 194 | + | |
| 195 | + var nl = new Array(e.rl.length), | |
| 196 | + ix = 0, | |
| 197 | + sl; | |
| 198 | + e.tabw = e.tabhide>=pw ? 0 : e.tabw; | |
| 199 | + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; | |
| 200 | + e.tabh = e.tabhide>=pw ? 0 : e.tabh; | |
| 201 | + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; | |
| 202 | + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; | |
| 203 | + sl = nl[0]; | |
| 204 | + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} | |
| 205 | + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); | |
| 206 | + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); | |
| 207 | + } | |
| 208 | + if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style")); | |
| 209 | + document.getElementById(e.c).height = newh+"px"; | |
| 210 | + window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }"; | |
| 211 | + } catch(e){ | |
| 212 | + console.log("Failure at Presize of Slider:" + e) | |
| 213 | + } | |
| 214 | + //}); | |
| 215 | + };</script> | |
| 216 | +<style id="wp-custom-css"> | |
| 217 | +@media only screen and (max-width: 1024px) { | |
| 218 | + html body .phone-number .elementor-icon-box-wrapper .elementor-icon-box-content .elementor-icon-box-description{ | |
| 219 | + pointer-events: none !important; | |
| 220 | + text-decoration:none !important; | |
| 221 | + color:inherit !important; | |
| 222 | + color:#a3a3a3 !important; | |
| 223 | + } | |
| 224 | +} | |
| 225 | +</style> | |
| 226 | + <style type="text/css"> | |
| 227 | + body:before { display:none !important} | |
| 228 | + body:after { display:none !important} | |
| 229 | + body, body.page-template-revslider-page-template, body.page-template---publicviewsrevslider-page-template-php { background:transparent} | |
| 230 | + </style> | |
| 231 | + </head> | |
| 232 | + | |
| 233 | + <body data-cmplz=1 class="wp-singular page-template page-template--- page-template-public page-template-views page-template-revslider-page-template page-template---publicviewsrevslider-page-template-php page page-id-12179 wp-theme-mihouse disponibilites-phase-4 banners-effect-1 full-layout elementor-default elementor-kit-6 elementor-page elementor-page-12179"> | |
| 234 | + <div> | |
| 235 | + <div data-elementor-type="wp-page" data-elementor-id="12179" class="elementor elementor-12179" data-elementor-post-type="page"> | |
| 236 | + <header class="elementor-section elementor-top-section elementor-element elementor-element-b4dbc9b elementor-section-content-middle elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="b4dbc9b" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic","sticky":"top","stretch_section":"section-stretched","sticky_on":["desktop","tablet","mobile"],"sticky_offset":0,"sticky_effects_offset":0,"sticky_anchor_link_offset":0}"> | |
| 237 | + <div class="elementor-container elementor-column-gap-no"> | |
| 238 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-2db6e96" data-id="2db6e96" data-element_type="column" data-e-type="column"> | |
| 239 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 240 | + <div class="elementor-element elementor-element-a614bd5 elementor-widget elementor-widget-image" data-id="a614bd5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 241 | + <div class="elementor-widget-container"> | |
| 242 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Ferrovia_Couleur-r9ykohn4io3p5grv84jf1ofnpgzf93xbvvozar4bmw.png" title="Logo Ferrovia – Projet immobilier – Condos Laurentides" alt="Logo Ferrovia - Projet immobilier - Condos Laurentides" loading="lazy" /> </div> | |
| 243 | + </div> | |
| 244 | + </div> | |
| 245 | + </div> | |
| 246 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d0c3f1a" data-id="d0c3f1a" data-element_type="column" data-e-type="column"> | |
| 247 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 248 | + <div class="elementor-element elementor-element-34de2c1 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="34de2c1" data-element_type="widget" data-e-type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\" aria-hidden=\"true\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> | |
| 249 | + <div class="elementor-widget-container"> | |
| 250 | + <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> | |
| 251 | + <ul id="menu-1-34de2c1" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item">ACCUEIL</a></li> | |
| 252 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item">PROJET</a></li> | |
| 253 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item">INTÉRIEURS</a> | |
| 254 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 255 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item">PHASE 1</a></li> | |
| 256 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item">PHASE 3</a></li> | |
| 257 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item">PHASE 4</a></li> | |
| 258 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item">PHOTOS DES UNITÉS</a></li> | |
| 259 | +</ul> | |
| 260 | +</li> | |
| 261 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item">DISPONIBILITÉS</a> | |
| 262 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 263 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" class="elementor-sub-item">PHASE 1</a></li> | |
| 264 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor">PHASE 2 (à venir)</a></li> | |
| 265 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" class="elementor-sub-item">PHASE 3</a></li> | |
| 266 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" aria-current="page" class="elementor-sub-item elementor-item-active">PHASE 4</a></li> | |
| 267 | +</ul> | |
| 268 | +</li> | |
| 269 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item">À PROPOS</a></li> | |
| 270 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item">INFORMATION</a></li> | |
| 271 | +</ul> </nav> | |
| 272 | + <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Permuter le menu" aria-expanded="false"> | |
| 273 | + <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> | |
| 274 | + <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> | |
| 275 | + <ul id="menu-2-34de2c1" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-9304"><a href="https://www.ferroviamirabel.com/" class="elementor-item" tabindex="-1">ACCUEIL</a></li> | |
| 276 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9305"><a href="https://www.ferroviamirabel.com/condos-louer-mirabel/" class="elementor-item" tabindex="-1">PROJET</a></li> | |
| 277 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9306"><a class="elementor-item" tabindex="-1">INTÉRIEURS</a> | |
| 278 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 279 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11655"><a href="https://www.ferroviamirabel.com/plans-informations-condo-mirabel/" class="elementor-sub-item" tabindex="-1">PHASE 1</a></li> | |
| 280 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11768"><a href="https://www.ferroviamirabel.com/interieurs-phase3/" class="elementor-sub-item" tabindex="-1">PHASE 3</a></li> | |
| 281 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12312"><a href="https://www.ferroviamirabel.com/interieurs-phase4/" class="elementor-sub-item" tabindex="-1">PHASE 4</a></li> | |
| 282 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12311"><a href="https://www.ferroviamirabel.com/photos-unites/" class="elementor-sub-item" tabindex="-1">PHOTOS DES UNITÉS</a></li> | |
| 283 | +</ul> | |
| 284 | +</li> | |
| 285 | +<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-9307"><a class="elementor-item" tabindex="-1">DISPONIBILITÉS</a> | |
| 286 | +<ul class="sub-menu elementor-nav-menu--dropdown"> | |
| 287 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10063"><a href="https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/" class="elementor-sub-item" tabindex="-1">PHASE 1</a></li> | |
| 288 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10064"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">PHASE 2 (à venir)</a></li> | |
| 289 | + <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10065"><a href="https://www.ferroviamirabel.com/disponibilites-phase-3/" class="elementor-sub-item" tabindex="-1">PHASE 3</a></li> | |
| 290 | + <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-10150"><a href="https://www.ferroviamirabel.com/disponibilites-phase-4/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">PHASE 4</a></li> | |
| 291 | +</ul> | |
| 292 | +</li> | |
| 293 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11968"><a href="https://www.ferroviamirabel.com/a-propos/" class="elementor-item" tabindex="-1">À PROPOS</a></li> | |
| 294 | +<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9308"><a href="https://www.ferroviamirabel.com/contact-information/" class="elementor-item" tabindex="-1">INFORMATION</a></li> | |
| 295 | +</ul> </nav> | |
| 296 | + </div> | |
| 297 | + </div> | |
| 298 | + </div> | |
| 299 | + </div> | |
| 300 | + <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-440fed4" data-id="440fed4" data-element_type="column" data-e-type="column"> | |
| 301 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 302 | + <div class="elementor-element elementor-element-ee62b34 elementor-align-center elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="ee62b34" data-element_type="widget" data-e-type="widget" data-widget_type="button.default"> | |
| 303 | + <div class="elementor-widget-container"> | |
| 304 | + <div class="elementor-button-wrapper"> | |
| 305 | + <a class="elementor-button elementor-button-link elementor-size-md" href="tel:(450)%20350-0039"> | |
| 306 | + <span class="elementor-button-content-wrapper"> | |
| 307 | + <span class="elementor-button-text">(450) 350-0039</span> | |
| 308 | + </span> | |
| 309 | + </a> | |
| 310 | + </div> | |
| 311 | + </div> | |
| 312 | + </div> | |
| 313 | + </div> | |
| 314 | + </div> | |
| 315 | + </div> | |
| 316 | + </header> | |
| 317 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-ec9d10b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ec9d10b" data-element_type="section" data-e-type="section"> | |
| 318 | + <div class="elementor-container elementor-column-gap-default"> | |
| 319 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-32703ee" data-id="32703ee" data-element_type="column" data-e-type="column"> | |
| 320 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 321 | + <div class="elementor-element elementor-element-8820028 elementor-widget elementor-widget-spacer" data-id="8820028" data-element_type="widget" data-e-type="widget" data-widget_type="spacer.default"> | |
| 322 | + <div class="elementor-widget-container"> | |
| 323 | + <div class="elementor-spacer"> | |
| 324 | + <div class="elementor-spacer-inner"></div> | |
| 325 | + </div> | |
| 326 | + </div> | |
| 327 | + </div> | |
| 328 | + <div class="elementor-element elementor-element-ae8b0f4 elementor-widget elementor-widget-heading" data-id="ae8b0f4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default"> | |
| 329 | + <div class="elementor-widget-container"> | |
| 330 | + <h1 class="elementor-heading-title elementor-size-default">Disponibilités et plans de nos condos à louer (phase 4), situés à Mirabel, dans le secteur de Saint-Janvier</h1> </div> | |
| 331 | + </div> | |
| 332 | + </div> | |
| 333 | + </div> | |
| 334 | + </div> | |
| 335 | + </section> | |
| 336 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-da672a2 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="da672a2" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 337 | + <div class="elementor-container elementor-column-gap-default"> | |
| 338 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-46b2fb9" data-id="46b2fb9" data-element_type="column" data-e-type="column"> | |
| 339 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 340 | + <div class="elementor-element elementor-element-4012c95 text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="4012c95" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 341 | + <div class="elementor-widget-container"> | |
| 342 | + <p class="subtitle">PHASE 4</p><h3 class="title">Plan du projet</h3> </div> | |
| 343 | + </div> | |
| 344 | + </div> | |
| 345 | + </div> | |
| 346 | + </div> | |
| 347 | + </section> | |
| 348 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-0f9681e elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="0f9681e" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 349 | + <div class="elementor-container elementor-column-gap-default"> | |
| 350 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c16531d" data-id="c16531d" data-element_type="column" data-e-type="column"> | |
| 351 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 352 | + <div class="elementor-element elementor-element-474f56c elementor-widget elementor-widget-image" data-id="474f56c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 353 | + <div class="elementor-widget-container"> | |
| 354 | + <img fetchpriority="high" decoding="async" width="1483" height="534" src="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg" class="attachment-full size-full wp-image-11641" alt="" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases.jpg 1483w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-300x108.jpg 300w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-1024x369.jpg 1024w, https://www.ferroviamirabel.com/wp-content/uploads/2024/09/Phases-768x277.jpg 768w" sizes="(max-width: 1483px) 100vw, 1483px" /> </div> | |
| 355 | + </div> | |
| 356 | + </div> | |
| 357 | + </div> | |
| 358 | + </div> | |
| 359 | + </section> | |
| 360 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-5ea36b4 animated-fast elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="5ea36b4" data-element_type="section" data-e-type="section" data-settings="{"animation":"opal-move-up","background_background":"gradient","stretch_section":"section-stretched"}"> | |
| 361 | + <div class="elementor-container elementor-column-gap-default"> | |
| 362 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d184405" data-id="d184405" data-element_type="column" data-e-type="column"> | |
| 363 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 364 | + <div class="elementor-element elementor-element-95e43bb text-block-wraper4 elementor-widget elementor-widget-text-editor" data-id="95e43bb" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 365 | + <div class="elementor-widget-container"> | |
| 366 | + <p class="subtitle">PLANS ET PRIX – PHASE 4</p><h3 class="title">Disponibilités</h3><p>À noter, que les logements sont non-fumeurs et que les animaux ne sont pas admis.</p> </div> | |
| 367 | + </div> | |
| 368 | + <div class="elementor-element elementor-element-7beab81 elementor-widget elementor-widget-text-editor" data-id="7beab81" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 369 | + <div class="elementor-widget-container"> | |
| 370 | + | |
| 371 | +<div class="wpdt-c wdt-skin-light"> | |
| 372 | + | |
| 373 | + <input type="hidden" id="wdtNonceFrontendServerSide_7" name="wdtNonceFrontendServerSide_7" value="9e7b4ca551" /><input type="hidden" name="_wp_http_referer" value="/disponibilites-phase-4/" /> <input type="hidden" id="table_1_desc" | |
| 374 | + value='{"tableId":"table_1","tableType":"manual","selector":"#table_1","responsive":true,"responsiveAction":"icon","editable":false,"inlineEditing":false,"infoBlock":false,"pagination_top":0,"pagination":1,"paginationAlign":"right","paginationLayout":"full_numbers","paginationLayoutMobile":"simple","file_location":"","tableSkin":"light","table_wcag":0,"simple_template_id":0,"scrollable":true,"fixedLayout":false,"globalSearch":false,"showRowsPerPage":false,"popoverTools":false,"loader":1,"showCartInformation":0,"hideBeforeLoad":false,"number_format":1,"decimalPlaces":2,"spinnerSrc":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/wpdatatables\/assets\/\/img\/spinner.gif","index_column":0,"groupingEnabled":false,"tableWpId":7,"dataTableParams":{"sDom":"BT\u003C\u0027clear\u0027\u003E\u003C\u0027wdtscroll\u0027t\u003Ep","bSortCellsTop":false,"bFilter":true,"bPaginate":true,"sPaginationType":"full_numbers","aLengthMenu":[[1,5,10,25,50,100,-1],[1,5,10,25,50,100,"Tout"]],"iDisplayLength":-1,"columnDefs":[{"sType":"formatted-num","wdtType":"int","bVisible":false,"orderable":true,"searchable":true,"InputType":"text","name":"wdt_ID","origHeader":"wdt_ID","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":"numdata integer column-wdt_id","aTargets":[0]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"unit","origHeader":"unit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-unit","aTargets":[1]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"modle","origHeader":"modle","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-modle","aTargets":[2]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"tage","origHeader":"tage","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-tage","aTargets":[3]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"pices","origHeader":"pices","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-pices","aTargets":[4]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"superficiepc","origHeader":"superficiepc","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-superficiepc","aTargets":[5]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"salledeausupp","origHeader":"salledeausupp","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-salledeausupp","aTargets":[6]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"disponibilit","origHeader":"disponibilit","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-disponibilit","aTargets":[7]},{"sType":"string","wdtType":"string","bVisible":false,"orderable":true,"searchable":true,"InputType":"text","name":"prix","origHeader":"prix","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-prix","aTargets":[8]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"statut","origHeader":"statut","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-statut","aTargets":[9]},{"sType":"string","wdtType":"link","bVisible":true,"orderable":true,"searchable":true,"InputType":"link","name":"plan","origHeader":"plan","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-plan","aTargets":[10]},{"sType":"string","wdtType":"string","bVisible":true,"orderable":true,"searchable":true,"InputType":"text","name":"dtail","origHeader":"dtail","notNull":false,"conditionalFormattingRules":[],"transformValueRules":"","className":" column-dtail","aTargets":[11]}],"bAutoWidth":false,"order":[[0,"asc"]],"ordering":true,"fixedHeader":{"header":false,"headerOffset":0},"fixedColumns":false,"oLanguage":{"sSearchPlaceholder":""},"buttons":[],"bProcessing":false,"serverSide":true,"ajax":{"url":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php?action=get_wdtable&table_id=7","type":"POST"},"oSearch":{"bSmart":false,"bRegex":false,"sSearch":""}},"customRowDisplay":"","tabletWidth":"1024","mobileWidth":"480","renderFilter":"footer","advancedFilterEnabled":false,"serverSide":true,"autoRefreshInterval":0,"processing":true,"fnServerData":true,"columnsFixed":0,"sumFunctionsLabel":"","avgFunctionsLabel":"","minFunctionsLabel":"","maxFunctionsLabel":"","columnsDecimalPlaces":{"wdt_ID":-1,"unit":-1,"modle":-1,"tage":-1,"pices":-1,"superficiepc":-1,"salledeausupp":-1,"disponibilit":-1,"prix":-1,"statut":-1,"plan":-1,"dtail":-1},"columnsThousandsSeparator":{"wdt_ID":0},"sumColumns":[],"avgColumns":[],"sumAvgColumns":[],"timeFormat":"h:i A","datepickFormat":"dd\/mm\/yy"}'/> | |
| 375 | + | |
| 376 | + <table id="table_1" | |
| 377 | + class=" scroll responsive display nowrap wdt-no-display data-t data-t wpDataTable wpDataTableID-7 " | |
| 378 | + style="" | |
| 379 | + data-described-by='table_1_desc' | |
| 380 | + data-wpdatatable_id="7"> | |
| 381 | + | |
| 382 | + <!-- Table header --> | |
| 383 | + | |
| 384 | +<thead> | |
| 385 | +<tr> | |
| 386 | + <th | |
| 387 | + class=" wdtheader sort numdata integer " | |
| 388 | + style=""> wdt_ID</th> <th | |
| 389 | + data-class="expand" class=" wdtheader sort " | |
| 390 | + style=""> UNITÉ</th> <th | |
| 391 | + class=" wdtheader sort " | |
| 392 | + style=""> MODÈLE</th> <th | |
| 393 | + class=" wdtheader sort " | |
| 394 | + style=""> ÉTAGE</th> <th | |
| 395 | + class=" wdtheader sort " | |
| 396 | + style=""> PIÈCES</th> <th | |
| 397 | + class=" wdtheader sort " | |
| 398 | + style=""> SUPERFICIE p.c.</th> <th | |
| 399 | + class=" wdtheader sort " | |
| 400 | + style=""> SALLE D'EAU SUPP.</th> <th | |
| 401 | + class=" wdtheader sort " | |
| 402 | + style=""> DISPONIBILITÉ</th> <th | |
| 403 | + class=" wdtheader sort " | |
| 404 | + style=""> PRIX</th> <th | |
| 405 | + class=" wdtheader sort " | |
| 406 | + style=""> STATUT</th> <th | |
| 407 | + class=" wdtheader sort " | |
| 408 | + style=""> PLAN</th> <th | |
| 409 | + class=" wdtheader sort " | |
| 410 | + style=""> DÉTAIL</th> </tr> | |
| 411 | +</thead> | |
| 412 | + <!-- /Table header --> | |
| 413 | + | |
| 414 | + <!-- Table body --> | |
| 415 | + | |
| 416 | +<tbody> | |
| 417 | +<!-- Table body --> | |
| 418 | +<div data-id="7" | |
| 419 | + class="wdt-timeline-item wdt-timeline-table_1" | |
| 420 | + style=""> | |
| 421 | + <div class="wdt-table-loader"> | |
| 422 | + <div class="wdt-table-loader-row wdt-table-loader-header"> | |
| 423 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 424 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 425 | + <div class="wdt-table-loader-header-cell wdt-animated-background"></div> | |
| 426 | + </div> | |
| 427 | + <div class="wdt-table-loader-row"> | |
| 428 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 429 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 430 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 431 | + </div> | |
| 432 | + <div class="wdt-table-loader-row"> | |
| 433 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 434 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 435 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 436 | + </div> | |
| 437 | + <div class="wdt-table-loader-row"> | |
| 438 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 439 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 440 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 441 | + </div> | |
| 442 | + <div class="wdt-table-loader-row"> | |
| 443 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 444 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 445 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 446 | + </div> | |
| 447 | + <div class="wdt-table-loader-row"> | |
| 448 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 449 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 450 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 451 | + </div> | |
| 452 | + <div class="wdt-table-loader-row"> | |
| 453 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 454 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 455 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 456 | + </div> | |
| 457 | + <div class="wdt-table-loader-row"> | |
| 458 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 459 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 460 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 461 | + </div> | |
| 462 | + <div class="wdt-table-loader-row"> | |
| 463 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 464 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 465 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 466 | + </div> | |
| 467 | + <div class="wdt-table-loader-row"> | |
| 468 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 469 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 470 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 471 | + </div> | |
| 472 | + <div class="wdt-table-loader-row"> | |
| 473 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 474 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 475 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 476 | + </div> | |
| 477 | + <div class="wdt-table-loader-row"> | |
| 478 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 479 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 480 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 481 | + </div> | |
| 482 | + <div class="wdt-table-loader-row"> | |
| 483 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 484 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 485 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 486 | + </div> | |
| 487 | + <div class="wdt-table-loader-row"> | |
| 488 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 489 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 490 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 491 | + </div> | |
| 492 | + <div class="wdt-table-loader-row"> | |
| 493 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 494 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 495 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 496 | + </div> | |
| 497 | + <div class="wdt-table-loader-row"> | |
| 498 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 499 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 500 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 501 | + </div> | |
| 502 | + <div class="wdt-table-loader-row"> | |
| 503 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 504 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 505 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 506 | + </div> | |
| 507 | + <div class="wdt-table-loader-row"> | |
| 508 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 509 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 510 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 511 | + </div> | |
| 512 | + <div class="wdt-table-loader-row"> | |
| 513 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 514 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 515 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 516 | + </div> | |
| 517 | + <div class="wdt-table-loader-row"> | |
| 518 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 519 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 520 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 521 | + </div> | |
| 522 | + <div class="wdt-table-loader-row"> | |
| 523 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 524 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 525 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 526 | + </div> | |
| 527 | + <div class="wdt-table-loader-row"> | |
| 528 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 529 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 530 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 531 | + </div> | |
| 532 | + <div class="wdt-table-loader-row"> | |
| 533 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 534 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 535 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 536 | + </div> | |
| 537 | + <div class="wdt-table-loader-row"> | |
| 538 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 539 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 540 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 541 | + </div> | |
| 542 | + <div class="wdt-table-loader-row"> | |
| 543 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 544 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 545 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 546 | + </div> | |
| 547 | + <div class="wdt-table-loader-row"> | |
| 548 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 549 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 550 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 551 | + </div> | |
| 552 | + <div class="wdt-table-loader-row"> | |
| 553 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 554 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 555 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 556 | + </div> | |
| 557 | + <div class="wdt-table-loader-row"> | |
| 558 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 559 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 560 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 561 | + </div> | |
| 562 | + <div class="wdt-table-loader-row"> | |
| 563 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 564 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 565 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 566 | + </div> | |
| 567 | + <div class="wdt-table-loader-row"> | |
| 568 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 569 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 570 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 571 | + </div> | |
| 572 | + <div class="wdt-table-loader-row"> | |
| 573 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 574 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 575 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 576 | + </div> | |
| 577 | + <div class="wdt-table-loader-row"> | |
| 578 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 579 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 580 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 581 | + </div> | |
| 582 | + <div class="wdt-table-loader-row"> | |
| 583 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 584 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 585 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 586 | + </div> | |
| 587 | + <div class="wdt-table-loader-row"> | |
| 588 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 589 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 590 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 591 | + </div> | |
| 592 | + <div class="wdt-table-loader-row"> | |
| 593 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 594 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 595 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 596 | + </div> | |
| 597 | + <div class="wdt-table-loader-row"> | |
| 598 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 599 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 600 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 601 | + </div> | |
| 602 | + <div class="wdt-table-loader-row"> | |
| 603 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 604 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 605 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 606 | + </div> | |
| 607 | + <div class="wdt-table-loader-row"> | |
| 608 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 609 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 610 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 611 | + </div> | |
| 612 | + <div class="wdt-table-loader-row"> | |
| 613 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 614 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 615 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 616 | + </div> | |
| 617 | + <div class="wdt-table-loader-row"> | |
| 618 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 619 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 620 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 621 | + </div> | |
| 622 | + <div class="wdt-table-loader-row"> | |
| 623 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 624 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 625 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 626 | + </div> | |
| 627 | + <div class="wdt-table-loader-row"> | |
| 628 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 629 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 630 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 631 | + </div> | |
| 632 | + <div class="wdt-table-loader-row"> | |
| 633 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 634 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 635 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 636 | + </div> | |
| 637 | + <div class="wdt-table-loader-row"> | |
| 638 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 639 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 640 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 641 | + </div> | |
| 642 | + <div class="wdt-table-loader-row"> | |
| 643 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 644 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 645 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 646 | + </div> | |
| 647 | + <div class="wdt-table-loader-row"> | |
| 648 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 649 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 650 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 651 | + </div> | |
| 652 | + <div class="wdt-table-loader-row"> | |
| 653 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 654 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 655 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 656 | + </div> | |
| 657 | + <div class="wdt-table-loader-row"> | |
| 658 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 659 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 660 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 661 | + </div> | |
| 662 | + <div class="wdt-table-loader-row"> | |
| 663 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 664 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 665 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 666 | + </div> | |
| 667 | + <div class="wdt-table-loader-row"> | |
| 668 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 669 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 670 | + <div class="wdt-table-loader-cell wdt-animated-background"></div> | |
| 671 | + </div> | |
| 672 | + </div> | |
| 673 | +</div><!-- /Table body --> | |
| 674 | + <tr id="table_7_row_0" | |
| 675 | + data-row-index="0"> | |
| 676 | + <td style="">1</td> | |
| 677 | + <td style="">101</td> | |
| 678 | + <td style="">F</td> | |
| 679 | + <td style="">1</td> | |
| 680 | + <td style="">4 1/2</td> | |
| 681 | + <td style="">1200</td> | |
| 682 | + <td style="">OUI</td> | |
| 683 | + <td style="">Automne 2026</td> | |
| 684 | + <td style=""></td> | |
| 685 | + <td style="">Disponible</td> | |
| 686 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 687 | + <td style=""></td> | |
| 688 | + </tr> | |
| 689 | + <tr id="table_7_row_1" | |
| 690 | + data-row-index="1"> | |
| 691 | + <td style="">2</td> | |
| 692 | + <td style="">102</td> | |
| 693 | + <td style="">A’</td> | |
| 694 | + <td style="">1</td> | |
| 695 | + <td style="">4 1/2</td> | |
| 696 | + <td style="">1155</td> | |
| 697 | + <td style="">NON</td> | |
| 698 | + <td style="">Automne 2026</td> | |
| 699 | + <td style=""></td> | |
| 700 | + <td style="">Loué</td> | |
| 701 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 702 | + <td style=""></td> | |
| 703 | + </tr> | |
| 704 | + <tr id="table_7_row_2" | |
| 705 | + data-row-index="2"> | |
| 706 | + <td style="">3</td> | |
| 707 | + <td style="">103</td> | |
| 708 | + <td style="">I</td> | |
| 709 | + <td style="">1</td> | |
| 710 | + <td style="">3 1/2</td> | |
| 711 | + <td style="">680</td> | |
| 712 | + <td style="">NON</td> | |
| 713 | + <td style="">Automne 2026</td> | |
| 714 | + <td style=""></td> | |
| 715 | + <td style="">Loué</td> | |
| 716 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_I.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 717 | + <td style=""></td> | |
| 718 | + </tr> | |
| 719 | + <tr id="table_7_row_3" | |
| 720 | + data-row-index="3"> | |
| 721 | + <td style="">4</td> | |
| 722 | + <td style="">104</td> | |
| 723 | + <td style="">B’</td> | |
| 724 | + <td style="">1</td> | |
| 725 | + <td style="">4 1/2</td> | |
| 726 | + <td style="">1200</td> | |
| 727 | + <td style="">NON</td> | |
| 728 | + <td style="">Automne 2026</td> | |
| 729 | + <td style=""></td> | |
| 730 | + <td style="">Loué</td> | |
| 731 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 732 | + <td style=""></td> | |
| 733 | + </tr> | |
| 734 | + <tr id="table_7_row_4" | |
| 735 | + data-row-index="4"> | |
| 736 | + <td style="">5</td> | |
| 737 | + <td style="">105</td> | |
| 738 | + <td style="">H</td> | |
| 739 | + <td style="">1</td> | |
| 740 | + <td style="">3 1/2</td> | |
| 741 | + <td style="">740</td> | |
| 742 | + <td style="">NON</td> | |
| 743 | + <td style="">Automne 2026</td> | |
| 744 | + <td style=""></td> | |
| 745 | + <td style="">Loué</td> | |
| 746 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_H.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 747 | + <td style=""></td> | |
| 748 | + </tr> | |
| 749 | + <tr id="table_7_row_5" | |
| 750 | + data-row-index="5"> | |
| 751 | + <td style="">6</td> | |
| 752 | + <td style="">106</td> | |
| 753 | + <td style="">G</td> | |
| 754 | + <td style="">1</td> | |
| 755 | + <td style="">4 1/2</td> | |
| 756 | + <td style="">1200</td> | |
| 757 | + <td style="">OUI</td> | |
| 758 | + <td style="">Automne 2026</td> | |
| 759 | + <td style=""></td> | |
| 760 | + <td style="">Loué</td> | |
| 761 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 762 | + <td style=""></td> | |
| 763 | + </tr> | |
| 764 | + <tr id="table_7_row_6" | |
| 765 | + data-row-index="6"> | |
| 766 | + <td style="">7</td> | |
| 767 | + <td style="">107</td> | |
| 768 | + <td style="">A’</td> | |
| 769 | + <td style="">1</td> | |
| 770 | + <td style="">4 1/2</td> | |
| 771 | + <td style="">1155</td> | |
| 772 | + <td style="">NON</td> | |
| 773 | + <td style="">Automne 2026</td> | |
| 774 | + <td style=""></td> | |
| 775 | + <td style="">Disponible</td> | |
| 776 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 777 | + <td style=""></td> | |
| 778 | + </tr> | |
| 779 | + <tr id="table_7_row_7" | |
| 780 | + data-row-index="7"> | |
| 781 | + <td style="">8</td> | |
| 782 | + <td style="">108</td> | |
| 783 | + <td style="">A</td> | |
| 784 | + <td style="">1</td> | |
| 785 | + <td style="">4 1/2</td> | |
| 786 | + <td style="">1155</td> | |
| 787 | + <td style="">NON</td> | |
| 788 | + <td style="">Automne 2026</td> | |
| 789 | + <td style=""></td> | |
| 790 | + <td style="">Disponible</td> | |
| 791 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 792 | + <td style=""></td> | |
| 793 | + </tr> | |
| 794 | + <tr id="table_7_row_8" | |
| 795 | + data-row-index="8"> | |
| 796 | + <td style="">9</td> | |
| 797 | + <td style="">201</td> | |
| 798 | + <td style="">F</td> | |
| 799 | + <td style="">2</td> | |
| 800 | + <td style="">4 1/2</td> | |
| 801 | + <td style="">1200</td> | |
| 802 | + <td style="">OUI</td> | |
| 803 | + <td style="">Automne 2026</td> | |
| 804 | + <td style=""></td> | |
| 805 | + <td style="">Disponible</td> | |
| 806 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_F.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 807 | + <td style=""></td> | |
| 808 | + </tr> | |
| 809 | + <tr id="table_7_row_9" | |
| 810 | + data-row-index="9"> | |
| 811 | + <td style="">10</td> | |
| 812 | + <td style="">202</td> | |
| 813 | + <td style="">A’</td> | |
| 814 | + <td style="">2</td> | |
| 815 | + <td style="">4 1/2</td> | |
| 816 | + <td style="">1155</td> | |
| 817 | + <td style="">NON</td> | |
| 818 | + <td style="">Automne 2026</td> | |
| 819 | + <td style=""></td> | |
| 820 | + <td style="">Loué</td> | |
| 821 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 822 | + <td style=""></td> | |
| 823 | + </tr> | |
| 824 | + <tr id="table_7_row_10" | |
| 825 | + data-row-index="10"> | |
| 826 | + <td style="">11</td> | |
| 827 | + <td style="">203</td> | |
| 828 | + <td style="">E’</td> | |
| 829 | + <td style="">2</td> | |
| 830 | + <td style="">3 1/2</td> | |
| 831 | + <td style="">950</td> | |
| 832 | + <td style="">NON</td> | |
| 833 | + <td style="">Automne 2026</td> | |
| 834 | + <td style=""></td> | |
| 835 | + <td style="">Disponible</td> | |
| 836 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 837 | + <td style=""></td> | |
| 838 | + </tr> | |
| 839 | + <tr id="table_7_row_11" | |
| 840 | + data-row-index="11"> | |
| 841 | + <td style="">12</td> | |
| 842 | + <td style="">204</td> | |
| 843 | + <td style="">B’</td> | |
| 844 | + <td style="">2</td> | |
| 845 | + <td style="">4 1/2</td> | |
| 846 | + <td style="">1200</td> | |
| 847 | + <td style="">NON</td> | |
| 848 | + <td style="">Automne 2026</td> | |
| 849 | + <td style=""></td> | |
| 850 | + <td style="">Loué</td> | |
| 851 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 852 | + <td style=""></td> | |
| 853 | + </tr> | |
| 854 | + <tr id="table_7_row_12" | |
| 855 | + data-row-index="12"> | |
| 856 | + <td style="">13</td> | |
| 857 | + <td style="">205</td> | |
| 858 | + <td style="">D</td> | |
| 859 | + <td style="">2</td> | |
| 860 | + <td style="">3 1/2</td> | |
| 861 | + <td style="">860</td> | |
| 862 | + <td style="">NON</td> | |
| 863 | + <td style="">Automne 2026</td> | |
| 864 | + <td style=""></td> | |
| 865 | + <td style="">Loué</td> | |
| 866 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_D.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 867 | + <td style=""></td> | |
| 868 | + </tr> | |
| 869 | + <tr id="table_7_row_13" | |
| 870 | + data-row-index="13"> | |
| 871 | + <td style="">14</td> | |
| 872 | + <td style="">206</td> | |
| 873 | + <td style="">G</td> | |
| 874 | + <td style="">2</td> | |
| 875 | + <td style="">4 1/2</td> | |
| 876 | + <td style="">1200</td> | |
| 877 | + <td style="">OUI</td> | |
| 878 | + <td style="">Automne 2026</td> | |
| 879 | + <td style=""></td> | |
| 880 | + <td style="">Loué</td> | |
| 881 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 882 | + <td style=""></td> | |
| 883 | + </tr> | |
| 884 | + <tr id="table_7_row_14" | |
| 885 | + data-row-index="14"> | |
| 886 | + <td style="">15</td> | |
| 887 | + <td style="">207</td> | |
| 888 | + <td style="">A’</td> | |
| 889 | + <td style="">2</td> | |
| 890 | + <td style="">4 1/2</td> | |
| 891 | + <td style="">1155</td> | |
| 892 | + <td style="">NON</td> | |
| 893 | + <td style="">Automne 2026</td> | |
| 894 | + <td style=""></td> | |
| 895 | + <td style="">Disponible</td> | |
| 896 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 897 | + <td style=""></td> | |
| 898 | + </tr> | |
| 899 | + <tr id="table_7_row_15" | |
| 900 | + data-row-index="15"> | |
| 901 | + <td style="">16</td> | |
| 902 | + <td style="">208</td> | |
| 903 | + <td style="">A</td> | |
| 904 | + <td style="">2</td> | |
| 905 | + <td style="">4 1/2</td> | |
| 906 | + <td style="">1155</td> | |
| 907 | + <td style="">NON</td> | |
| 908 | + <td style="">Automne 2026</td> | |
| 909 | + <td style=""></td> | |
| 910 | + <td style="">Loué</td> | |
| 911 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 912 | + <td style=""></td> | |
| 913 | + </tr> | |
| 914 | + <tr id="table_7_row_16" | |
| 915 | + data-row-index="16"> | |
| 916 | + <td style="">17</td> | |
| 917 | + <td style="">301</td> | |
| 918 | + <td style="">F</td> | |
| 919 | + <td style="">3</td> | |
| 920 | + <td style="">4 1/2</td> | |
| 921 | + <td style="">1200</td> | |
| 922 | + <td style="">OUI</td> | |
| 923 | + <td style="">Automne 2026</td> | |
| 924 | + <td style=""></td> | |
| 925 | + <td style="">Loué</td> | |
| 926 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_F.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 927 | + <td style=""></td> | |
| 928 | + </tr> | |
| 929 | + <tr id="table_7_row_17" | |
| 930 | + data-row-index="17"> | |
| 931 | + <td style="">18</td> | |
| 932 | + <td style="">302</td> | |
| 933 | + <td style="">A’</td> | |
| 934 | + <td style="">3</td> | |
| 935 | + <td style="">4 1/2</td> | |
| 936 | + <td style="">1155</td> | |
| 937 | + <td style="">NON</td> | |
| 938 | + <td style="">Automne 2026</td> | |
| 939 | + <td style=""></td> | |
| 940 | + <td style="">Disponible</td> | |
| 941 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 942 | + <td style=""></td> | |
| 943 | + </tr> | |
| 944 | + <tr id="table_7_row_18" | |
| 945 | + data-row-index="18"> | |
| 946 | + <td style="">19</td> | |
| 947 | + <td style="">303</td> | |
| 948 | + <td style="">E’</td> | |
| 949 | + <td style="">3</td> | |
| 950 | + <td style="">3 1/2</td> | |
| 951 | + <td style="">950</td> | |
| 952 | + <td style="">NON</td> | |
| 953 | + <td style="">Automne 2026</td> | |
| 954 | + <td style=""></td> | |
| 955 | + <td style="">Disponible</td> | |
| 956 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 957 | + <td style=""></td> | |
| 958 | + </tr> | |
| 959 | + <tr id="table_7_row_19" | |
| 960 | + data-row-index="19"> | |
| 961 | + <td style="">20</td> | |
| 962 | + <td style="">304</td> | |
| 963 | + <td style="">B’</td> | |
| 964 | + <td style="">3</td> | |
| 965 | + <td style="">4 1/2</td> | |
| 966 | + <td style="">1200</td> | |
| 967 | + <td style="">NON</td> | |
| 968 | + <td style="">Automne 2026</td> | |
| 969 | + <td style=""></td> | |
| 970 | + <td style="">Loué</td> | |
| 971 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 972 | + <td style=""></td> | |
| 973 | + </tr> | |
| 974 | + <tr id="table_7_row_20" | |
| 975 | + data-row-index="20"> | |
| 976 | + <td style="">21</td> | |
| 977 | + <td style="">305</td> | |
| 978 | + <td style="">D</td> | |
| 979 | + <td style="">3</td> | |
| 980 | + <td style="">3 1/2</td> | |
| 981 | + <td style="">860</td> | |
| 982 | + <td style="">NON</td> | |
| 983 | + <td style="">Automne 2026</td> | |
| 984 | + <td style=""></td> | |
| 985 | + <td style="">Loué</td> | |
| 986 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_D.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 987 | + <td style=""></td> | |
| 988 | + </tr> | |
| 989 | + <tr id="table_7_row_21" | |
| 990 | + data-row-index="21"> | |
| 991 | + <td style="">22</td> | |
| 992 | + <td style="">306</td> | |
| 993 | + <td style="">G</td> | |
| 994 | + <td style="">3</td> | |
| 995 | + <td style="">4 1/2</td> | |
| 996 | + <td style="">1200</td> | |
| 997 | + <td style="">OUI</td> | |
| 998 | + <td style="">Automne 2026</td> | |
| 999 | + <td style=""></td> | |
| 1000 | + <td style="">Loué</td> | |
| 1001 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1002 | + <td style=""></td> | |
| 1003 | + </tr> | |
| 1004 | + <tr id="table_7_row_22" | |
| 1005 | + data-row-index="22"> | |
| 1006 | + <td style="">23</td> | |
| 1007 | + <td style="">307</td> | |
| 1008 | + <td style="">A’</td> | |
| 1009 | + <td style="">3</td> | |
| 1010 | + <td style="">4 1/2</td> | |
| 1011 | + <td style="">1155</td> | |
| 1012 | + <td style="">NON</td> | |
| 1013 | + <td style="">Automne 2026</td> | |
| 1014 | + <td style=""></td> | |
| 1015 | + <td style="">Disponible</td> | |
| 1016 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1017 | + <td style=""></td> | |
| 1018 | + </tr> | |
| 1019 | + <tr id="table_7_row_23" | |
| 1020 | + data-row-index="23"> | |
| 1021 | + <td style="">24</td> | |
| 1022 | + <td style="">308</td> | |
| 1023 | + <td style="">A</td> | |
| 1024 | + <td style="">3</td> | |
| 1025 | + <td style="">4 1/2</td> | |
| 1026 | + <td style="">1155</td> | |
| 1027 | + <td style="">NON</td> | |
| 1028 | + <td style="">Automne 2026</td> | |
| 1029 | + <td style=""></td> | |
| 1030 | + <td style="">Disponible</td> | |
| 1031 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1032 | + <td style=""></td> | |
| 1033 | + </tr> | |
| 1034 | + <tr id="table_7_row_24" | |
| 1035 | + data-row-index="24"> | |
| 1036 | + <td style="">25</td> | |
| 1037 | + <td style="">401</td> | |
| 1038 | + <td style="">F</td> | |
| 1039 | + <td style="">4</td> | |
| 1040 | + <td style="">4 1/2</td> | |
| 1041 | + <td style="">1200</td> | |
| 1042 | + <td style="">OUI</td> | |
| 1043 | + <td style="">Automne 2026</td> | |
| 1044 | + <td style=""></td> | |
| 1045 | + <td style="">Loué</td> | |
| 1046 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_F.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1047 | + <td style=""></td> | |
| 1048 | + </tr> | |
| 1049 | + <tr id="table_7_row_25" | |
| 1050 | + data-row-index="25"> | |
| 1051 | + <td style="">26</td> | |
| 1052 | + <td style="">402</td> | |
| 1053 | + <td style="">A’</td> | |
| 1054 | + <td style="">4</td> | |
| 1055 | + <td style="">4 1/2</td> | |
| 1056 | + <td style="">1155</td> | |
| 1057 | + <td style="">NON</td> | |
| 1058 | + <td style="">Automne 2026</td> | |
| 1059 | + <td style=""></td> | |
| 1060 | + <td style="">Loué</td> | |
| 1061 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1062 | + <td style=""></td> | |
| 1063 | + </tr> | |
| 1064 | + <tr id="table_7_row_26" | |
| 1065 | + data-row-index="26"> | |
| 1066 | + <td style="">27</td> | |
| 1067 | + <td style="">403</td> | |
| 1068 | + <td style="">E’</td> | |
| 1069 | + <td style="">4</td> | |
| 1070 | + <td style="">3 1/2</td> | |
| 1071 | + <td style="">950</td> | |
| 1072 | + <td style="">NON</td> | |
| 1073 | + <td style="">Automne 2026</td> | |
| 1074 | + <td style=""></td> | |
| 1075 | + <td style="">Disponible</td> | |
| 1076 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1077 | + <td style=""></td> | |
| 1078 | + </tr> | |
| 1079 | + <tr id="table_7_row_27" | |
| 1080 | + data-row-index="27"> | |
| 1081 | + <td style="">28</td> | |
| 1082 | + <td style="">404</td> | |
| 1083 | + <td style="">B’</td> | |
| 1084 | + <td style="">4</td> | |
| 1085 | + <td style="">4 1/2</td> | |
| 1086 | + <td style="">1200</td> | |
| 1087 | + <td style="">NON</td> | |
| 1088 | + <td style="">Automne 2026</td> | |
| 1089 | + <td style=""></td> | |
| 1090 | + <td style="">Loué</td> | |
| 1091 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1092 | + <td style=""></td> | |
| 1093 | + </tr> | |
| 1094 | + <tr id="table_7_row_28" | |
| 1095 | + data-row-index="28"> | |
| 1096 | + <td style="">29</td> | |
| 1097 | + <td style="">405</td> | |
| 1098 | + <td style="">D</td> | |
| 1099 | + <td style="">4</td> | |
| 1100 | + <td style="">3 1/2</td> | |
| 1101 | + <td style="">860</td> | |
| 1102 | + <td style="">NON</td> | |
| 1103 | + <td style="">Automne 2026</td> | |
| 1104 | + <td style=""></td> | |
| 1105 | + <td style="">Loué</td> | |
| 1106 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_D.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1107 | + <td style=""></td> | |
| 1108 | + </tr> | |
| 1109 | + <tr id="table_7_row_29" | |
| 1110 | + data-row-index="29"> | |
| 1111 | + <td style="">30</td> | |
| 1112 | + <td style="">406</td> | |
| 1113 | + <td style="">G</td> | |
| 1114 | + <td style="">4</td> | |
| 1115 | + <td style="">4 1/2</td> | |
| 1116 | + <td style="">1200</td> | |
| 1117 | + <td style="">OUI</td> | |
| 1118 | + <td style="">Automne 2026</td> | |
| 1119 | + <td style=""></td> | |
| 1120 | + <td style="">Loué</td> | |
| 1121 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1122 | + <td style=""></td> | |
| 1123 | + </tr> | |
| 1124 | + <tr id="table_7_row_30" | |
| 1125 | + data-row-index="30"> | |
| 1126 | + <td style="">31</td> | |
| 1127 | + <td style="">407</td> | |
| 1128 | + <td style="">A’</td> | |
| 1129 | + <td style="">4</td> | |
| 1130 | + <td style="">4 1/2</td> | |
| 1131 | + <td style="">1155</td> | |
| 1132 | + <td style="">NON</td> | |
| 1133 | + <td style="">Automne 2026</td> | |
| 1134 | + <td style=""></td> | |
| 1135 | + <td style="">Disponible</td> | |
| 1136 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1137 | + <td style=""></td> | |
| 1138 | + </tr> | |
| 1139 | + <tr id="table_7_row_31" | |
| 1140 | + data-row-index="31"> | |
| 1141 | + <td style="">32</td> | |
| 1142 | + <td style="">408</td> | |
| 1143 | + <td style="">A</td> | |
| 1144 | + <td style="">4</td> | |
| 1145 | + <td style="">4 1/2</td> | |
| 1146 | + <td style="">1155</td> | |
| 1147 | + <td style="">NON</td> | |
| 1148 | + <td style="">Automne 2026</td> | |
| 1149 | + <td style=""></td> | |
| 1150 | + <td style="">Loué</td> | |
| 1151 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1152 | + <td style=""></td> | |
| 1153 | + </tr> | |
| 1154 | + <tr id="table_7_row_32" | |
| 1155 | + data-row-index="32"> | |
| 1156 | + <td style="">33</td> | |
| 1157 | + <td style="">501</td> | |
| 1158 | + <td style="">F</td> | |
| 1159 | + <td style="">5</td> | |
| 1160 | + <td style="">4 1/2</td> | |
| 1161 | + <td style="">1200</td> | |
| 1162 | + <td style="">OUI</td> | |
| 1163 | + <td style="">Automne 2026</td> | |
| 1164 | + <td style=""></td> | |
| 1165 | + <td style="">Disponible</td> | |
| 1166 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_F.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1167 | + <td style=""></td> | |
| 1168 | + </tr> | |
| 1169 | + <tr id="table_7_row_33" | |
| 1170 | + data-row-index="33"> | |
| 1171 | + <td style="">34</td> | |
| 1172 | + <td style="">502</td> | |
| 1173 | + <td style="">A’</td> | |
| 1174 | + <td style="">5</td> | |
| 1175 | + <td style="">4 1/2</td> | |
| 1176 | + <td style="">1155</td> | |
| 1177 | + <td style="">NON</td> | |
| 1178 | + <td style="">Automne 2026</td> | |
| 1179 | + <td style=""></td> | |
| 1180 | + <td style="">Loué</td> | |
| 1181 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1182 | + <td style=""></td> | |
| 1183 | + </tr> | |
| 1184 | + <tr id="table_7_row_34" | |
| 1185 | + data-row-index="34"> | |
| 1186 | + <td style="">35</td> | |
| 1187 | + <td style="">503</td> | |
| 1188 | + <td style="">E’</td> | |
| 1189 | + <td style="">5</td> | |
| 1190 | + <td style="">3 1/2</td> | |
| 1191 | + <td style="">950</td> | |
| 1192 | + <td style="">NON</td> | |
| 1193 | + <td style="">Automne 2026</td> | |
| 1194 | + <td style=""></td> | |
| 1195 | + <td style="">Disponible</td> | |
| 1196 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1197 | + <td style=""></td> | |
| 1198 | + </tr> | |
| 1199 | + <tr id="table_7_row_35" | |
| 1200 | + data-row-index="35"> | |
| 1201 | + <td style="">36</td> | |
| 1202 | + <td style="">504</td> | |
| 1203 | + <td style="">B’</td> | |
| 1204 | + <td style="">5</td> | |
| 1205 | + <td style="">4 1/2</td> | |
| 1206 | + <td style="">1200</td> | |
| 1207 | + <td style="">NON</td> | |
| 1208 | + <td style="">Automne 2026</td> | |
| 1209 | + <td style=""></td> | |
| 1210 | + <td style="">Loué</td> | |
| 1211 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1212 | + <td style=""></td> | |
| 1213 | + </tr> | |
| 1214 | + <tr id="table_7_row_36" | |
| 1215 | + data-row-index="36"> | |
| 1216 | + <td style="">37</td> | |
| 1217 | + <td style="">505</td> | |
| 1218 | + <td style="">D</td> | |
| 1219 | + <td style="">5</td> | |
| 1220 | + <td style="">3 1/2</td> | |
| 1221 | + <td style="">860</td> | |
| 1222 | + <td style="">NON</td> | |
| 1223 | + <td style="">Automne 2026</td> | |
| 1224 | + <td style=""></td> | |
| 1225 | + <td style="">Disponible</td> | |
| 1226 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1227 | + <td style=""></td> | |
| 1228 | + </tr> | |
| 1229 | + <tr id="table_7_row_37" | |
| 1230 | + data-row-index="37"> | |
| 1231 | + <td style="">38</td> | |
| 1232 | + <td style="">506</td> | |
| 1233 | + <td style="">G</td> | |
| 1234 | + <td style="">5</td> | |
| 1235 | + <td style="">4 1/2</td> | |
| 1236 | + <td style="">1200</td> | |
| 1237 | + <td style="">OUI</td> | |
| 1238 | + <td style="">Automne 2026</td> | |
| 1239 | + <td style=""></td> | |
| 1240 | + <td style="">Disponible</td> | |
| 1241 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1242 | + <td style=""></td> | |
| 1243 | + </tr> | |
| 1244 | + <tr id="table_7_row_38" | |
| 1245 | + data-row-index="38"> | |
| 1246 | + <td style="">39</td> | |
| 1247 | + <td style="">507</td> | |
| 1248 | + <td style="">A’</td> | |
| 1249 | + <td style="">5</td> | |
| 1250 | + <td style="">4 1/2</td> | |
| 1251 | + <td style="">1155</td> | |
| 1252 | + <td style="">NON</td> | |
| 1253 | + <td style="">Automne 2026</td> | |
| 1254 | + <td style=""></td> | |
| 1255 | + <td style="">Disponible</td> | |
| 1256 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1257 | + <td style=""></td> | |
| 1258 | + </tr> | |
| 1259 | + <tr id="table_7_row_39" | |
| 1260 | + data-row-index="39"> | |
| 1261 | + <td style="">40</td> | |
| 1262 | + <td style="">508</td> | |
| 1263 | + <td style="">A</td> | |
| 1264 | + <td style="">5</td> | |
| 1265 | + <td style="">4 1/2</td> | |
| 1266 | + <td style="">1155</td> | |
| 1267 | + <td style="">NON</td> | |
| 1268 | + <td style="">Automne 2026</td> | |
| 1269 | + <td style=""></td> | |
| 1270 | + <td style="">Loué</td> | |
| 1271 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1272 | + <td style=""></td> | |
| 1273 | + </tr> | |
| 1274 | + <tr id="table_7_row_40" | |
| 1275 | + data-row-index="40"> | |
| 1276 | + <td style="">41</td> | |
| 1277 | + <td style="">601</td> | |
| 1278 | + <td style="">A</td> | |
| 1279 | + <td style="">6</td> | |
| 1280 | + <td style="">4 1/2</td> | |
| 1281 | + <td style="">1155</td> | |
| 1282 | + <td style="">NON</td> | |
| 1283 | + <td style="">Automne 2026</td> | |
| 1284 | + <td style=""></td> | |
| 1285 | + <td style="">Disponible</td> | |
| 1286 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1287 | + <td style=""></td> | |
| 1288 | + </tr> | |
| 1289 | + <tr id="table_7_row_41" | |
| 1290 | + data-row-index="41"> | |
| 1291 | + <td style="">42</td> | |
| 1292 | + <td style="">602</td> | |
| 1293 | + <td style="">A’</td> | |
| 1294 | + <td style="">6</td> | |
| 1295 | + <td style="">4 1/2</td> | |
| 1296 | + <td style="">1155</td> | |
| 1297 | + <td style="">NON</td> | |
| 1298 | + <td style="">Automne 2026</td> | |
| 1299 | + <td style=""></td> | |
| 1300 | + <td style="">Loué</td> | |
| 1301 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1302 | + <td style=""></td> | |
| 1303 | + </tr> | |
| 1304 | + <tr id="table_7_row_42" | |
| 1305 | + data-row-index="42"> | |
| 1306 | + <td style="">43</td> | |
| 1307 | + <td style="">603</td> | |
| 1308 | + <td style="">E’</td> | |
| 1309 | + <td style="">6</td> | |
| 1310 | + <td style="">3 1/2</td> | |
| 1311 | + <td style="">950</td> | |
| 1312 | + <td style="">NON</td> | |
| 1313 | + <td style="">Automne 2026</td> | |
| 1314 | + <td style=""></td> | |
| 1315 | + <td style="">Disponible</td> | |
| 1316 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_E1.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1317 | + <td style=""></td> | |
| 1318 | + </tr> | |
| 1319 | + <tr id="table_7_row_43" | |
| 1320 | + data-row-index="43"> | |
| 1321 | + <td style="">44</td> | |
| 1322 | + <td style="">604</td> | |
| 1323 | + <td style="">B’</td> | |
| 1324 | + <td style="">6</td> | |
| 1325 | + <td style="">4 1/2</td> | |
| 1326 | + <td style="">1200</td> | |
| 1327 | + <td style="">NON</td> | |
| 1328 | + <td style="">Automne 2026</td> | |
| 1329 | + <td style=""></td> | |
| 1330 | + <td style="">Loué</td> | |
| 1331 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_B1.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1332 | + <td style=""></td> | |
| 1333 | + </tr> | |
| 1334 | + <tr id="table_7_row_44" | |
| 1335 | + data-row-index="44"> | |
| 1336 | + <td style="">45</td> | |
| 1337 | + <td style="">605</td> | |
| 1338 | + <td style="">D</td> | |
| 1339 | + <td style="">6</td> | |
| 1340 | + <td style="">3 1/2</td> | |
| 1341 | + <td style="">860</td> | |
| 1342 | + <td style="">NON</td> | |
| 1343 | + <td style="">Automne 2026</td> | |
| 1344 | + <td style=""></td> | |
| 1345 | + <td style="">Disponible</td> | |
| 1346 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_D.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1347 | + <td style=""></td> | |
| 1348 | + </tr> | |
| 1349 | + <tr id="table_7_row_45" | |
| 1350 | + data-row-index="45"> | |
| 1351 | + <td style="">46</td> | |
| 1352 | + <td style="">606</td> | |
| 1353 | + <td style="">G</td> | |
| 1354 | + <td style="">6</td> | |
| 1355 | + <td style="">4 1/2</td> | |
| 1356 | + <td style="">1200</td> | |
| 1357 | + <td style="">OUI</td> | |
| 1358 | + <td style="">Automne 2026</td> | |
| 1359 | + <td style=""></td> | |
| 1360 | + <td style="">Disponible</td> | |
| 1361 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_G.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1362 | + <td style=""></td> | |
| 1363 | + </tr> | |
| 1364 | + <tr id="table_7_row_46" | |
| 1365 | + data-row-index="46"> | |
| 1366 | + <td style="">47</td> | |
| 1367 | + <td style="">607</td> | |
| 1368 | + <td style="">A’</td> | |
| 1369 | + <td style="">6</td> | |
| 1370 | + <td style="">4 1/2</td> | |
| 1371 | + <td style="">1155</td> | |
| 1372 | + <td style="">NON</td> | |
| 1373 | + <td style="">Automne 2026</td> | |
| 1374 | + <td style=""></td> | |
| 1375 | + <td style="">Disponible</td> | |
| 1376 | + <td style=""><a data-content='PDF' href='https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A1m.pdf' rel='' target='_blank'><button class=''>PDF</button></a></td> | |
| 1377 | + <td style=""></td> | |
| 1378 | + </tr> | |
| 1379 | + <tr id="table_7_row_47" | |
| 1380 | + data-row-index="47"> | |
| 1381 | + <td style="">48</td> | |
| 1382 | + <td style="">608</td> | |
| 1383 | + <td style="">A</td> | |
| 1384 | + <td style="">6</td> | |
| 1385 | + <td style="">4 1/2</td> | |
| 1386 | + <td style="">1155</td> | |
| 1387 | + <td style="">NON</td> | |
| 1388 | + <td style="">Automne 2026</td> | |
| 1389 | + <td style=""></td> | |
| 1390 | + <td style="">Loué</td> | |
| 1391 | + <td style=""><a data-content='<button class="">PDF</button>‘ href=’https://www.ferroviamirabel.com/wp-content/uploads/2026/02/Ferrovia_Plans_8.5x14_Phase4_A.pdf’ rel=” target=’_blank’><button class=''>PDF</button></a></td> | |
| 1392 | + <td style=""></td> | |
| 1393 | + </tr> | |
| 1394 | + </tbody> <!-- /Table body --> | |
| 1395 | + | |
| 1396 | + <!-- Table footer --> | |
| 1397 | + | |
| 1398 | + <!-- /Table footer --> | |
| 1399 | + </table> | |
| 1400 | + | |
| 1401 | +</div><style> | |
| 1402 | +table.wpDataTable td.numdata { text-align: right !important; } | |
| 1403 | +</style> | |
| 1404 | +<style> | |
| 1405 | + /* th background color */ | |
| 1406 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1407 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1408 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th, | |
| 1409 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting { | |
| 1410 | + background-color: rgb(199,146,19) !important; | |
| 1411 | + background-image: none !important; | |
| 1412 | + } | |
| 1413 | + | |
| 1414 | + /* th font color */ | |
| 1415 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes, | |
| 1416 | + .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th, | |
| 1417 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th { | |
| 1418 | + color: rgb(255,255,255) !important; | |
| 1419 | + } | |
| 1420 | + | |
| 1421 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting:after, | |
| 1422 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_asc:after { | |
| 1423 | + border-bottom-color: rgb(255,255,255) !important; | |
| 1424 | + } | |
| 1425 | + | |
| 1426 | + .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting_desc:after { | |
| 1427 | + border-top-color: rgb(255,255,255) !important; | |
| 1428 | + } | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + </style> | |
| 1433 | +<style> | |
| 1434 | +</style> | |
| 1435 | +<style> | |
| 1436 | + | |
| 1437 | + | |
| 1438 | + | |
| 1439 | +</style> | |
| 1440 | + </div> | |
| 1441 | + </div> | |
| 1442 | + </div> | |
| 1443 | + </div> | |
| 1444 | + </div> | |
| 1445 | + </section> | |
| 1446 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-cb67e8e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cb67e8e" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1447 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1448 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-264fc6b" data-id="264fc6b" data-element_type="column" data-e-type="column"> | |
| 1449 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1450 | + <div class="elementor-element elementor-element-febeed5 elementor-widget elementor-widget-image" data-id="febeed5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1451 | + <div class="elementor-widget-container"> | |
| 1452 | + <img decoding="async" width="300" height="100" src="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png" class="attachment-medium size-medium wp-image-9302" alt="Logo - Ferrovia - Condos à Mirabel" srcset="https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond-300x100.png 300w, https://www.ferroviamirabel.com/wp-content/uploads/2021/04/Ferrovia_Couleur_Fond.png 600w" sizes="(max-width: 300px) 100vw, 300px" /> </div> | |
| 1453 | + </div> | |
| 1454 | + </div> | |
| 1455 | + </div> | |
| 1456 | + </div> | |
| 1457 | + </section> | |
| 1458 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-1ccd128 elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="1ccd128" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1459 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1460 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e35b1d2" data-id="e35b1d2" data-element_type="column" data-e-type="column"> | |
| 1461 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1462 | + <div class="elementor-element elementor-element-9836175 elementor-widget elementor-widget-image" data-id="9836175" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1463 | + <div class="elementor-widget-container"> | |
| 1464 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozntf5j754pgq7zoy0ctfm3cbslvwrty.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1465 | + </div> | |
| 1466 | + </div> | |
| 1467 | + </div> | |
| 1468 | + </div> | |
| 1469 | + </section> | |
| 1470 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-695462d elementor-section-full_width elementor-section-stretched elementor-hidden-desktop elementor-hidden-tablet elementor-section-height-default elementor-section-height-default" data-id="695462d" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1471 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1472 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4d26a47" data-id="4d26a47" data-element_type="column" data-e-type="column"> | |
| 1473 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1474 | + <div class="elementor-element elementor-element-f9a37dd elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image" data-id="f9a37dd" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1475 | + <div class="elementor-widget-container"> | |
| 1476 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1477 | + </div> | |
| 1478 | + </div> | |
| 1479 | + </div> | |
| 1480 | + </div> | |
| 1481 | + </section> | |
| 1482 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-492a062 elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="492a062" data-element_type="section" data-e-type="section" data-settings="{"background_background":"classic"}"> | |
| 1483 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1484 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-280dd4e" data-id="280dd4e" data-element_type="column" data-e-type="column"> | |
| 1485 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1486 | + <div class="elementor-element elementor-element-c7d659c elementor-widget elementor-widget-image" data-id="c7d659c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1487 | + <div class="elementor-widget-container"> | |
| 1488 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_AP_Blanc-r9ykoq3n0bnp4ua9xxckup7gldaefglyxh7xia30m4.png" title="Gestion_Immo_AP_Blanc" alt="Gestion_Immo_AP_Blanc" loading="lazy" /> </div> | |
| 1489 | + </div> | |
| 1490 | + </div> | |
| 1491 | + </div> | |
| 1492 | + <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-9229545" data-id="9229545" data-element_type="column" data-e-type="column"> | |
| 1493 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1494 | + <div class="elementor-element elementor-element-dfd7f7c elementor-widget elementor-widget-image" data-id="dfd7f7c" data-element_type="widget" data-e-type="widget" data-widget_type="image.default"> | |
| 1495 | + <div class="elementor-widget-container"> | |
| 1496 | + <img decoding="async" src="https://www.ferroviamirabel.com/wp-content/uploads/elementor/thumbs/Gestion_Immo_JP_Blanc-r9ykor1h75ozgg8wsfr7f6yx6r5rn5pp9lvezk1mfw.png" title="Gestion_Immo_JP_Blanc" alt="Gestion_Immo_JP_Blanc" loading="lazy" /> </div> | |
| 1497 | + </div> | |
| 1498 | + </div> | |
| 1499 | + </div> | |
| 1500 | + </div> | |
| 1501 | + </section> | |
| 1502 | + <section class="elementor-section elementor-top-section elementor-element elementor-element-de5089d elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="de5089d" data-element_type="section" data-e-type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> | |
| 1503 | + <div class="elementor-container elementor-column-gap-default"> | |
| 1504 | + <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f492942" data-id="f492942" data-element_type="column" data-e-type="column"> | |
| 1505 | + <div class="elementor-widget-wrap elementor-element-populated"> | |
| 1506 | + <div class="elementor-element elementor-element-e3cc885 elementor-widget elementor-widget-text-editor" data-id="e3cc885" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default"> | |
| 1507 | + <div class="elementor-widget-container"> | |
| 1508 | + <p><span style="color: #999999;"><a style="color: #999999;" href="https://www.ferroviamirabel.com/declaration-de-confidentialite/">Déclaration de confidentialité</a></span></p> </div> | |
| 1509 | + </div> | |
| 1510 | + </div> | |
| 1511 | + </div> | |
| 1512 | + </div> | |
| 1513 | + </section> | |
| 1514 | + </div> | |
| 1515 | + </div> | |
| 1516 | + <script type="speculationrules"> | |
| 1517 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/mihouse/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 1518 | +</script> | |
| 1519 | + | |
| 1520 | +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr --> | |
| 1521 | +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 bottom-right-view-preferences optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin"> | |
| 1522 | + <div class="cmplz-header"> | |
| 1523 | + <div class="cmplz-logo"></div> | |
| 1524 | + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement aux cookies</div> | |
| 1525 | + <div class="cmplz-close" tabindex="0" role="button" aria-label="Fermer la boîte de dialogue"> | |
| 1526 | + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg> | |
| 1527 | + </div> | |
| 1528 | + </div> | |
| 1529 | + | |
| 1530 | + <div class="cmplz-divider cmplz-divider-header"></div> | |
| 1531 | + <div class="cmplz-body"> | |
| 1532 | + <div class="cmplz-message" id="cmplz-message-1-optin">Pour offrir les meilleures expériences, nous utilisons des technologies telles que les cookies pour stocker et/ou accéder aux informations des appareils. Le fait de consentir à ces technologies nous permettra de traiter des données telles que le comportement de navigation ou les ID uniques sur ce site. Le fait de ne pas consentir ou de retirer son consentement peut avoir un effet négatif sur certaines caractéristiques et fonctions.</div> | |
| 1533 | + <!-- categories start --> | |
| 1534 | + <div class="cmplz-categories"> | |
| 1535 | + <details class="cmplz-category cmplz-functional" > | |
| 1536 | + <summary> | |
| 1537 | + <span class="cmplz-category-header"> | |
| 1538 | + <span class="cmplz-category-title">Fonctionnel</span> | |
| 1539 | + <span class='cmplz-always-active'> | |
| 1540 | + <span class="cmplz-banner-checkbox"> | |
| 1541 | + <input type="checkbox" | |
| 1542 | + id="cmplz-functional-optin" | |
| 1543 | + data-category="cmplz_functional" | |
| 1544 | + class="cmplz-consent-checkbox cmplz-functional" | |
| 1545 | + size="40" | |
| 1546 | + value="1"/> | |
| 1547 | + <label class="cmplz-label" for="cmplz-functional-optin"><span class="screen-reader-text">Fonctionnel</span></label> | |
| 1548 | + </span> | |
| 1549 | + Toujours activé </span> | |
| 1550 | + <span class="cmplz-icon cmplz-open"> | |
| 1551 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1552 | + </span> | |
| 1553 | + </span> | |
| 1554 | + </summary> | |
| 1555 | + <div class="cmplz-description"> | |
| 1556 | + <span class="cmplz-description-functional">Le stockage ou l’accès technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’internaute, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span> | |
| 1557 | + </div> | |
| 1558 | + </details> | |
| 1559 | + | |
| 1560 | + <details class="cmplz-category cmplz-preferences" > | |
| 1561 | + <summary> | |
| 1562 | + <span class="cmplz-category-header"> | |
| 1563 | + <span class="cmplz-category-title">Préférences</span> | |
| 1564 | + <span class="cmplz-banner-checkbox"> | |
| 1565 | + <input type="checkbox" | |
| 1566 | + id="cmplz-preferences-optin" | |
| 1567 | + data-category="cmplz_preferences" | |
| 1568 | + class="cmplz-consent-checkbox cmplz-preferences" | |
| 1569 | + size="40" | |
| 1570 | + value="1"/> | |
| 1571 | + <label class="cmplz-label" for="cmplz-preferences-optin"><span class="screen-reader-text">Préférences</span></label> | |
| 1572 | + </span> | |
| 1573 | + <span class="cmplz-icon cmplz-open"> | |
| 1574 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1575 | + </span> | |
| 1576 | + </span> | |
| 1577 | + </summary> | |
| 1578 | + <div class="cmplz-description"> | |
| 1579 | + <span class="cmplz-description-preferences">Le stockage ou l’accès technique est nécessaire dans la finalité d’intérêt légitime de stocker des préférences qui ne sont pas demandées par l’abonné ou la personne utilisant le service.</span> | |
| 1580 | + </div> | |
| 1581 | + </details> | |
| 1582 | + | |
| 1583 | + <details class="cmplz-category cmplz-statistics" > | |
| 1584 | + <summary> | |
| 1585 | + <span class="cmplz-category-header"> | |
| 1586 | + <span class="cmplz-category-title">Statistiques</span> | |
| 1587 | + <span class="cmplz-banner-checkbox"> | |
| 1588 | + <input type="checkbox" | |
| 1589 | + id="cmplz-statistics-optin" | |
| 1590 | + data-category="cmplz_statistics" | |
| 1591 | + class="cmplz-consent-checkbox cmplz-statistics" | |
| 1592 | + size="40" | |
| 1593 | + value="1"/> | |
| 1594 | + <label class="cmplz-label" for="cmplz-statistics-optin"><span class="screen-reader-text">Statistiques</span></label> | |
| 1595 | + </span> | |
| 1596 | + <span class="cmplz-icon cmplz-open"> | |
| 1597 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1598 | + </span> | |
| 1599 | + </span> | |
| 1600 | + </summary> | |
| 1601 | + <div class="cmplz-description"> | |
| 1602 | + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span> | |
| 1603 | + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique qui est utilisé exclusivement dans des finalités statistiques anonymes. En l’absence d’une assignation à comparaître, d’une conformité volontaire de la part de votre fournisseur d’accès à internet ou d’enregistrements supplémentaires provenant d’une tierce partie, les informations stockées ou extraites à cette seule fin ne peuvent généralement pas être utilisées pour vous identifier.</span> | |
| 1604 | + </div> | |
| 1605 | + </details> | |
| 1606 | + <details class="cmplz-category cmplz-marketing" > | |
| 1607 | + <summary> | |
| 1608 | + <span class="cmplz-category-header"> | |
| 1609 | + <span class="cmplz-category-title">Marketing</span> | |
| 1610 | + <span class="cmplz-banner-checkbox"> | |
| 1611 | + <input type="checkbox" | |
| 1612 | + id="cmplz-marketing-optin" | |
| 1613 | + data-category="cmplz_marketing" | |
| 1614 | + class="cmplz-consent-checkbox cmplz-marketing" | |
| 1615 | + size="40" | |
| 1616 | + value="1"/> | |
| 1617 | + <label class="cmplz-label" for="cmplz-marketing-optin"><span class="screen-reader-text">Marketing</span></label> | |
| 1618 | + </span> | |
| 1619 | + <span class="cmplz-icon cmplz-open"> | |
| 1620 | + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg> | |
| 1621 | + </span> | |
| 1622 | + </span> | |
| 1623 | + </summary> | |
| 1624 | + <div class="cmplz-description"> | |
| 1625 | + <span class="cmplz-description-marketing">Le stockage ou l’accès technique est nécessaire pour créer des profils d’internautes afin d’envoyer des publicités, ou pour suivre l’internaute sur un site web ou sur plusieurs sites web ayant des finalités marketing similaires.</span> | |
| 1626 | + </div> | |
| 1627 | + </details> | |
| 1628 | + </div><!-- categories end --> | |
| 1629 | + </div> | |
| 1630 | + | |
| 1631 | + <div class="cmplz-links cmplz-information"> | |
| 1632 | + <ul> | |
| 1633 | + <li><a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a></li> | |
| 1634 | + <li><a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a></li> | |
| 1635 | + <li><a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a></li> | |
| 1636 | + <li><a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/" aria-label="En savoir plus sur les finalités de TCF de la base de données de cookies">En savoir plus sur ces finalités</a></li> | |
| 1637 | + </ul> | |
| 1638 | + </div> | |
| 1639 | + | |
| 1640 | + <div class="cmplz-divider cmplz-footer"></div> | |
| 1641 | + | |
| 1642 | + <div class="cmplz-buttons"> | |
| 1643 | + <button class="cmplz-btn cmplz-accept">Accepter</button> | |
| 1644 | + <button class="cmplz-btn cmplz-deny">Refuser</button> | |
| 1645 | + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button> | |
| 1646 | + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button> | |
| 1647 | + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a> | |
| 1648 | + </div> | |
| 1649 | + | |
| 1650 | + | |
| 1651 | + <div class="cmplz-documents cmplz-links"> | |
| 1652 | + <ul> | |
| 1653 | + <li><a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1654 | + <li><a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a></li> | |
| 1655 | + <li><a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a></li> | |
| 1656 | + </ul> | |
| 1657 | + </div> | |
| 1658 | +</div> | |
| 1659 | +</div> | |
| 1660 | + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button> | |
| 1661 | + | |
| 1662 | +</div> <script> | |
| 1663 | + ( () => { | |
| 1664 | + const lazyloadRunObserver = () => { | |
| 1665 | + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); | |
| 1666 | + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { | |
| 1667 | + entries.forEach( ( entry ) => { | |
| 1668 | + if ( entry.isIntersecting ) { | |
| 1669 | + let lazyloadBackground = entry.target; | |
| 1670 | + if( lazyloadBackground ) { | |
| 1671 | + lazyloadBackground.classList.add( 'e-lazyloaded' ); | |
| 1672 | + } | |
| 1673 | + lazyloadBackgroundObserver.unobserve( entry.target ); | |
| 1674 | + } | |
| 1675 | + }); | |
| 1676 | + }, { rootMargin: '200px 0px 200px 0px' } ); | |
| 1677 | + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { | |
| 1678 | + lazyloadBackgroundObserver.observe( lazyloadBackground ); | |
| 1679 | + } ); | |
| 1680 | + }; | |
| 1681 | + const events = [ | |
| 1682 | + 'DOMContentLoaded', | |
| 1683 | + 'elementor/lazyload/observe', | |
| 1684 | + ]; | |
| 1685 | + events.forEach( ( event ) => { | |
| 1686 | + document.addEventListener( event, lazyloadRunObserver ); | |
| 1687 | + } ); | |
| 1688 | + } )(); | |
| 1689 | + </script> | |
| 1690 | + | |
| 1691 | +<!-- .wpdt-c --> | |
| 1692 | +<div class="wpdt-c"> | |
| 1693 | + <!-- .wdt-frontend-modal --> | |
| 1694 | + <div id="wdt-frontend-modal" class="modal fade wdt-frontend-modal" style="display: none" data-backdrop="static" | |
| 1695 | + data-keyboard="false" tabindex="-1" role="dialog" aria-hidden="true" aria-modal="true"> | |
| 1696 | + | |
| 1697 | + <!-- .modal-dialog --> | |
| 1698 | + <div class="modal-dialog"> | |
| 1699 | + | |
| 1700 | + <!-- Preloader --> | |
| 1701 | + | |
| 1702 | +<div class="overlayed wdt-preload-layer"> | |
| 1703 | + <div class="preloader pl-lg"> | |
| 1704 | + <svg class="pl-circular" viewBox="25 25 50 50"> | |
| 1705 | + <circle class="plc-path" cx="50" cy="50" r="20"></circle> | |
| 1706 | + </svg> | |
| 1707 | + </div> | |
| 1708 | +</div> <!-- /Preloader --> | |
| 1709 | + | |
| 1710 | + <!-- .modal-content --> | |
| 1711 | + <div class="modal-content"> | |
| 1712 | + | |
| 1713 | + <!-- .modal-header --> | |
| 1714 | + <div class="modal-header"> | |
| 1715 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1716 | + aria-hidden="true">×</span></button> | |
| 1717 | + <h4 class="modal-title">Titre dynamique pour les modales</h4> | |
| 1718 | + </div> | |
| 1719 | + <!--/ .modal-header --> | |
| 1720 | + | |
| 1721 | + <!-- .modal-body --> | |
| 1722 | + <div class="modal-body"> | |
| 1723 | + </div> | |
| 1724 | + <!--/ .modal-body --> | |
| 1725 | + | |
| 1726 | + <!-- .modal-footer --> | |
| 1727 | + <div class="modal-footer"> | |
| 1728 | + </div> | |
| 1729 | + <!--/ .modal-footer --> | |
| 1730 | + </div> | |
| 1731 | + <!--/ .modal-content --> | |
| 1732 | + </div> | |
| 1733 | + <!--/ .modal-dialog --> | |
| 1734 | + </div> | |
| 1735 | + <!--/ .wdt-frontend-modal --> | |
| 1736 | +</div> | |
| 1737 | +<!--/ .wpdt-c --> | |
| 1738 | +<!-- .wpdt-c --> | |
| 1739 | +<div class="wpdt-c"> | |
| 1740 | + <!-- #wdt-delete-modal --> | |
| 1741 | + <div class="modal fade in" id="wdt-delete-modal" style="display: none" data-backdrop="static" data-keyboard="false" | |
| 1742 | + tabindex="-1" role="dialog" aria-hidden="true"> | |
| 1743 | + | |
| 1744 | + <!-- .modal-dialog --> | |
| 1745 | + <div class="modal-dialog"> | |
| 1746 | + | |
| 1747 | + <!-- .modal-content --> | |
| 1748 | + <div class="modal-content"> | |
| 1749 | + | |
| 1750 | + <!-- .modal-header --> | |
| 1751 | + <div class="modal-header"> | |
| 1752 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span | |
| 1753 | + aria-hidden="true"> <i class="wpdt-icon-times-full"></i></span></button> | |
| 1754 | + <h4 class="modal-title">Êtes-vous sûr?</h4> | |
| 1755 | + </div> | |
| 1756 | + <!--/ .modal-header --> | |
| 1757 | + | |
| 1758 | + <!-- .modal-body --> | |
| 1759 | + <div class="modal-body"> | |
| 1760 | + <!-- .row --> | |
| 1761 | + <div class="row"> | |
| 1762 | + <div class="col-sm-12"> | |
| 1763 | + <small>S’il vous plaît confirmer la suppression. Il n’y a pas d’annulation de changement!</small> | |
| 1764 | + </div> | |
| 1765 | + </div> | |
| 1766 | + <!--/ .row --> | |
| 1767 | + </div> | |
| 1768 | + <!--/ .modal-body --> | |
| 1769 | + | |
| 1770 | + <!-- .modal-footer --> | |
| 1771 | + <div class="modal-footer"> | |
| 1772 | + <hr> | |
| 1773 | + <button type="button" class="btn btn-icon-text wdt-cancel-delete-button" data-dismiss="modal"> | |
| 1774 | + Annuler</button> | |
| 1775 | + <button type="button" class="btn btn-danger btn-icon-text wdt-browse-delete-button" | |
| 1776 | + id="wdt-browse-delete-button"><i | |
| 1777 | + class="wpdt-icon-trash"></i> Effacer</button> | |
| 1778 | + </div> | |
| 1779 | + <!--/ .modal-footer --> | |
| 1780 | + </div> | |
| 1781 | + <!--/ .modal-content --> | |
| 1782 | + </div> | |
| 1783 | + <!--/ .modal-dialog --> | |
| 1784 | + </div> | |
| 1785 | + <!--/ #wdt-delete-modal --> | |
| 1786 | +</div> | |
| 1787 | +<!--/ .wpdt-c --><link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-inter-google-fonts-css' data-href='https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap&ver=7.3.3' media='all' /> | |
| 1788 | +<link rel='stylesheet' id='wdt-bootstrap-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/wpdatatables-bootstrap.css?ver=7.3.3' media='all' /> | |
| 1789 | +<link rel='stylesheet' id='wdt-bootstrap-select-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-select/bootstrap-select.min.css?ver=7.3.3' media='all' /> | |
| 1790 | +<link rel='stylesheet' id='wdt-animate-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/animate/animate.min.css?ver=7.3.3' media='all' /> | |
| 1791 | +<link rel='stylesheet' id='wdt-uikit-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/uikit/uikit.css?ver=7.3.3' media='all' /> | |
| 1792 | +<link rel='stylesheet' id='wdt-bootstrap-tagsinput-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.css?ver=7.3.3' media='all' /> | |
| 1793 | +<link rel='stylesheet' id='wdt-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1794 | +<link rel='stylesheet' id='wdt-bootstrap-nouislider-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.css?ver=7.3.3' media='all' /> | |
| 1795 | +<link rel='stylesheet' id='wdt-wp-bootstrap-datetimepicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-datetimepicker/wdt-bootstrap-datetimepicker.min.css?ver=7.3.3' media='all' /> | |
| 1796 | +<link rel='stylesheet' id='wdt-bootstrap-colorpicker-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.css?ver=7.3.3' media='all' /> | |
| 1797 | +<link rel='stylesheet' id='wdt-wpdt-icons-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/style.min.css?ver=7.3.3' media='all' /> | |
| 1798 | +<link rel='stylesheet' id='wdt-wpdatatables-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt.frontend-starter.min.css?ver=7.3.3' media='all' /> | |
| 1799 | +<link data-service="google-fonts" data-category="marketing" rel='stylesheet' id='wdt-include-roboto-google-fonts-css' data-href='https://fonts.googleapis.com/css?family=Roboto:wght@400;500&display=swap&ver=7.3.3' media='all' /> | |
| 1800 | +<link rel='stylesheet' id='wdt-skin-light-css' href='https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/css/wdt-skins/light.css?ver=7.3.3' media='all' /> | |
| 1801 | +<link rel='stylesheet' id='dashicons-css' href='https://www.ferroviamirabel.com/wp-includes/css/dashicons.min.css?ver=7.0.3' media='all' /> | |
| 1802 | +<script id="bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/bootstrap.min.js"></script> | |
| 1803 | +<script id="mmenu-all-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.mmenu.all.min.js"></script> | |
| 1804 | +<script id="slick-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/slick.min.js"></script> | |
| 1805 | +<script id="instafeed-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/instafeed.min.js"></script> | |
| 1806 | +<script id="countdown-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.countdown.min.js"></script> | |
| 1807 | +<script id="fancybox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.fancybox.min.js"></script> | |
| 1808 | +<script id="elevatezoom-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.elevatezoom.js"></script> | |
| 1809 | +<script id="swipebox-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.swipebox.min.js"></script> | |
| 1810 | +<script id="sticky-kit-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.sticky-kit.min.js"></script> | |
| 1811 | +<script id="wc-quantity-increment-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/wc-quantity-increment.min.js"></script> | |
| 1812 | +<script id="isotopes-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/isotopes.js"></script> | |
| 1813 | +<script id="jquery-cookie-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/jquery.cookie.min.js"></script> | |
| 1814 | +<script id="mihouse-newsletter-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/newsletter.js"></script> | |
| 1815 | +<script id="mihouse-script-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/functions.js"></script> | |
| 1816 | +<script id="mihouse-portfolio-js" src="https://www.ferroviamirabel.com/wp-content/themes/mihouse/js/portfolio.js"></script> | |
| 1817 | +<script id="elementor-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.2.2"></script> | |
| 1818 | +<script id="elementor-frontend-modules-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.2.2"></script> | |
| 1819 | +<script id="jquery-ui-core-js" src="https://www.ferroviamirabel.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3"></script> | |
| 1820 | +<script id="elementor-frontend-js-before"> | |
| 1821 | +var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnX":"Share on X","pinIt":"L\u2019\u00e9pingler","download":"T\u00e9l\u00e9charger","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Plein \u00e9cran","zoom":"Zoom","share":"Partager","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Diapositive pr\u00e9c\u00e9dente","a11yCarouselNextSlideMessage":"Diapositive suivante","a11yCarouselFirstSlideMessage":"Ceci est la premi\u00e8re diapositive","a11yCarouselLastSlideMessage":"Ceci est la derni\u00e8re diapositive","a11yCarouselPaginationBulletMessage":"Aller \u00e0 la diapositive"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Portrait mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Paysage","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablette en mode portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablette en mode paysage","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Portable","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"\u00c9cran large","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.2.2","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"e_panel_promotions":true,"theme_builder_v2":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"b687f3bd9b","atomicFormsSendForm":"33e1d8a0c3"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":12179,"title":"DISPONIBILIT%C3%89S%20PHASE%204%20-%20Ferrovia","excerpt":"","featuredImage":false}}; | |
| 1822 | +//# sourceURL=elementor-frontend-js-before | |
| 1823 | +</script> | |
| 1824 | +<script id="elementor-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.2.2"></script> | |
| 1825 | +<script id="smartmenus-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1"></script> | |
| 1826 | +<script id="e-sticky-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js?ver=3.34.0"></script> | |
| 1827 | +<script id="cmplz-cookiebanner-js-extra"> | |
| 1828 | +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"","banner_version":"21","version":"7.4.4.2","store_consent":"","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https://www.ferroviamirabel.com/wp-json/complianz/v1/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"","cookie_domain":"","current_policy_id":"16","cookie_path":"/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"Cliquez pour accepter les cookies {category} et activer ce contenu","css_file":"https://www.ferroviamirabel.com/wp-content/uploads/complianz/css/banner-{banner_id}-{type}.css?v=21","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https://www.ferroviamirabel.com/accueil/politique-de-cookies-ca/"}}},"tm_categories":"","forceEnableStats":"","preview":"","clean_cookies":"","aria_label":"Cliquez pour accepter les cookies {category} et activer ce contenu"}; | |
| 1829 | +//# sourceURL=cmplz-cookiebanner-js-extra | |
| 1830 | +</script> | |
| 1831 | +<script defer id="cmplz-cookiebanner-js" src="https://www.ferroviamirabel.com/wp-content/plugins/complianz-gdpr/cookiebanner/js/complianz.min.js?ver=1769530458"></script> | |
| 1832 | +<script id="cmplz-cookiebanner-js-after"> | |
| 1833 | + if ('undefined' != typeof window.jQuery) { | |
| 1834 | + jQuery(document).ready(function ($) { | |
| 1835 | + $(document).on('elementor/popup/show', () => { | |
| 1836 | + let rev_cats = cmplz_categories.reverse(); | |
| 1837 | + for (let key in rev_cats) { | |
| 1838 | + if (rev_cats.hasOwnProperty(key)) { | |
| 1839 | + let category = cmplz_categories[key]; | |
| 1840 | + if (cmplz_has_consent(category)) { | |
| 1841 | + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => { | |
| 1842 | + cmplz_remove_placeholder(obj); | |
| 1843 | + }); | |
| 1844 | + } | |
| 1845 | + } | |
| 1846 | + } | |
| 1847 | + | |
| 1848 | + let services = cmplz_get_services_on_page(); | |
| 1849 | + for (let key in services) { | |
| 1850 | + if (services.hasOwnProperty(key)) { | |
| 1851 | + let service = services[key].service; | |
| 1852 | + let category = services[key].category; | |
| 1853 | + if (cmplz_has_service_consent(service, category)) { | |
| 1854 | + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => { | |
| 1855 | + cmplz_remove_placeholder(obj); | |
| 1856 | + }); | |
| 1857 | + } | |
| 1858 | + } | |
| 1859 | + } | |
| 1860 | + }); | |
| 1861 | + }); | |
| 1862 | + } | |
| 1863 | + | |
| 1864 | + | |
| 1865 | + | |
| 1866 | + document.addEventListener("cmplz_enable_category", function(consentData) { | |
| 1867 | + var category = consentData.detail.category; | |
| 1868 | + var services = consentData.detail.services; | |
| 1869 | + var blockedContentContainers = []; | |
| 1870 | + let selectorVideo = '.cmplz-elementor-widget-video-playlist[data-category="'+category+'"],.elementor-widget-video[data-category="'+category+'"]'; | |
| 1871 | + let selectorGeneric = '[data-cmplz-elementor-href][data-category="'+category+'"]'; | |
| 1872 | + for (var skey in services) { | |
| 1873 | + if (services.hasOwnProperty(skey)) { | |
| 1874 | + let service = skey; | |
| 1875 | + selectorVideo +=',.cmplz-elementor-widget-video-playlist[data-service="'+service+'"],.elementor-widget-video[data-service="'+service+'"]'; | |
| 1876 | + selectorGeneric +=',[data-cmplz-elementor-href][data-service="'+service+'"]'; | |
| 1877 | + } | |
| 1878 | + } | |
| 1879 | + document.querySelectorAll(selectorVideo).forEach(obj => { | |
| 1880 | + let elementService = obj.getAttribute('data-service'); | |
| 1881 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1882 | + return; | |
| 1883 | + } | |
| 1884 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1885 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1886 | + | |
| 1887 | + if ( obj.hasAttribute('data-cmplz_elementor_widget_type') ){ | |
| 1888 | + let attr = obj.getAttribute('data-cmplz_elementor_widget_type'); | |
| 1889 | + obj.classList.removeAttribute('data-cmplz_elementor_widget_type'); | |
| 1890 | + obj.classList.setAttribute('data-widget_type', attr); | |
| 1891 | + } | |
| 1892 | + if (obj.classList.contains('cmplz-elementor-widget-video-playlist')) { | |
| 1893 | + obj.classList.remove('cmplz-elementor-widget-video-playlist'); | |
| 1894 | + obj.classList.add('elementor-widget-video-playlist'); | |
| 1895 | + } | |
| 1896 | + obj.setAttribute('data-settings', obj.getAttribute('data-cmplz-elementor-settings')); | |
| 1897 | + blockedContentContainers.push(obj); | |
| 1898 | + }); | |
| 1899 | + | |
| 1900 | + document.querySelectorAll(selectorGeneric).forEach(obj => { | |
| 1901 | + let elementService = obj.getAttribute('data-service'); | |
| 1902 | + if ( cmplz_is_service_denied(elementService) ) { | |
| 1903 | + return; | |
| 1904 | + } | |
| 1905 | + if (obj.classList.contains('cmplz-elementor-activated')) return; | |
| 1906 | + | |
| 1907 | + if (obj.classList.contains('cmplz-fb-video')) { | |
| 1908 | + obj.classList.remove('cmplz-fb-video'); | |
| 1909 | + obj.classList.add('fb-video'); | |
| 1910 | + } | |
| 1911 | + | |
| 1912 | + obj.classList.add('cmplz-elementor-activated'); | |
| 1913 | + obj.setAttribute('data-href', obj.getAttribute('data-cmplz-elementor-href')); | |
| 1914 | + blockedContentContainers.push(obj.closest('.elementor-widget')); | |
| 1915 | + }); | |
| 1916 | + | |
| 1917 | + /** | |
| 1918 | + * Trigger the widgets in Elementor | |
| 1919 | + */ | |
| 1920 | + for (var key in blockedContentContainers) { | |
| 1921 | + if (blockedContentContainers.hasOwnProperty(key) && blockedContentContainers[key] !== undefined) { | |
| 1922 | + let blockedContentContainer = blockedContentContainers[key]; | |
| 1923 | + if (elementorFrontend.elementsHandler) { | |
| 1924 | + elementorFrontend.elementsHandler.runReadyTrigger(blockedContentContainer) | |
| 1925 | + } | |
| 1926 | + var cssIndex = blockedContentContainer.getAttribute('data-placeholder_class_index'); | |
| 1927 | + blockedContentContainer.classList.remove('cmplz-blocked-content-container'); | |
| 1928 | + blockedContentContainer.classList.remove('cmplz-placeholder-' + cssIndex); | |
| 1929 | + } | |
| 1930 | + } | |
| 1931 | + | |
| 1932 | + }); | |
| 1933 | + | |
| 1934 | + | |
| 1935 | +//# sourceURL=cmplz-cookiebanner-js-after | |
| 1936 | +</script> | |
| 1937 | +<script id="fca_pc_client_js-js-extra"> | |
| 1938 | +var fcaPcEvents = [{"triggerType":"post","trigger":["all"],"parameters":{"content_name":"{post_title}","content_type":"product","content_ids":"{post_id}"},"event":"ViewContent","delay":"0","scroll":"0","apiAction":"track","ID":"5484e3bf-8296-4610-ae88-dcd82aafe45d"}]; | |
| 1939 | +var fcaPcPost = {"title":"DISPONIBILIT\u00c9S PHASE 4","type":"page","id":"12179","categories":[]}; | |
| 1940 | +var fcaPcOptions = {"pixel_types":["Facebook Pixel"],"capis":[],"ajax_url":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php","debug":"","edd_currency":"USD","nonce":"e2be76ec4c","utm_support":"","user_parameters":"","edd_enabled":"","edd_delay":"0","woo_enabled":"","woo_delay":"0","woo_order_cookie":"","video_enabled":""}; | |
| 1941 | +//# sourceURL=fca_pc_client_js-js-extra | |
| 1942 | +</script> | |
| 1943 | +<script id="fca_pc_client_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/pixel-cat.min.js?ver=3.2.0"></script> | |
| 1944 | +<script id="fca_pc_video_js-js" src="https://www.ferroviamirabel.com/wp-content/plugins/facebook-conversion-pixel/video.js?ver=7.0.3"></script> | |
| 1945 | +<script id="wdt-bootstrap-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1946 | +<script id="wdt-bootstrap-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap.min.js?ver=7.3.3"></script> | |
| 1947 | +<script id="wdt-bootstrap-ajax-select-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-select/ajax-bootstrap-select.min.js?ver=7.3.3"></script> | |
| 1948 | +<script id="wdt-moment-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/moment/moment.js?ver=7.3.3"></script> | |
| 1949 | +<script id="wdt-common-js-extra"> | |
| 1950 | +var wpdatatables_edit_strings = {"success_common":"Succ\u00e8s!","error_common":"Erreur!","settings_saved_error_common":"Unable to save settings of plugin. Please try again or contact us over Support page.","close_common":"Fermer","tableNameEmpty_common":"Le nom de la table ne peut pas \u00eatre vide ! Veuillez fournir un nom pour votre table.","masterdetail_error_common":"For the selected master-detail option, the following fields cannot be empty: Parent Table Column Name and Child Table Column Name. Additionally, the tables must be connected through a common unique ID column.","masterdetailParentId_error_common":"For the selected master-detail option, the following field cannot be empty: Parent Table Column Name.","tableSaved_common":"Tableau enregistr\u00e9 avec succ\u00e8s!","selectExcelCsv_common":"S\u00e9lectionnez un fichier Excel ou CSV","choose_file_common":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_common":"Choisir le fichier","shortcodeSaved_common":"Le shortcode a \u00e9t\u00e9 copi\u00e9 dans le presse-papier.","dataSaved_common":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_common":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_common":"There was an error trying to delete a row!","rowDeleted_common":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","systemInfoSaved_common":"Les donn\u00e9es d'information du syst\u00e8me ont \u00e9t\u00e9 copi\u00e9es dans le presse-papiers. Vous pouvez maintenant les coller dans le fichier ou dans le ticket de support.","selected_replace_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace rows with source data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete all the data\u003C/strong\u003E you currently have in your table and replace it with data from your source file.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","selected_add_data_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Add data to current table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Eadd data\u003C/strong\u003E from the file source to your table.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first.\u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E","selected_replace_table_option_common":"\u003Csmall\u003EYou've selected the \u003Cstrong\u003E'Replace entire table data'\u003C/strong\u003E option. This means that you're about to \u003Cstrong\u003Edelete your entire table data and current column settings\u003C/strong\u003E and replace it with data from your source file with default settings for columns.\u003Cbr\u003E\u003Cbr\u003E If you have any \u003Cstrong\u003Edate type columns\u003C/strong\u003E in your file, please make sure you set the \u003Cstrong\u003Edate input format in Main settings of plugin\u003C/strong\u003E to the one you're using in your source file first. \u003Cbr\u003E\u003Cbr\u003EPlease consider \u003Cstrong\u003Eduplicating your table first\u003C/strong\u003E, before updating.\u003Cbr\u003E\u003Cbr\u003E\u003Cstrong\u003EThere is no undo.\u003C/strong\u003E\u003C/small\u003E ","clear_table_data_common":"Clear table data","delete_common":"Effacer","deleteSelected_common":"Supprimer s\u00e9lectionn\u00e9","getJsonRoots_common":"Les racines JSON sont trouv\u00e9es !","errorText_common":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","failedToLoadFormFields_common":"Failed to load form fields","invalidResponseServer_common":"Invalid response from server"}; | |
| 1951 | +//# sourceURL=wdt-common-js-extra | |
| 1952 | +</script> | |
| 1953 | +<script id="wdt-common-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/admin/common.js?ver=7.3.3"></script> | |
| 1954 | +<script id="wdt-bootstrap-tagsinput-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-tagsinput/bootstrap-tagsinput.js?ver=7.3.3"></script> | |
| 1955 | +<script id="wdt-bootstrap-datetimepicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-datetimepicker/bootstrap-datetimepicker.min.js?ver=7.3.3"></script> | |
| 1956 | +<script id="wdt-bootstrap-nouislider-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/bootstrap-nouislider.min.js?ver=7.3.3"></script> | |
| 1957 | +<script id="wdt-wNumb-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-nouislider/wNumb.min.js?ver=7.3.3"></script> | |
| 1958 | +<script id="wdt-bootstrap-colorpicker-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-colorpicker/bootstrap-colorpicker.min.js?ver=7.3.3"></script> | |
| 1959 | +<script id="wdt-bootstrap-growl-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/bootstrap/bootstrap-growl/bootstrap-growl.min.js?ver=7.3.3"></script> | |
| 1960 | +<script id="wdt-wpdatatables-js-extra"> | |
| 1961 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1962 | +var wpdatatables_inline_strings = {"invalid_email_inline":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_inline":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_inline":" le champ ne peut pas \u00eatre vide!","cannot_be_edit_inline":"Vous ne pouvez pas \u00e9diter ce champ","errorText_inline":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_inline":"Aucune s\u00e9lection","sLoadingRecords_inline":"Chargement...","currentlySelected_inline":"Actuellement s\u00e9lectionn\u00e9","search_inline":"Recherche...","statusInitialized_inline":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_inline":"Aucun r\u00e9sultats","statusTooShort_inline":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","selectFileAttachment_inline":"Choisir le fichier","changeFileAttachment_inline":"Changer","saveFileAttachment_inline":"Sauvegarder","removeFileAttachment_inline":"Supprimer","select_upload_file_inline":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_inline":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_inline":"Choisir le fichier","inlineEditing_inline":"Inline editing of the cell "}; | |
| 1963 | +var wpdatatables_filter_strings = {"errorText_columnfilter":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_columnfilter":"Aucune s\u00e9lection","sLoadingRecords_columnfilter":"Chargement...","currentlySelected_columnfilter":"Actuellement s\u00e9lectionn\u00e9","search_columnfilter":"Recherche...","statusInitialized_columnfilter":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_columnfilter":"Aucun r\u00e9sultats","statusTooShort_columnfilter":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","from_columnfilter":"De","to_columnfilter":"\u00c0","fromDate_columnfilter":"Date from","toDate_columnfilter":"Date to","fromDateTime_columnfilter":"DateTime from","toDateTime_columnfilter":"DateTime to","fromTime_columnfilter":"Time from","toTime_columnfilter":"Time to","filterInputString_columnfilter":"Filter input for ","filterInputNumber_columnfilter":"Filter input for number range filter ","filterInputDate_columnfilter":"Filter input for date picker ","filterInputDateTime_columnfilter":"Filter input for datetime picker ","filterInputTime_columnfilter":"Filter input for time picker ","filterCheckbox_columnfilter":"Filter checkbox for ","minValue_columnfilter":"Minimum Value: ","maxValue_columnfilter":"Maximum Value: ","multiSelectBoxOption_columnfilter":"MultiSelectBox option","selectBoxOption_columnfilter":"SelectBox option","dividerSearchBox_columnfilter":"This is divider between searchbox input and options to select"}; | |
| 1964 | +var wpdatatables_functions_strings = {"sInfo_functions":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_functions":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_functions":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_functions":"","sInfoThousands_functions":",","sLengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sLoadingRecords_functions":"Chargement...","sProcessing_functions":"En traitement...","sSearch_functions":"Recherche: ","lengthMenu_functions":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_functions":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_functions":"Aucun enregistrements correspondants trouv\u00e9s","oAria_functions":{"sSortAscending_functions":": activer pour trier la colonne en ordre croissant","sSortDescending_functions":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_functions":{"sFirst_functions":"Premier","sLast_functions":"Dernier","sNext_functions":"Suivant","sPrevious_functions":"Pr\u00e9c\u00e9dent"},"nothingSelected_functions":"Aucune s\u00e9lection"}; | |
| 1965 | +var wpdatatables_settings = {"wdtDateFormat":"d/m/Y","wdtTimeFormat":"h:i A","wdtNumberFormat":"1","wdtGlobalTableLoader":"1"}; | |
| 1966 | +var wpdatatables_frontend_strings = {"success_wpdatatables":"Succ\u00e8s!","error_wpdatatables":"Erreur!","dataSaved_wpdatatables":"Les donn\u00e9es ont \u00e9t\u00e9 enregistr\u00e9es!","databaseInsertError_wpdatatables":"Une erreur s\u2019est produite lors de la tentative d\u2019insertion d\u2019une nouvelle ligne!","databaseDeleteError_wpdatatables":"There was an error trying to delete a row!","rowDeleted_wpdatatables":"La ligne a \u00e9t\u00e9 supprim\u00e9e!","errorText_wpdatatables":"Impossible de r\u00e9cup\u00e9rer les r\u00e9sultats","nothingSelected_wpdatatables":"Aucune s\u00e9lection","sLoadingRecords_wpdatatables":"Chargement...","currentlySelected_wpdatatables":"Actuellement s\u00e9lectionn\u00e9","search_wpdatatables":"Recherche...","statusInitialized_wpdatatables":"Commencez \u00e0 taper une requ\u00eate de recherche","statusNoResults_wpdatatables":"Aucun r\u00e9sultats","statusTooShort_wpdatatables":"S\u2019il vous pla\u00eet entrer plus de caract\u00e8res","select_upload_file_wpdatatables":"S\u00e9lectionnez un fichier \u00e0 utiliser dans le tableau","choose_file_wpdatatables":"Utiliser le fichier s\u00e9lectionn\u00e9","chooseFile_wpdatatables":"Choisir le fichier","add_new_entry_wpdatatables":"Ajouter une nouvelle entr\u00e9e","duplicate_entry_wpdatatables":"Duplicate entry","edit_entry_wpdatatables":"Modifier l\u2019entr\u00e9e","invalid_email_wpdatatables":"Veuillez fournir une adresse e-mail valide pour le champ","invalid_link_wpdatatables":"Veuillez fournir un lien URL valide pour le champ","cannot_be_empty_wpdatatables":" le champ ne peut pas \u00eatre vide!","sInfo_wpdatatables":"Afficher _START_ \u00e0 _END_ des _TOTAL_ entr\u00e9es","sInfoEmpty_wpdatatables":"Afficher 0 \u00e0 0 de 0 entr\u00e9es","sInfoFiltered_wpdatatables":"(Filtr\u00e9 de _MAX_ entr\u00e9es total)","sInfoPostFix_wpdatatables":"","sInfoThousands_wpdatatables":",","sLengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sProcessing_wpdatatables":"En traitement...","sSearch_wpdatatables":"Recherche: ","lengthMenu_wpdatatables":"Afficher _MENU_ les entr\u00e9es","sEmptyTable_wpdatatables":"Aucune donn\u00e9e disponible dans le tableau","sZeroRecords_wpdatatables":"Aucun enregistrements correspondants trouv\u00e9s","oAria_wpdatatables":{"sSortAscending_wpdatatables":": activer pour trier la colonne en ordre croissant","sSortDescending_wpdatatables":": activer pour trier la colonne en ordre d\u00e9croissant"},"oPaginate_wpdatatables":{"sFirst_wpdatatables":"Premier","sLast_wpdatatables":"Dernier","sNext_wpdatatables":"Suivant","sPrevious_wpdatatables":"Pr\u00e9c\u00e9dent"},"from_wpdatatables":"De","to_wpdatatables":"\u00c0","sortingError_wpdatatables":"At least one show/hide sorting icon must be enabled!","firstPageWCAG_wpdatatables":"Navigate to First page","lastPageWCAG_wpdatatables":"Navigate to Last page","nextPageWCAG_wpdatatables":"Navigate to Next page","previousPageWCAG_wpdatatables":"Navigate to Previous page","pageWCAG_wpdatatables":"Navigate to wpDataTable Page ","spacerWCAG_wpdatatables":"Spacer","printTableWCAG_wpdatatables":"Imprimer la table","exportTableWCAG_wpdatatables":"Exporter la table","newEntryWCAG_wpdatatables":"Nouvelle entr\u00e9e","deleteRowWCAG_wpdatatables":"Delete row","editRowWCAG_wpdatatables":"Edit row","duplicateRowWCAG_wpdatatables":"Duplicate row","clearFiltersWCAG_wpdatatables":"Effacer les filtres","columnVisibilityWCAG_wpdatatables":"Column visibility","sInfoEmptyWCAG_wpdatatables":"Showing 0 to 0 of 0 entries _COLUMN_ _DATA_","sInfoWCAG_wpdatatables":"Showing _START_ to _END_ of _TOTAL_ entries _COLUMN_ _DATA_","masterDetailWCAG_wpdatatables":"Master Detail","globalSearchWCAG_wpdatatables":"Global Search Table Input Field","chooseExportWCAG_wpdatatables":"Choose how to export table","optionHideWCAG_wpdatatables":"Option to either display or hide columns","rowsPerPageWCAG_wpdatatables":"Open dropdown menu for show rows per page","forWCAG_wpdatatables":"for ","columnSearchWCAG_wpdatatables":" column searching for ","valueFromWCAG_wpdatatables":"value from ","valueToWCAG_wpdatatables":" value to ","andforWCAG_wpdatatables":" and for ","andforGloablWCAG_wpdatatables":" and for Global search of value ","forGloablWCAG_wpdatatables":"for Global search of value ","lenghtMenuWCAG_wpdatatables":"Length menu:","searchTableWCAG_wpdatatables":"Search table:","all_wpdatatables":"Tout","customDisplayError_wpdatatables":"Invalid format of custom rows per page. Please enter a valid format like \"1,2,3,4\". If you use the number 0, it must be in the format 0 without any preceding zeros.","close_common_wpdatatables":"Fermer","error_adding_to_cart_wpdatatables":"Error adding products to cart.","select_products_for_cart_wpdatatables":"Please select products to add to the cart.","error_fetching_cart_info_wpdatatables":"Error fetching cart info.","could_not_add_to_cart_wpdatatables":"Could not add this product to cart - the stock of this product could be limited.","emtyfields_woo_front":"All of the following fields must be filled out: Taxonomy, Tax Field and Tax Terms."}; | |
| 1967 | +var wdt_ajax_object = {"ajaxurl":"https://www.ferroviamirabel.com/wp-admin/admin-ajax.php"}; | |
| 1968 | +//# sourceURL=wdt-wpdatatables-js-extra | |
| 1969 | +</script> | |
| 1970 | +<script id="wdt-wpdatatables-js" src="https://www.ferroviamirabel.com/wp-content/plugins/wpdatatables/assets/js/wpdatatables/wdt.frontend-starter.min.js?ver=7.3.3"></script> | |
| 1971 | +<script id="underscore-js" src="https://www.ferroviamirabel.com/wp-includes/js/underscore.min.js?ver=1.13.8"></script> | |
| 1972 | +<script id="elementor-pro-webpack-runtime-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.34.0"></script> | |
| 1973 | +<script id="wp-hooks-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 1974 | +<script id="wp-i18n-js" src="https://www.ferroviamirabel.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 1975 | +<script id="wp-i18n-js-after"> | |
| 1976 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 1977 | +//# sourceURL=wp-i18n-js-after | |
| 1978 | +</script> | |
| 1979 | +<script id="elementor-pro-frontend-js-before"> | |
| 1980 | +var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.ferroviamirabel.com\/wp-admin\/admin-ajax.php","nonce":"108ef60315","urls":{"assets":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.ferroviamirabel.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"fr_FR","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.ferroviamirabel.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; | |
| 1981 | +//# sourceURL=elementor-pro-frontend-js-before | |
| 1982 | +</script> | |
| 1983 | +<script id="elementor-pro-frontend-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.34.0"></script> | |
| 1984 | +<script id="pro-elements-handlers-js" src="https://www.ferroviamirabel.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.34.0"></script> | |
| 1985 | +<script id="wp-emoji-settings" type="application/json"> | |
| 1986 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}} | |
| 1987 | +</script> | |
| 1988 | +<script type="module"> | |
| 1989 | +/*! This file is auto-generated */ | |
| 1990 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 1991 | +//# sourceURL=https://www.ferroviamirabel.com/wp-includes/js/wp-emoji-loader.min.js | |
| 1992 | +</script> | |
| 1993 | + | |
| 1994 | + </body> | |
| 1995 | +</html> | |
| \ No newline at end of file | ||
added
tests/fixtures/ferrovia/index.json
+23 −0
@@ -0,0 +1,23 @@ | ||
| 1 | +{ | |
| 2 | + "c120b357ef6e4896e7ae": { | |
| 3 | + "method": "GET", | |
| 4 | + "url": "https://www.ferroviamirabel.com/disponibilites-prix-plans-phase1/", | |
| 5 | + "status": 200, | |
| 6 | + "content_type": "text/html; charset=UTF-8", | |
| 7 | + "file": "c120b357ef6e4896e7ae.html" | |
| 8 | + }, | |
| 9 | + "ada8141de33c44ccc840": { | |
| 10 | + "method": "GET", | |
| 11 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-3/", | |
| 12 | + "status": 200, | |
| 13 | + "content_type": "text/html; charset=UTF-8", | |
| 14 | + "file": "ada8141de33c44ccc840.html" | |
| 15 | + }, | |
| 16 | + "fd7bf1f70116d8fdd526": { | |
| 17 | + "method": "GET", | |
| 18 | + "url": "https://www.ferroviamirabel.com/disponibilites-phase-4/", | |
| 19 | + "status": 200, | |
| 20 | + "content_type": "text/html; charset=UTF-8", | |
| 21 | + "file": "fd7bf1f70116d8fdd526.html" | |
| 22 | + } | |
| 23 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/fournelle/3201a37934ca2abf2fad.html
+811 −0
@@ -0,0 +1,811 @@ | ||
| 1 | + | |
| 2 | +<!DOCTYPE html> | |
| 3 | +<!--[if IE 7]><html class="ie ie7" lang="fr-FR"><![endif]--> | |
| 4 | +<!--[if IE 8]><html class="ie ie8" lang="fr-FR"><![endif]--> | |
| 5 | +<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> | |
| 6 | +<!--[if IE 9 ]><html class="ie ie9" lang="en"> <![endif]--> | |
| 7 | +<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]--> | |
| 8 | +<!--[if !(IE 7) & !(IE 8) & !(IE 9)]><!--> | |
| 9 | +<html lang="fr-FR"> | |
| 10 | + | |
| 11 | +<!--<![endif]--> | |
| 12 | +<head> | |
| 13 | + <meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no"/> | |
| 14 | + <title>Appartements à louer à Bécancour (4 1/2 & 5 1/2) - Appartements Fournelle</title> | |
| 15 | + <link rel="profile" href="http://gmpg.org/xfn/11"> | |
| 16 | + <link rel="pingback" href="https://www.groupefournelle.com/xmlrpc.php"> | |
| 17 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 18 | + <meta name="format-detection" content="telephone=no"> | |
| 19 | + <script src="https://kit.fontawesome.com/2c3d2e0b49.js" crossorigin="anonymous"></script> | |
| 20 | + <script src="https://cdn.jsdelivr.net/npm/@cycjimmy/swiper-animation@4/dist/swiper-animation.umd.min.js"></script> | |
| 21 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" /> | |
| 22 | + <!-- FAVICON --> | |
| 23 | + <link rel="apple-touch-icon-precomposed" sizes="57x57" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-57x57.png" /> | |
| 24 | + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-114x114.png" /> | |
| 25 | + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-72x72.png" /> | |
| 26 | + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-144x144.png" /> | |
| 27 | + <link rel="apple-touch-icon-precomposed" sizes="60x60" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-60x60.png" /> | |
| 28 | + <link rel="apple-touch-icon-precomposed" sizes="120x120" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-120x120.png" /> | |
| 29 | + <link rel="apple-touch-icon-precomposed" sizes="76x76" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-76x76.png" /> | |
| 30 | + <link rel="apple-touch-icon-precomposed" sizes="152x152" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/apple-touch-icon-152x152.png" /> | |
| 31 | + <link rel="icon" type="image/png" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/favicon-196x196.png" sizes="196x196" /> | |
| 32 | + <link rel="icon" type="image/png" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/favicon-96x96.png" sizes="96x96" /> | |
| 33 | + <link rel="icon" type="image/png" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/favicon-32x32.png" sizes="32x32" /> | |
| 34 | + <link rel="icon" type="image/png" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/favicon-16x16.png" sizes="16x16" /> | |
| 35 | + <link rel="icon" type="image/png" href="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/favicon/favicon-128.png" sizes="128x128" /> | |
| 36 | + | |
| 37 | + <script data-cfasync="false" data-no-defer="1" data-no-minify="1" data-no-optimize="1">var ewww_webp_supported=!1;function check_webp_feature(A,e){var w;e=void 0!==e?e:function(){},ewww_webp_supported?e(ewww_webp_supported):((w=new Image).onload=function(){ewww_webp_supported=0<w.width&&0<w.height,e&&e(ewww_webp_supported)},w.onerror=function(){e&&e(!1)},w.src="data:image/webp;base64,"+{alpha:"UklGRkoAAABXRUJQVlA4WAoAAAAQAAAAAAAAAAAAQUxQSAwAAAARBxAR/Q9ERP8DAABWUDggGAAAABQBAJ0BKgEAAQAAAP4AAA3AAP7mtQAAAA=="}[A])}check_webp_feature("alpha");</script><script data-cfasync="false" data-no-defer="1" data-no-minify="1" data-no-optimize="1">var Arrive=function(c,w){"use strict";if(c.MutationObserver&&"undefined"!=typeof HTMLElement){var r,a=0,u=(r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector,{matchesSelector:function(e,t){return e instanceof HTMLElement&&r.call(e,t)},addMethod:function(e,t,r){var a=e[t];e[t]=function(){return r.length==arguments.length?r.apply(this,arguments):"function"==typeof a?a.apply(this,arguments):void 0}},callCallbacks:function(e,t){t&&t.options.onceOnly&&1==t.firedElems.length&&(e=[e[0]]);for(var r,a=0;r=e[a];a++)r&&r.callback&&r.callback.call(r.elem,r.elem);t&&t.options.onceOnly&&1==t.firedElems.length&&t.me.unbindEventWithSelectorAndCallback.call(t.target,t.selector,t.callback)},checkChildNodesRecursively:function(e,t,r,a){for(var i,n=0;i=e[n];n++)r(i,t,a)&&a.push({callback:t.callback,elem:i}),0<i.childNodes.length&&u.checkChildNodesRecursively(i.childNodes,t,r,a)},mergeArrays:function(e,t){var r,a={};for(r in e)e.hasOwnProperty(r)&&(a[r]=e[r]);for(r in t)t.hasOwnProperty(r)&&(a[r]=t[r]);return a},toElementsArray:function(e){return e=void 0!==e&&("number"!=typeof e.length||e===c)?[e]:e}}),e=(l.prototype.addEvent=function(e,t,r,a){a={target:e,selector:t,options:r,callback:a,firedElems:[]};return this._beforeAdding&&this._beforeAdding(a),this._eventsBucket.push(a),a},l.prototype.removeEvent=function(e){for(var t,r=this._eventsBucket.length-1;t=this._eventsBucket[r];r--)e(t)&&(this._beforeRemoving&&this._beforeRemoving(t),(t=this._eventsBucket.splice(r,1))&&t.length&&(t[0].callback=null))},l.prototype.beforeAdding=function(e){this._beforeAdding=e},l.prototype.beforeRemoving=function(e){this._beforeRemoving=e},l),t=function(i,n){var o=new e,l=this,s={fireOnAttributesModification:!1};return o.beforeAdding(function(t){var e=t.target;e!==c.document&&e!==c||(e=document.getElementsByTagName("html")[0]);var r=new MutationObserver(function(e){n.call(this,e,t)}),a=i(t.options);r.observe(e,a),t.observer=r,t.me=l}),o.beforeRemoving(function(e){e.observer.disconnect()}),this.bindEvent=function(e,t,r){t=u.mergeArrays(s,t);for(var a=u.toElementsArray(this),i=0;i<a.length;i++)o.addEvent(a[i],e,t,r)},this.unbindEvent=function(){var r=u.toElementsArray(this);o.removeEvent(function(e){for(var t=0;t<r.length;t++)if(this===w||e.target===r[t])return!0;return!1})},this.unbindEventWithSelectorOrCallback=function(r){var a=u.toElementsArray(this),i=r,e="function"==typeof r?function(e){for(var t=0;t<a.length;t++)if((this===w||e.target===a[t])&&e.callback===i)return!0;return!1}:function(e){for(var t=0;t<a.length;t++)if((this===w||e.target===a[t])&&e.selector===r)return!0;return!1};o.removeEvent(e)},this.unbindEventWithSelectorAndCallback=function(r,a){var i=u.toElementsArray(this);o.removeEvent(function(e){for(var t=0;t<i.length;t++)if((this===w||e.target===i[t])&&e.selector===r&&e.callback===a)return!0;return!1})},this},i=new function(){var s={fireOnAttributesModification:!1,onceOnly:!1,existing:!1};function n(e,t,r){return!(!u.matchesSelector(e,t.selector)||(e._id===w&&(e._id=a++),-1!=t.firedElems.indexOf(e._id)))&&(t.firedElems.push(e._id),!0)}var c=(i=new t(function(e){var t={attributes:!1,childList:!0,subtree:!0};return e.fireOnAttributesModification&&(t.attributes=!0),t},function(e,i){e.forEach(function(e){var t=e.addedNodes,r=e.target,a=[];null!==t&&0<t.length?u.checkChildNodesRecursively(t,i,n,a):"attributes"===e.type&&n(r,i)&&a.push({callback:i.callback,elem:r}),u.callCallbacks(a,i)})})).bindEvent;return i.bindEvent=function(e,t,r){t=void 0===r?(r=t,s):u.mergeArrays(s,t);var a=u.toElementsArray(this);if(t.existing){for(var i=[],n=0;n<a.length;n++)for(var o=a[n].querySelectorAll(e),l=0;l<o.length;l++)i.push({callback:r,elem:o[l]});if(t.onceOnly&&i.length)return r.call(i[0].elem,i[0].elem);setTimeout(u.callCallbacks,1,i)}c.call(this,e,t,r)},i},o=new function(){var a={};function i(e,t){return u.matchesSelector(e,t.selector)}var n=(o=new t(function(){return{childList:!0,subtree:!0}},function(e,r){e.forEach(function(e){var t=e.removedNodes,e=[];null!==t&&0<t.length&&u.checkChildNodesRecursively(t,r,i,e),u.callCallbacks(e,r)})})).bindEvent;return o.bindEvent=function(e,t,r){t=void 0===r?(r=t,a):u.mergeArrays(a,t),n.call(this,e,t,r)},o};d(HTMLElement.prototype),d(NodeList.prototype),d(HTMLCollection.prototype),d(HTMLDocument.prototype),d(Window.prototype);var n={};return s(i,n,"unbindAllArrive"),s(o,n,"unbindAllLeave"),n}function l(){this._eventsBucket=[],this._beforeAdding=null,this._beforeRemoving=null}function s(e,t,r){u.addMethod(t,r,e.unbindEvent),u.addMethod(t,r,e.unbindEventWithSelectorOrCallback),u.addMethod(t,r,e.unbindEventWithSelectorAndCallback)}function d(e){e.arrive=i.bindEvent,s(i,e,"unbindArrive"),e.leave=o.bindEvent,s(o,e,"unbindLeave")}}(window,void 0),ewww_webp_supported=!1;function check_webp_feature(e,t){var r;ewww_webp_supported?t(ewww_webp_supported):((r=new Image).onload=function(){ewww_webp_supported=0<r.width&&0<r.height,t(ewww_webp_supported)},r.onerror=function(){t(!1)},r.src="data:image/webp;base64,"+{alpha:"UklGRkoAAABXRUJQVlA4WAoAAAAQAAAAAAAAAAAAQUxQSAwAAAARBxAR/Q9ERP8DAABWUDggGAAAABQBAJ0BKgEAAQAAAP4AAA3AAP7mtQAAAA==",animation:"UklGRlIAAABXRUJQVlA4WAoAAAASAAAAAAAAAAAAQU5JTQYAAAD/////AABBTk1GJgAAAAAAAAAAAAAAAAAAAGQAAABWUDhMDQAAAC8AAAAQBxAREYiI/gcA"}[e])}function ewwwLoadImages(e){if(e){for(var t=document.querySelectorAll(".batch-image img, .image-wrapper a, .ngg-pro-masonry-item a, .ngg-galleria-offscreen-seo-wrapper a"),r=0,a=t.length;r<a;r++)ewwwAttr(t[r],"data-src",t[r].getAttribute("data-webp")),ewwwAttr(t[r],"data-thumbnail",t[r].getAttribute("data-webp-thumbnail"));for(var i=document.querySelectorAll("div.woocommerce-product-gallery__image"),r=0,a=i.length;r<a;r++)ewwwAttr(i[r],"data-thumb",i[r].getAttribute("data-webp-thumb"))}for(var n=document.querySelectorAll("video"),r=0,a=n.length;r<a;r++)ewwwAttr(n[r],"poster",e?n[r].getAttribute("data-poster-webp"):n[r].getAttribute("data-poster-image"));for(var o,l=document.querySelectorAll("img.ewww_webp_lazy_load"),r=0,a=l.length;r<a;r++)e&&(ewwwAttr(l[r],"data-lazy-srcset",l[r].getAttribute("data-lazy-srcset-webp")),ewwwAttr(l[r],"data-srcset",l[r].getAttribute("data-srcset-webp")),ewwwAttr(l[r],"data-lazy-src",l[r].getAttribute("data-lazy-src-webp")),ewwwAttr(l[r],"data-src",l[r].getAttribute("data-src-webp")),ewwwAttr(l[r],"data-orig-file",l[r].getAttribute("data-webp-orig-file")),ewwwAttr(l[r],"data-medium-file",l[r].getAttribute("data-webp-medium-file")),ewwwAttr(l[r],"data-large-file",l[r].getAttribute("data-webp-large-file")),null!=(o=l[r].getAttribute("srcset"))&&!1!==o&&o.includes("R0lGOD")&&ewwwAttr(l[r],"src",l[r].getAttribute("data-lazy-src-webp"))),l[r].className=l[r].className.replace(/\bewww_webp_lazy_load\b/,"");for(var s=document.querySelectorAll(".ewww_webp"),r=0,a=s.length;r<a;r++)e?(ewwwAttr(s[r],"srcset",s[r].getAttribute("data-srcset-webp")),ewwwAttr(s[r],"src",s[r].getAttribute("data-src-webp")),ewwwAttr(s[r],"data-orig-file",s[r].getAttribute("data-webp-orig-file")),ewwwAttr(s[r],"data-medium-file",s[r].getAttribute("data-webp-medium-file")),ewwwAttr(s[r],"data-large-file",s[r].getAttribute("data-webp-large-file")),ewwwAttr(s[r],"data-large_image",s[r].getAttribute("data-webp-large_image")),ewwwAttr(s[r],"data-src",s[r].getAttribute("data-webp-src"))):(ewwwAttr(s[r],"srcset",s[r].getAttribute("data-srcset-img")),ewwwAttr(s[r],"src",s[r].getAttribute("data-src-img"))),s[r].className=s[r].className.replace(/\bewww_webp\b/,"ewww_webp_loaded");window.jQuery&&jQuery.fn.isotope&&jQuery.fn.imagesLoaded&&(jQuery(".fusion-posts-container-infinite").imagesLoaded(function(){jQuery(".fusion-posts-container-infinite").hasClass("isotope")&&jQuery(".fusion-posts-container-infinite").isotope()}),jQuery(".fusion-portfolio:not(.fusion-recent-works) .fusion-portfolio-wrapper").imagesLoaded(function(){jQuery(".fusion-portfolio:not(.fusion-recent-works) .fusion-portfolio-wrapper").isotope()}))}function ewwwWebPInit(e){ewwwLoadImages(e),ewwwNggLoadGalleries(e),document.arrive(".ewww_webp",function(){ewwwLoadImages(e)}),document.arrive(".ewww_webp_lazy_load",function(){ewwwLoadImages(e)}),document.arrive("videos",function(){ewwwLoadImages(e)}),"loading"==document.readyState?document.addEventListener("DOMContentLoaded",ewwwJSONParserInit):("undefined"!=typeof galleries&&ewwwNggParseGalleries(e),ewwwWooParseVariations(e))}function ewwwAttr(e,t,r){null!=r&&!1!==r&&e.setAttribute(t,r)}function ewwwJSONParserInit(){"undefined"!=typeof galleries&&check_webp_feature("alpha",ewwwNggParseGalleries),check_webp_feature("alpha",ewwwWooParseVariations)}function ewwwWooParseVariations(e){if(e)for(var t=document.querySelectorAll("form.variations_form"),r=0,a=t.length;r<a;r++){var i=t[r].getAttribute("data-product_variations"),n=!1;try{for(var o in i=JSON.parse(i))void 0!==i[o]&&void 0!==i[o].image&&(void 0!==i[o].image.src_webp&&(i[o].image.src=i[o].image.src_webp,n=!0),void 0!==i[o].image.srcset_webp&&(i[o].image.srcset=i[o].image.srcset_webp,n=!0),void 0!==i[o].image.full_src_webp&&(i[o].image.full_src=i[o].image.full_src_webp,n=!0),void 0!==i[o].image.gallery_thumbnail_src_webp&&(i[o].image.gallery_thumbnail_src=i[o].image.gallery_thumbnail_src_webp,n=!0),void 0!==i[o].image.thumb_src_webp&&(i[o].image.thumb_src=i[o].image.thumb_src_webp,n=!0));n&&ewwwAttr(t[r],"data-product_variations",JSON.stringify(i))}catch(e){}}}function ewwwNggParseGalleries(e){if(e)for(var t in galleries){var r=galleries[t];galleries[t].images_list=ewwwNggParseImageList(r.images_list)}}function ewwwNggLoadGalleries(e){e&&document.addEventListener("ngg.galleria.themeadded",function(e,t){window.ngg_galleria._create_backup=window.ngg_galleria.create,window.ngg_galleria.create=function(e,t){var r=$(e).data("id");return galleries["gallery_"+r].images_list=ewwwNggParseImageList(galleries["gallery_"+r].images_list),window.ngg_galleria._create_backup(e,t)}})}function ewwwNggParseImageList(e){for(var t in e){var r=e[t];if(void 0!==r["image-webp"]&&(e[t].image=r["image-webp"],delete e[t]["image-webp"]),void 0!==r["thumb-webp"]&&(e[t].thumb=r["thumb-webp"],delete e[t]["thumb-webp"]),void 0!==r.full_image_webp&&(e[t].full_image=r.full_image_webp,delete e[t].full_image_webp),void 0!==r.srcsets)for(var a in r.srcsets)nggSrcset=r.srcsets[a],void 0!==r.srcsets[a+"-webp"]&&(e[t].srcsets[a]=r.srcsets[a+"-webp"],delete e[t].srcsets[a+"-webp"]);if(void 0!==r.full_srcsets)for(var i in r.full_srcsets)nggFSrcset=r.full_srcsets[i],void 0!==r.full_srcsets[i+"-webp"]&&(e[t].full_srcsets[i]=r.full_srcsets[i+"-webp"],delete e[t].full_srcsets[i+"-webp"])}return e}check_webp_feature("alpha",ewwwWebPInit);</script><meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> | |
| 38 | + | |
| 39 | + <!-- This site is optimized with the Yoast SEO plugin v28.2 - https://yoast.com/product/yoast-seo-wordpress/ --> | |
| 40 | + <meta name="description" content="Immeubles locatifs de format 4 1/2 et 5 1/2 à louer, Bécancour secteur Sainte-Angèle. Condos & maisons de ville. - 819-602-0227 poste #2" /> | |
| 41 | + <link rel="canonical" href="https://www.groupefournelle.com/appartements-fournelle/" /> | |
| 42 | + <meta property="og:locale" content="fr_FR" /> | |
| 43 | + <meta property="og:type" content="article" /> | |
| 44 | + <meta property="og:title" content="Appartements à louer à Bécancour (4 1/2 & 5 1/2) - Appartements Fournelle" /> | |
| 45 | + <meta property="og:description" content="Immeubles locatifs de format 4 1/2 et 5 1/2 à louer, Bécancour secteur Sainte-Angèle. Condos & maisons de ville. - 819-602-0227 poste #2" /> | |
| 46 | + <meta property="og:url" content="https://www.groupefournelle.com/appartements-fournelle/" /> | |
| 47 | + <meta property="og:site_name" content="Groupe Fournelle" /> | |
| 48 | + <meta property="article:modified_time" content="2024-06-18T20:20:17+00:00" /> | |
| 49 | + <meta property="og:image" content="https://www.groupefournelle.com/wp-content/uploads/2024/05/20240521_132631-scaled.jpg" /> | |
| 50 | + <meta property="og:image:width" content="2560" /> | |
| 51 | + <meta property="og:image:height" content="1440" /> | |
| 52 | + <meta property="og:image:type" content="image/jpeg" /> | |
| 53 | + <meta name="twitter:card" content="summary_large_image" /> | |
| 54 | + <meta name="twitter:label1" content="Durée de lecture estimée" /> | |
| 55 | + <meta name="twitter:data1" content="1 minute" /> | |
| 56 | + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/","url":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/","name":"Appartements à louer à Bécancour (4 1\/2 & 5 1\/2) - Appartements Fournelle","isPartOf":{"@id":"https:\/\/www.groupefournelle.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/#primaryimage"},"image":{"@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/#primaryimage"},"thumbnailUrl":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2024\/05\/20240521_132631-scaled.jpg","datePublished":"2024-05-09T18:52:17+00:00","dateModified":"2024-06-18T20:20:17+00:00","description":"Immeubles locatifs de format 4 1\/2 et 5 1\/2 à louer, Bécancour secteur Sainte-Angèle. Condos & maisons de ville. - 819-602-0227 poste #2","breadcrumb":{"@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.groupefournelle.com\/appartements-fournelle\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/#primaryimage","url":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2024\/05\/20240521_132631-scaled.jpg","contentUrl":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2024\/05\/20240521_132631-scaled.jpg","width":2560,"height":1440,"caption":"Carré de la Tour - Maisons de ville 5 1\/2"},{"@type":"BreadcrumbList","@id":"https:\/\/www.groupefournelle.com\/appartements-fournelle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.groupefournelle.com\/"},{"@type":"ListItem","position":2,"name":"Appartements Fournelle"}]},{"@type":"WebSite","@id":"https:\/\/www.groupefournelle.com\/#website","url":"https:\/\/www.groupefournelle.com\/","name":"Groupe Fournelle","description":"Dessiner vôtre rêve avec nous","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.groupefournelle.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}</script> | |
| 57 | + <!-- / Yoast SEO plugin. --> | |
| 58 | + | |
| 59 | + | |
| 60 | +<link rel='dns-prefetch' href='//cdn.jsdelivr.net' /> | |
| 61 | +<link rel='dns-prefetch' href='//unpkg.com' /> | |
| 62 | +<link rel='dns-prefetch' href='//maps.google.com' /> | |
| 63 | +<link rel='dns-prefetch' href='//fonts.googleapis.com' /> | |
| 64 | +<link rel='dns-prefetch' href='//kit.fontawesome.com' /> | |
| 65 | +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.groupefournelle.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.groupefournelle.com%2Fappartements-fournelle%2F" /> | |
| 66 | +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.groupefournelle.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.groupefournelle.com%2Fappartements-fournelle%2F&format=xml" /> | |
| 67 | +<style id="wp-img-auto-sizes-contain-inline-css"> | |
| 68 | +img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} | |
| 69 | +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */ | |
| 70 | +</style> | |
| 71 | + | |
| 72 | +<style id="wp-emoji-styles-inline-css"> | |
| 73 | + | |
| 74 | + img.wp-smiley, img.emoji { | |
| 75 | + display: inline !important; | |
| 76 | + border: none !important; | |
| 77 | + box-shadow: none !important; | |
| 78 | + height: 1em !important; | |
| 79 | + width: 1em !important; | |
| 80 | + margin: 0 0.07em !important; | |
| 81 | + vertical-align: -0.1em !important; | |
| 82 | + background: none !important; | |
| 83 | + padding: 0 !important; | |
| 84 | + } | |
| 85 | +/*# sourceURL=wp-emoji-styles-inline-css */ | |
| 86 | +</style> | |
| 87 | +<style id="wp-block-library-inline-css"> | |
| 88 | +:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} | |
| 89 | + | |
| 90 | +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ | |
| 91 | +</style> | |
| 92 | +<style id="wp-block-heading-inline-css"> | |
| 93 | +h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg} | |
| 94 | +/*# sourceURL=https://www.groupefournelle.com/wp-includes/blocks/heading/style.min.css */ | |
| 95 | +</style> | |
| 96 | +<style id="wp-block-paragraph-inline-css"> | |
| 97 | +.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg} | |
| 98 | +/*# sourceURL=https://www.groupefournelle.com/wp-includes/blocks/paragraph/style.min.css */ | |
| 99 | +</style> | |
| 100 | +<style id="wp-block-columns-inline-css"> | |
| 101 | +.wp-block-columns{box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns{align-items:normal!important}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%} | |
| 102 | +/*# sourceURL=https://www.groupefournelle.com/wp-includes/blocks/columns/style.min.css */ | |
| 103 | +</style> | |
| 104 | +<style id="wp-block-social-links-inline-css"> | |
| 105 | +.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link{height:auto}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{fill:currentColor;color:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{stroke:#000;background-color:#fefc00;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{stroke:#000;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000} | |
| 106 | +/*# sourceURL=https://www.groupefournelle.com/wp-includes/blocks/social-links/style.min.css */ | |
| 107 | +</style> | |
| 108 | + | |
| 109 | +<style id="classic-theme-styles-inline-css"> | |
| 110 | +/*! This file is auto-generated */ | |
| 111 | +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} | |
| 112 | +/*# sourceURL=/wp-includes/css/classic-themes.min.css */ | |
| 113 | +</style> | |
| 114 | + | |
| 115 | +<style id="global-styles-inline-css"> | |
| 116 | +:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} | |
| 117 | +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} | |
| 118 | +/*# sourceURL=global-styles-inline-css */ | |
| 119 | +</style> | |
| 120 | + | |
| 121 | +<link rel='stylesheet' id='contact-form-7-css' href='https://www.groupefournelle.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.6' media='all' /> | |
| 122 | +<link rel='stylesheet' id='venobox-css-css' href='https://www.groupefournelle.com/wp-content/plugins/venobox-lightbox/css/venobox.min.css?ver=1.9.3' media='all' /> | |
| 123 | +<link rel='stylesheet' id='googlefonts1-css' href='https://fonts.googleapis.com/css2?family=Spectral&display=swap%20rel=stylesheet' media='all' /> | |
| 124 | +<link rel='stylesheet' id='googlefonts2-css' href='https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap%20rel=stylesheet' media='all' /> | |
| 125 | +<link rel='stylesheet' id='googlefonts3-css' href='https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap%20rel=stylesheet' media='all' /> | |
| 126 | +<link rel='stylesheet' id='font-awesome-css' href='https://kit.fontawesome.com/e45915bee1.js' media='all' /> | |
| 127 | +<link rel='stylesheet' id='bootstrap-css-css' href='https://www.groupefournelle.com/wp-content/themes/groupefournelle/bootstrap/bootstrap.min.css' media='all' /> | |
| 128 | +<link rel='stylesheet' id='swiper-style-css' href='https://unpkg.com/swiper/swiper-bundle.min.css' media='all' /> | |
| 129 | +<link rel='stylesheet' id='burger-style-css' href='https://www.groupefournelle.com/wp-content/themes/groupefournelle/css/hamburgers.min.css' media='all' /> | |
| 130 | +<link rel='stylesheet' id='child-style-gab-css' href='https://www.groupefournelle.com/wp-content/themes/groupefournelle/css/style.css' media='all' /> | |
| 131 | +<link rel='stylesheet' id='aos-css' href='https://unpkg.com/aos@next/dist/aos.css?ver=7.0.3' media='all' /> | |
| 132 | +<link rel='stylesheet' id='fancybox-style-css' href='https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css?ver=7.0.3' media='all' /> | |
| 133 | +<script id="adn-ga-head-scripts-js-after"> | |
| 134 | +(function(i, s, o, g, r, a, m) {i['GoogleAnalyticsObject'] = r;i[r] = i[r] || function() {(i[r].q = i[r].q || []).push(arguments)}, i[r].l = 1 * new Date();a = s.createElement(o), m = s.getElementsByTagName(o)[0];a.async = 1;a.src = g;m.parentNode.insertBefore(a, m)})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');ga('create', 'UA-199157900-1', 'auto');ga('send', 'pageview'); | |
| 135 | +//# sourceURL=adn-ga-head-scripts-js-after | |
| 136 | +</script> | |
| 137 | +<script id="jquery-core-js" src="https://www.groupefournelle.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> | |
| 138 | +<script id="jquery-migrate-js" src="https://www.groupefournelle.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> | |
| 139 | +<script id="fancybox-script-js" src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js?ver=7.0.3"></script> | |
| 140 | +<script id="aos-script-js" src="https://unpkg.com/aos@next/dist/aos.js?ver=7.0.3"></script> | |
| 141 | +<script id="googlemap-script-js" src="//maps.google.com/maps/api/js?key=AIza_CLE_CAVIARDEE_LOUKA_000000000000000&ver=7.0.3"></script> | |
| 142 | +<link rel="https://api.w.org/" href="https://www.groupefournelle.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.groupefournelle.com/wp-json/wp/v2/pages/1124" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.groupefournelle.com/xmlrpc.php?rsd" /> | |
| 143 | +<meta name="generator" content="WordPress 7.0.3" /> | |
| 144 | +<link rel='shortlink' href='https://www.groupefournelle.com/?p=1124' /> | |
| 145 | +<script src="https://kit.fontawesome.com/0491bf1fd4.js" crossorigin="anonymous"></script> <style> | |
| 146 | + #wp-admin-bar-comments { | |
| 147 | + display: none; | |
| 148 | + } | |
| 149 | + </style> | |
| 150 | + <style> | |
| 151 | + a, a:active, a:focus { | |
| 152 | + outline: none !important; | |
| 153 | + } | |
| 154 | + </style> | |
| 155 | + <style> | |
| 156 | + .woocommerce h2 { | |
| 157 | + margin-bottom: 0 !important; | |
| 158 | + } | |
| 159 | + .woocommerce-js h2 { | |
| 160 | + margin-bottom: 0 !important; | |
| 161 | + } | |
| 162 | + </style> | |
| 163 | + <style> | |
| 164 | + .ast-container { | |
| 165 | + max-width: 100% !important; | |
| 166 | + margin-left: 0px !important; | |
| 167 | + margin-right: 0px !important; | |
| 168 | + padding-left: 0px !important; | |
| 169 | + padding-right: 0px !important; | |
| 170 | + } | |
| 171 | + .woocommerce-cart .ast-container, | |
| 172 | + .woocommerce-account .ast-container { | |
| 173 | + max-width: var(--wp--custom--ast-content-width-size) !important; | |
| 174 | + margin-left: auto !important; | |
| 175 | + margin-right: auto !important; | |
| 176 | + } | |
| 177 | + .woocommerce-cart .ast-container:has([data-elementor-type="wp-page"]), | |
| 178 | + .woocommerce-account .ast-container:has([data-elementor-type="wp-page"]) { | |
| 179 | + max-width: 100% !important; | |
| 180 | + margin-left: auto !important; | |
| 181 | + margin-right: auto !important; | |
| 182 | + } | |
| 183 | + .ast-separate-container .ast-article-post, | |
| 184 | + .ast-separate-container .ast-article-single, | |
| 185 | + .ast-separate-container .ast-author-box, | |
| 186 | + .ast-separate-container .ast-404-layout-1, | |
| 187 | + .ast-separate-container .no-results { | |
| 188 | + padding: 0 !important; | |
| 189 | + } | |
| 190 | + .ast-separate-container .ast-article-post { | |
| 191 | + background-color: transparent; | |
| 192 | + } | |
| 193 | + .ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single { | |
| 194 | + border-bottom: 0px solid transparent; | |
| 195 | + } | |
| 196 | + .ast-separate-container #primary, .ast-separate-container.ast-left-sidebar #primary, .ast-separate-container.ast-right-sidebar #primary { | |
| 197 | + margin: 0 !important; | |
| 198 | + padding: 0; | |
| 199 | + } | |
| 200 | + .ast-grid-common-col { | |
| 201 | + padding-left: 0px; | |
| 202 | + padding-right: 0px; | |
| 203 | + } | |
| 204 | + </style> | |
| 205 | + <script> | |
| 206 | + jQuery(document).ready(function($) { | |
| 207 | + $('#wp-admin-bar-wpseo-menu').remove(); | |
| 208 | + }); | |
| 209 | + </script> | |
| 210 | + <style> | |
| 211 | + #wp-admin-bar-wpseo-menu { | |
| 212 | + display: none; | |
| 213 | + } | |
| 214 | + </style> | |
| 215 | + <style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><noscript><style>.lazyload[data-src]{display:none !important;}</style></noscript><style>.lazyload{background-image:none !important;}.lazyload:before{background-image:none !important;}</style><script>document.addEventListener("DOMContentLoaded", function() { | |
| 216 | + if (window.location.href === 'https://www.groupefournelle.com/fournelle-systemes-structuraux/') { | |
| 217 | + document.body.classList.add('fournelle-page'); | |
| 218 | + } | |
| 219 | +}); | |
| 220 | +</script><style>.page-id-264 .post-thumbnail, | |
| 221 | +.page-id-1144 .post-thumbnail, | |
| 222 | +.page-id-1124 .post-thumbnail, | |
| 223 | +.page-id-13 .post-thumbnail { | |
| 224 | + display: none!important; | |
| 225 | +} | |
| 226 | +</style><style>.nav-second { | |
| 227 | + display: flex; | |
| 228 | + list-style-type: none; | |
| 229 | + gap: 20px; | |
| 230 | + color: white; | |
| 231 | + font-weight: 500; | |
| 232 | + justify-content: flex-end; | |
| 233 | +} | |
| 234 | +.nav-second .current-menu-item { | |
| 235 | + color: white !important; | |
| 236 | +} | |
| 237 | + | |
| 238 | +.wp-block-embed.is-type-video.is-provider-youtube iframe { | |
| 239 | + width: 100%; | |
| 240 | + aspect-ratio: 16/9; | |
| 241 | + display: block; | |
| 242 | + height: 100%; | |
| 243 | +} | |
| 244 | + | |
| 245 | +.nav-second .current_page_item::after, .nav-second .current-menu-item::after { | |
| 246 | + display: none; | |
| 247 | +} | |
| 248 | + | |
| 249 | +@media(max-width: 992px) { | |
| 250 | + .nav-second { | |
| 251 | + display: none; | |
| 252 | + } | |
| 253 | +} | |
| 254 | + | |
| 255 | + | |
| 256 | +/*container max-width*/ | |
| 257 | + | |
| 258 | +.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { | |
| 259 | + padding-left:50px; | |
| 260 | + padding-right:50px; | |
| 261 | +} | |
| 262 | + | |
| 263 | +@media only screen and (max-width:768px) { | |
| 264 | + .page__title { | |
| 265 | + font-size: 50px!important; /* Taille de police de 50px pour les appareils mobiles */ | |
| 266 | + line-height: 50px; | |
| 267 | + } | |
| 268 | +} | |
| 269 | +@media only screen and (max-width: 460px) { | |
| 270 | + .page__title { | |
| 271 | + font-size: 35px!important; /* Taille de police de 50px pour les appareils mobiles */ | |
| 272 | + line-height: 35px; | |
| 273 | + } | |
| 274 | +} | |
| 275 | + | |
| 276 | + | |
| 277 | +/* page système structuraux */ | |
| 278 | +.galerie-photo { | |
| 279 | + display: grid; | |
| 280 | + grid-template-columns: repeat(4, 1fr); | |
| 281 | + gap: 10px; | |
| 282 | +} | |
| 283 | + | |
| 284 | +.lb-data .lb-close { | |
| 285 | + margin-right: 50px; | |
| 286 | +} | |
| 287 | +.image-item { | |
| 288 | + box-sizing: border-box; | |
| 289 | +} | |
| 290 | + | |
| 291 | +.image-item img { | |
| 292 | + width: 100%; | |
| 293 | + height: auto; | |
| 294 | + display: block; | |
| 295 | +} | |
| 296 | + | |
| 297 | +.fournelle-page .swiper-button-prev{ | |
| 298 | + top:210px!important; | |
| 299 | + width: 50px!important; | |
| 300 | + height: 50px!important; | |
| 301 | + background-color: #172853!important; | |
| 302 | +} | |
| 303 | +.fournelle-page .swiper-button-next{ | |
| 304 | + top:210px!important; | |
| 305 | + left:80px!important; | |
| 306 | + | |
| 307 | + width: 50px!important; | |
| 308 | + height: 50px!important; | |
| 309 | + background-color: #172853!important; | |
| 310 | +} | |
| 311 | + | |
| 312 | +.fournelle-page .swiper-button-prev:hover{ | |
| 313 | + | |
| 314 | + background-color: #0c152b!important; | |
| 315 | +} | |
| 316 | +.fournelle-page .swiper-button-next:hover{ | |
| 317 | + | |
| 318 | + background-color: #0c152b!important; | |
| 319 | +} | |
| 320 | +.fournelle-page .galerie-photo{ | |
| 321 | + height:250px!important; | |
| 322 | +} | |
| 323 | +.fournelle-page .swiper-button-next:after { | |
| 324 | + font-family: swiper-icons; | |
| 325 | + font-size:14px!important; | |
| 326 | + color:white!important; | |
| 327 | +} | |
| 328 | +.fournelle-page .swiper-button-prev:after { | |
| 329 | + font-family: swiper-icons; | |
| 330 | + font-size:14px!important; | |
| 331 | + color:white!important; | |
| 332 | +} | |
| 333 | + | |
| 334 | +.swiper-container.swiper-locations { | |
| 335 | + overflow: hidden; | |
| 336 | +}</style><style>.vbox-container { | |
| 337 | + max-height: 100vh !important; | |
| 338 | + display: flex; | |
| 339 | +} | |
| 340 | +.vbox-content { | |
| 341 | + max-height: 100vh !important; | |
| 342 | + display: flex; | |
| 343 | + justify-content: center; | |
| 344 | +}</style><style id="core-block-supports-inline-css"> | |
| 345 | +.wp-container-core-columns-is-layout-8f761849{flex-wrap:nowrap;} | |
| 346 | +/*# sourceURL=core-block-supports-inline-css */ | |
| 347 | +</style> | |
| 348 | + | |
| 349 | +</head> | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | +<body class="wp-singular page-template-default page page-id-1124 wp-theme-groupefournelle"> | |
| 354 | +<!-- LIGNE POUR EFFET VISUEL | |
| 355 | +<div class="ligne-1"></div> | |
| 356 | +<div class="ligne-2"></div> | |
| 357 | +<div class="ligne-3"></div> | |
| 358 | +<div class="ligne-4"></div> --> | |
| 359 | + | |
| 360 | + <!-- BOITE DEVELOPPEMENT --> | |
| 361 | + <!--<div class="boite-developpement"> | |
| 362 | + <a href="/domaine-de-lile"> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaine-ile-logo.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaine-ile-logo.svg" alt="" data-eio="l"></noscript> </a> | |
| 363 | + <a href="/domaine-de-la-tour"> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaine-tour-logo.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaine-tour-logo.svg" alt="" data-eio="l"></noscript> </a> | |
| 364 | + <a href="/domaine-clement-vincent"> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-clement-vincent.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-clement-vincent.svg" alt="" data-eio="l"></noscript> </a> | |
| 365 | + <a href="/domaine-sorel-tracy/"> <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/Logo_Placedeschataigniers_1_bleu.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/Logo_Placedeschataigniers_1_bleu.svg" alt="" data-eio="l"></noscript> </a> | |
| 366 | + </div>--> | |
| 367 | + <!-- *********************** TOP HEADER ********************* --> | |
| 368 | + | |
| 369 | + <header id="top-header"> | |
| 370 | + <!-- BURGER --> | |
| 371 | + | |
| 372 | + <nav class="menus"> | |
| 373 | + <div class="flex-wrapper"> | |
| 374 | + | |
| 375 | + <!-- LOGO DESKTOP--> | |
| 376 | + <div class="logo-wrapper"> | |
| 377 | + <a href="https://www.groupefournelle.com" class="logo"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Logo" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-site-entete.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-site-entete.svg" alt="Logo" data-eio="l"></noscript></a> | |
| 378 | + </div> | |
| 379 | + | |
| 380 | + <div class="extra-wrapper"> | |
| 381 | + <div class="logo-wrapper"> | |
| 382 | + <a href="https://www.groupefournelle.com" class="logo"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Logo" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-site-entete.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/logo-site-entete.svg" alt="Logo" data-eio="l"></noscript></a> | |
| 383 | + </div> | |
| 384 | + <div class="extra"> | |
| 385 | + <!-- MENU EXTRA --> | |
| 386 | + <ul id="menu-menu-extra" class="nav"><li id="menu-item-40" class="img-nav menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-40"><a href="https://www.groupefournelle.com/groupe-fournelle/"><img style="max-height:55px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" decoding="async" class="lazyload"><noscript><img style="max-height:55px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" data-eio="l"></noscript></a> | |
| 387 | +<ul class="sub-menu"> | |
| 388 | + <li id="menu-item-1201" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1201"><a href="https://www.groupefournelle.com/domaines/terrains-residentiels-a-vendre-domaine-de-lile/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-ile-logo.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-ile-logo.svg" data-eio="l"></noscript></a></li> | |
| 389 | + <li id="menu-item-1202" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1202"><a href="https://www.groupefournelle.com/domaines/domaine-de-la-tour/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-tour-logo.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-tour-logo.svg" data-eio="l"></noscript></a></li> | |
| 390 | + <li id="menu-item-1203" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1203"><a href="https://www.groupefournelle.com/domaines/domaine-sorel-tracy/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/04/Logo_Placedeschataigniers_1_bleu.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/04/Logo_Placedeschataigniers_1_bleu.svg" data-eio="l"></noscript></a></li> | |
| 391 | + <li id="menu-item-1296" class="texte-domaines-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-1296"><a>Bécancour</a></li> | |
| 392 | + <li id="menu-item-1295" class="texte-domaines-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-1295"><a>Sorel</a></li> | |
| 393 | +</ul> | |
| 394 | +</li> | |
| 395 | +<li id="menu-item-42" class="img-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-42"><a href="/fournelle-co"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-fournelle-co.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-fournelle-co.svg" data-eio="l"></noscript></a></li> | |
| 396 | +<li id="menu-item-1204" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1124 current_page_item menu-item-1204"><a href="https://www.groupefournelle.com/appartements-fournelle/" aria-current="page"><span style="font-weight:800;padding-top:15px;padding-bottom:10px;">Appartements Fournelle</span></a></li> | |
| 397 | +<li id="menu-item-1205" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1205"><a href="https://www.groupefournelle.com/fournelle-systemes-structuraux/"><img style="max-height:40px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABh0AAAFcAQAAAAD0LkKcAAAAAnRSTlMAAHaTzTgAAABZSURBVHja7cEBDQAAAMKg909tDjegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeDUL2wABG9ao0QAAAABJRU5ErkJggg==" data-src="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png" decoding="async" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="1565" data-eio-rheight="348" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png.webp"><noscript><img style="max-height:40px;" src="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png" data-eio="l"></noscript></a></li> | |
| 398 | +</ul> </div> | |
| 399 | + <!-- <div class="socials"> | |
| 400 | + <a href="tel:18196020227" class="phone"><i class="fas fa-phone-alt"></i></a> | |
| 401 | + <a href="https://www.linkedin.com/company/groupe-fournelle/mycompany/?viewAsMember=true" class="facebook" target="_blank"><i class="fab fa-linkedin-in"></i></a> | |
| 402 | + <a href="https://www.facebook.com/profile.php?id=100082010837463" class="facebook" target="_blank"><i class="fab fa-facebook"></i></a> | |
| 403 | + </div> --> | |
| 404 | + </div> | |
| 405 | + | |
| 406 | + <div class="menus-wrapper"> | |
| 407 | + <!-- 2 MENU --> | |
| 408 | + <!--<a class="tel-menu" href="tel:18196020227">819 602-0227</a>--> | |
| 409 | + <ul id="menu-secondaire" class="nav-second"><li id="menu-item-1304" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1304"><a href="https://www.groupefournelle.com/">Accueil</a></li> | |
| 410 | +<li id="menu-item-1305" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1305"><a href="https://www.groupefournelle.com/nouvelles/">Nouvelles</a></li> | |
| 411 | +<li id="menu-item-1306" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1306"><a href="https://www.groupefournelle.com/nous-joindre/">Nous joindre</a></li> | |
| 412 | +<li id="menu-item-1308" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1308"><a href="tel:8196020227">819 602-0227</a></li> | |
| 413 | +</ul> <div class="principal"> | |
| 414 | + <!-- MENU PRINCIPAL --> | |
| 415 | + <ul id="menu-menu-principal" class="nav"><li id="menu-item-25" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-25"><a href="https://www.groupefournelle.com/groupe-fournelle/"><img style="max-height:55px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" decoding="async" class="lazyload"><noscript><img style="max-height:55px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" data-eio="l"></noscript><span class="logo-det">Terrains à vendre</span></a> | |
| 416 | +<ul class="sub-menu"> | |
| 417 | + <li id="menu-item-1196" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1196"><a href="https://www.groupefournelle.com/domaines/terrains-residentiels-a-vendre-domaine-de-lile/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-ile-logo.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-ile-logo.svg" data-eio="l"></noscript></a></li> | |
| 418 | + <li id="menu-item-1197" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1197"><a href="https://www.groupefournelle.com/domaines/domaine-de-la-tour/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-tour-logo.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/domaine-tour-logo.svg" data-eio="l"></noscript></a></li> | |
| 419 | + <li id="menu-item-1198" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1198"><a href="https://www.groupefournelle.com/domaines/domaine-sorel-tracy/"><img style="max-height:65px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/04/Logo_Placedeschataigniers_1_bleu.svg" decoding="async" class="lazyload"><noscript><img style="max-height:65px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/04/Logo_Placedeschataigniers_1_bleu.svg" data-eio="l"></noscript></a></li> | |
| 420 | + <li id="menu-item-1297" class="texte-domaines-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-1297"><a>Bécancour</a></li> | |
| 421 | + <li id="menu-item-1298" class="texte-domaines-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a>Sorel</a></li> | |
| 422 | +</ul> | |
| 423 | +</li> | |
| 424 | +<li id="menu-item-30" class="img-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-30"><a href="/fournelle-co"><img style="max-height:55px;" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-fournelle-co.svg" decoding="async" class="lazyload"><noscript><img style="max-height:55px;" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-fournelle-co.svg" data-eio="l"></noscript><span class="logo-det">Modèles de maisons</span></a></li> | |
| 425 | +<li id="menu-item-1194" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1124 current_page_item menu-item-1194"><a href="https://www.groupefournelle.com/appartements-fournelle/" aria-current="page"><span style="font-weight:800;padding-top:15px;padding-bottom:10px;">Appartements Fournelle</span><span class="logo-det">Unités à louer</span></a></li> | |
| 426 | +<li id="menu-item-1195" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1195"><a href="https://www.groupefournelle.com/fournelle-systemes-structuraux/"><img style="max-height:40px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABh0AAAFcAQAAAAD0LkKcAAAAAnRSTlMAAHaTzTgAAABZSURBVHja7cEBDQAAAMKg909tDjegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeDUL2wABG9ao0QAAAABJRU5ErkJggg==" data-src="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png" decoding="async" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="1565" data-eio-rheight="348" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png.webp"><noscript><img style="max-height:40px;" src="https://www.groupefournelle.com/wp-content/uploads/2023/11/fournelle-structuraux.png" data-eio="l"></noscript><span class="logo-det">Structures préfabriquées</span></a></li> | |
| 427 | +</ul> <!-- <div class="socials"> | |
| 428 | + <a href="https://www.linkedin.com/company/groupe-fournelle/mycompany/?viewAsMember=true" class="facebook" target="_blank"><i class="fab fa-linkedin-in"></i></a> | |
| 429 | + <a href="https://www.facebook.com/profile.php?id=100082010837463" class="facebook" target="_blank"><i class="fab fa-facebook"></i></a> | |
| 430 | + </div> --> | |
| 431 | + </div> <!-- fin de principal --> | |
| 432 | + | |
| 433 | + <div class="mobile"> | |
| 434 | + | |
| 435 | + <!-- MENU MOBILE --> | |
| 436 | + <ul id="menu-menu-mobile" class="nav"><li id="menu-item-1309" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-1309"><a href="https://www.groupefournelle.com/">Accueil</a></li> | |
| 437 | +<li id="menu-item-57" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-57"><a href="https://www.groupefournelle.com/groupe-fournelle/">Groupe Fournelle</a> | |
| 438 | +<ul class="sub-menu"> | |
| 439 | + <li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-73"><a href="/domaines/terrains-residentiels-a-vendre-domaine-de-lile/">Domaine de l’Île</a></li> | |
| 440 | + <li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-74"><a href="/domaine-de-la-tour">Domaine de la Tour</a></li> | |
| 441 | + <li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-76"><a href="/domaine-sorel-tracy/">Place des châtaigniers</a></li> | |
| 442 | +</ul> | |
| 443 | +</li> | |
| 444 | +<li id="menu-item-1244" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1244"><a href="https://www.groupefournelle.com/fournelle-co/">Fournelle Co</a></li> | |
| 445 | +<li id="menu-item-1243" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1124 current_page_item menu-item-1243"><a href="https://www.groupefournelle.com/appartements-fournelle/" aria-current="page">Appartements Fournelle</a></li> | |
| 446 | +<li id="menu-item-1242" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1242"><a href="https://www.groupefournelle.com/fournelle-systemes-structuraux/">Fournelle systèmes structuraux</a></li> | |
| 447 | +<li id="menu-item-55" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-55"><a href="https://www.groupefournelle.com/nouvelles/">Nouvelles</a></li> | |
| 448 | +<li id="menu-item-59" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-59"><a href="https://www.groupefournelle.com/nous-joindre/">Nous joindre</a></li> | |
| 449 | +</ul> | |
| 450 | + </div> <!-- fin de MOBILE --> | |
| 451 | + | |
| 452 | + </div><!-- fin sidenav --> | |
| 453 | + | |
| 454 | + <div id="burger"> | |
| 455 | + <div class="hamburger hamburger--spring js-hamburger" > | |
| 456 | + <span class="hamburger-box"> | |
| 457 | + <span class="hamburger-inner"></span> | |
| 458 | + </span> | |
| 459 | + </div> | |
| 460 | + </div> | |
| 461 | + </div> | |
| 462 | + </nav> | |
| 463 | + | |
| 464 | + <!-- <div class="bottom-box"> | |
| 465 | + <a href="tel:18196020227" class="phone"><i class="fas fa-phone-alt"></i> 819 602-0227</a> | |
| 466 | + <a href="https://www.linkedin.com/company/groupe-fournelle/mycompany/?viewAsMember=true" class="facebook" target="_blank"><i class="fab fa-linkedin-in"></i></a> | |
| 467 | + <a href="https://www.facebook.com/profile.php?id=100082010837463" class="facebook" target="_blank"><i class="fab fa-facebook"></i></a> | |
| 468 | + </div> --> | |
| 469 | + | |
| 470 | + </header><!-- End Header --> | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + <!-- content | |
| 475 | + ================================================== --> | |
| 476 | + | |
| 477 | +<div id="content"> <!-- Template INDEX --> | |
| 478 | + <div class="banner-single-page lazyload" style="" data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg" data-eio-rwidth="1200" data-eio-rheight="800" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg.webp"><div class="fondu-bg"></div></div> | |
| 479 | + | |
| 480 | + <div class="container"> | |
| 481 | + <div class="row"> | |
| 482 | + | |
| 483 | + <!-- Wordpress LOOP --> | |
| 484 | + <div class="col-md-12"><h1 class="page__title" data-aos-delay="150" data-aos-duration="1500">Appartements Fournelle</h1></div> | |
| 485 | +<div class="wp-block-columns colonne-entreprise is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex"> | |
| 486 | +<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> | |
| 487 | +<h2 class="wp-block-heading">Logements luxueux à louer à Bécancour</h2> | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | +<p class="wp-block-paragraph">L’entreprise <strong>Appartements Fournelle</strong> est détenteur d’immeubles locatifs et est gestionnaire de ses propres logements dans la région de Bécancour. Du format d’appartement 4 ½, à la maison de ville de format 5 ½ sur 2 étages, nous aurons ce qu’il vous faut afin de vous sentir bien chez vous.</p> | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | +<p class="wp-block-paragraph">Notre nouveau développement locatif d’envergure commencera à la fin juillet sur la rue des Muguets, dans le secteur St-Angèle à Bécancour.</p> | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | +<p class="wp-block-paragraph">** La disponibilité de nos logements peut varier en fonction de la période de l’année.</p> | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | +<ul class="wp-block-social-links has-normal-icon-size is-style-logos-only is-layout-flex wp-block-social-links-is-layout-flex"><li class="wp-social-link wp-social-link-facebook wp-block-social-link"><a rel="noopener nofollow" target="_blank" href="https://www.facebook.com/profile.php?id=100082010837463" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li> | |
| 504 | + | |
| 505 | +<li class="wp-social-link wp-social-link-linkedin wp-block-social-link"><a rel="noopener nofollow" target="_blank" href="https://fr.linkedin.com/company/groupe-fournelle" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg><span class="wp-block-social-link-label screen-reader-text">LinkedIn</span></a></li></ul> | |
| 506 | +</div> | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | +<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"> <div class="map-appartements"> <div class="googlemap" data-name="Carte personnalisée" data-ui="false" data-bounds="false"><script>var info_markers = [{"titre":"Carr\u00e9 de la Tour","latitude":46.343923300000000153886503539979457855224609375,"longitude":-72.4851886000000007470589480362832546234130859375,"texte":"Pour information :<strong><a href='tel:8196020227'>819 602-0227<\/a> poste 2<\/strong>","img":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2023\/03\/carre-de-la-tour-ping.png","adresse":"","lien":"https:\/\/carredelatour.com\/"},{"titre":"Domaine de la Tour","latitude":46.3381490000000013651515473611652851104736328125,"longitude":-72.4840860000000049012669478543102741241455078125,"texte":"Pour information :<strong><a href='tel:8196020227'>819 602-0227<\/a> poste 2<\/strong>","img":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2021\/03\/marker_tour.svg","adresse":"","lien":""},{"titre":"Cl\u00e9ment Vincent","latitude":46.34829500000000024328983272425830364227294921875,"longitude":-72.4836049999999971760189509950578212738037109375,"texte":"Pour information :<strong><a href='tel:8196020227'>819 602-0227<\/a> poste 2<\/strong>","img":"https:\/\/www.groupefournelle.com\/wp-content\/uploads\/2021\/04\/marker_clement.svg","adresse":"","lien":""}]</script><div id="googlemap" style="height: 500px;" class="googlemap__canvas"></div></div> </div> | |
| 511 | + <style> | |
| 512 | + .map-appartements #googlemap { | |
| 513 | + margin-bottom: 0px; | |
| 514 | + } | |
| 515 | + </style> | |
| 516 | + | |
| 517 | +</div> | |
| 518 | +</div> | |
| 519 | + | |
| 520 | + | |
| 521 | + <div id="content"> | |
| 522 | + <div class="container"> | |
| 523 | + <div class="row"> | |
| 524 | + <div class="col-md-12"> | |
| 525 | + <h2 class="page__title h2" data-aos-delay="150" data-aos-duration="1500">À louer</h2> | |
| 526 | + </div> | |
| 527 | + </div> | |
| 528 | + </div> | |
| 529 | + | |
| 530 | + <div class="location-wrapper" style=""> | |
| 531 | + <!-- Wordpress LOOP --> | |
| 532 | + <div class="item alternate" data-aos="fade-right" data-aos-delay="250" data-aos-duration="1000"><div class="item--inner"><div class="img-wrapper"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAeAAAAHiAQAAAAAYZyIzAAAAAnRSTlMAAHaTzTgAAAAySURBVHja7cEBAQAAAIIg/69uSEABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8Gly2gABriALOQAAAABJRU5ErkJggg==" alt="" data-src="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="480" data-eio-rheight="482" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg.webp"><noscript><img decoding="async" src="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg" alt="" data-eio="l"></noscript><div class="swiper-container swiper-locations"><div class="swiper-wrapper"><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002904-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002904-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002904-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002904-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002905-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002905-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002905-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002905-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002906-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002906-groupe-fournelle.jpg" data-eio-rwidth="1920" data-eio-rheight="2576" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002906-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002906-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002907-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002907-groupe-fournelle.jpg" data-eio-rwidth="1920" data-eio-rheight="2576" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002907-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002907-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002908-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002908-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002908-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002908-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002413-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002413-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002413-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002413-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002414-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002414-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002414-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002414-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002415-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002415-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002415-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002415-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002416-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002416-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002416-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002416-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002417-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002417-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002417-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002417-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002418-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002418-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002418-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002418-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002419-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002419-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002419-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002419-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002420-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002420-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002420-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002420-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002421-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002421-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002421-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002421-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002422-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002422-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002422-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002422-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002423-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002423-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002423-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002423-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002424-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002424-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002424-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002424-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002425-groupe-fournelle.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002425-groupe-fournelle.jpg" data-eio-rwidth="3056" data-eio-rheight="4080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002425-groupe-fournelle.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/1000002425-groupe-fournelle.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg" data-eio-rwidth="480" data-eio-rheight="482" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8-plex-photos-et-croquis.pdf.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Cuisine.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Cuisine.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Cuisine.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Cuisine.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-a-manger.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-a-manger.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-a-manger.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-a-manger.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Cuisine-SaM.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Cuisine-SaM.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Cuisine-SaM.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Cuisine-SaM.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salon.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salon.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salon.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salon.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Salon.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Salon.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Salon.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/2e-Salon.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-de-bain.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-de-bain.jpg" data-eio-rwidth="3840" data-eio-rheight="2160" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-de-bain.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/RDC-Salle-de-bain.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-sous-sol-et-RDC_page-0001.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-sous-sol-et-RDC_page-0001.jpg" data-eio-rwidth="1275" data-eio-rheight="1650" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-sous-sol-et-RDC_page-0001.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-sous-sol-et-RDC_page-0001.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-3e-etage.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-3e-etage.jpg" data-eio-rwidth="2550" data-eio-rheight="3300" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-3e-etage.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-5-ET-DEMI-3e-etage.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-4-ET-DEMI-2ieme-etage.jpg" data-fancybox data-gall="Gallery1512" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-4-ET-DEMI-2ieme-etage.jpg" data-eio-rwidth="2550" data-eio-rheight="3300" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-4-ET-DEMI-2ieme-etage.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2025/04/8PLEX-_-Plans-appart-4-ET-DEMI-2ieme-etage.jpg.webp"></div></a></div></div></div><div class="nav-swiper location"> | |
| 533 | + <div class="swiper-button-prev"></div> | |
| 534 | + <div class="swiper-button-next"></div> | |
| 535 | + </div></div><div class="content"><a href="/domaine-de-lile"><img decoding="async" class="domaine-logo lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/domaine-ile.svg"><noscript><img decoding="async" class="domaine-logo" src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/domaine-ile.svg" data-eio="l"></noscript></a><a href="/domaine-de-lile"><h2>Appartement à louer 4½ et 5½ avec vue sur le fleuve</h2></a><p><strong>Immeuble neuf disponible à partir du 1<sup>er</sup> Mai 2026</strong>.<br /> | |
| 536 | +Possibilité de réserver votre unité !!!!!!<strong><br /> | |
| 537 | +</strong></p> | |
| 538 | +<p>2ᵉ et 3ᵉ étage avec vue sur le fleuve (non chauffé, non éclairé) STATIONNEMENT INCLUS</p> | |
| 539 | +<p><strong>PRIX à partir de 1300$ pour 5½</strong><br /> | |
| 540 | +2 × 5½ au sous-sol – 1300 $ | 2 × 5½ au RDC – 1525 $ | 2 × 4½ au 2<sup>e</sup> étage – 1400 $ | 2 × 5½ au 3<sup>e</sup> étage – 1525 $</p> | |
| 541 | +<p><strong>Caractéristiques et inclusions</strong></p> | |
| 542 | +<ul> | |
| 543 | +<li>Emplacement de choix à proximité de tous les services</li> | |
| 544 | +<li>Grande chambre</li> | |
| 545 | +<li>Belle luminosité</li> | |
| 546 | +<li>Îlot de cuisine</li> | |
| 547 | +<li>Thermopompe</li> | |
| 548 | +<li>Échangeur d’air</li> | |
| 549 | +<li>Grande terrasse avant</li> | |
| 550 | +<li>Porte patio</li> | |
| 551 | +<li>Stationnement inclus</li> | |
| 552 | +</ul> | |
| 553 | +<p>Immeuble sans fumée et sans animaux.<br /> | |
| 554 | +Enquête de crédit et assurance locataire obligatoire.</p> | |
| 555 | +</div></div></div><div class="item " data-aos="fade-left" data-aos-delay="250" data-aos-duration="1000"><div class="item--inner"><div class="img-wrapper"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAAQ4AQAAAADAqPzuAAAAAnRSTlMAAHaTzTgAAAETSURBVHja7cEBDQAAAMKg909tDwcUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADApwH45QAB/OGP/gAAAABJRU5ErkJggg==" alt="Carré de la Tour - Maisons de ville 5 1/2" data-src="https://www.groupefournelle.com/wp-content/uploads/2024/05/20240521_132631-scaled.jpg" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="2560" data-eio-rheight="1440" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/20240521_132631-scaled.jpg.webp"><noscript><img decoding="async" src="https://www.groupefournelle.com/wp-content/uploads/2024/05/20240521_132631-scaled.jpg" alt="Carré de la Tour - Maisons de ville 5 1/2" data-eio="l"></noscript><div class="swiper-container swiper-locations"><div class="swiper-wrapper"><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-8.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-8.jpg" data-eio-rwidth="1920" data-eio-rheight="2559" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-8.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-8.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-9-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-9-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-9-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-9-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-7-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-7-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-7-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-7-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-4-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-4-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-4-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-4-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-3.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-3.jpg" data-eio-rwidth="1920" data-eio-rheight="1079" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-3.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-3.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-2.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-2.jpg" data-eio-rwidth="1920" data-eio-rheight="1080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-2.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-2.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-5-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-5-scaled.jpg" data-eio-rwidth="1588" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-5-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-5-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-11-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-11-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-11-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-11-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-10-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-10-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-10-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-10-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-6-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-6-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-6-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-6-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-13-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-13-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-13-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-13-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-14.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-14.jpg" data-eio-rwidth="1920" data-eio-rheight="1080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-14.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-14.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-12-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-12-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-12-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-12-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-15-scaled.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-15-scaled.jpg" data-eio-rwidth="1440" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-15-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-15-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour.jpg" data-eio-rwidth="1920" data-eio-rheight="1080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-1.jpg" data-fancybox data-gall="Gallery1190" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-1.jpg" data-eio-rwidth="1920" data-eio-rheight="1080" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-1.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2024/05/carretour-1.jpg.webp"></div></a></div></div></div><div class="nav-swiper location"> | |
| 556 | + <div class="swiper-button-prev"></div> | |
| 557 | + <div class="swiper-button-next"></div> | |
| 558 | + </div></div><div class="content"><a href="https://carredelatour.com/"><img decoding="async" class="domaine-logo lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/uploads/2023/03/carre-de-la-tour.svg"><noscript><img decoding="async" class="domaine-logo" src="https://www.groupefournelle.com/wp-content/uploads/2023/03/carre-de-la-tour.svg" data-eio="l"></noscript></a><a href="https://carredelatour.com/"><h2>Maisons de ville 5 1/2 à louer à Bécancour</h2></a><p><strong>5 1/2 sur 2 étages</strong><br /> | |
| 559 | +Remise extérieure incluse</p> | |
| 560 | +<p>Pour information: <strong>819 602-0227 poste 4</strong></p> | |
| 561 | +</div></div></div><div class="item alternate" data-aos="fade-right" data-aos-delay="250" data-aos-duration="1000"><div class="item--inner"><div class="img-wrapper"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLAAAAMgAQMAAAAJLglBAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAIxJREFUGBntwTEBAAAAwiD7p14Hb2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnANfvAAGNwCEMAAAAAElFTkSuQmCC" alt="Grand condo à louer" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09669.jpg" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="1200" data-eio-rheight="800" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09669.jpg.webp"><noscript><img decoding="async" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09669.jpg" alt="Grand condo à louer" data-eio="l"></noscript><div class="swiper-container swiper-locations"><div class="swiper-wrapper"><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09705.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09705.jpg" data-eio-rwidth="1200" data-eio-rheight="800" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09705.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09705.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg" data-eio-rwidth="1200" data-eio-rheight="800" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09680.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09674.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09674.jpg" data-eio-rwidth="1200" data-eio-rheight="800" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09674.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/Pervenches-09674.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1257.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1257.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1257.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1257.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1258.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1258.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1258.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1258.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1264.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1264.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1264.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1264.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1263.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1263.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1263.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1263.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1265.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1265.jpg" data-eio-rwidth="450" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1265.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1265.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1267.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1267.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1267.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1267.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1269.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1269.jpg" data-eio-rwidth="800" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1269.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1269.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1270.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1270.jpg" data-eio-rwidth="450" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1270.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1270.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1262.jpg" data-fancybox data-gall="Gallery232" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1262.jpg" data-eio-rwidth="450" data-eio-rheight="600" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1262.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/IMG_1262.jpg.webp"></div></a></div></div></div><div class="nav-swiper location"> | |
| 562 | + <div class="swiper-button-prev"></div> | |
| 563 | + <div class="swiper-button-next"></div> | |
| 564 | + </div></div><div class="content"><a href="/domaine-de-la-tour"><img decoding="async" class="domaine-logo lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/domaine-tour-logo-couleur.svg"><noscript><img decoding="async" class="domaine-logo" src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/domaine-tour-logo-couleur.svg" data-eio="l"></noscript></a><a href="/domaine-de-la-tour"><h2>Grands condos locatifs 4½ à louer à Bécancour</h2></a><p>Garage intérieur inclus</p> | |
| 565 | +<p>Pour information :<strong><br /> | |
| 566 | +<a href="tel:8196020227">819 602-0227</a> poste 4<br /> | |
| 567 | +</strong></p> | |
| 568 | +<p> </p> | |
| 569 | +</div></div></div><div class="item " data-aos="fade-left" data-aos-delay="250" data-aos-duration="1000"><div class="item--inner"><div class="img-wrapper"><img decoding="async" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAFZAQMAAAB+HMOnAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAADBJREFUGBntwTEBAAAAwiD7p14ND2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3AtmbAABI0NbGwAAAABJRU5ErkJggg==" alt="Location Clement Vincent" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/location_clement_vincent.jpg" class="lazyload ewww_webp_lazy_load" data-eio-rwidth="600" data-eio-rheight="345" data-src-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/location_clement_vincent.jpg.webp"><noscript><img decoding="async" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/location_clement_vincent.jpg" alt="Location Clement Vincent" data-eio="l"></noscript><div class="swiper-container swiper-locations"><div class="swiper-wrapper"><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent007.jpg" data-fancybox data-gall="Gallery229" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent007.jpg" data-eio-rwidth="2000" data-eio-rheight="1500" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent007.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent007.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent003.jpg" data-fancybox data-gall="Gallery229" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent003.jpg" data-eio-rwidth="2000" data-eio-rheight="1500" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent003.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent003.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent004-scaled.jpg" data-fancybox data-gall="Gallery229" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent004-scaled.jpg" data-eio-rwidth="1920" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent004-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent004-scaled.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent006.jpg" data-fancybox data-gall="Gallery229" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent006.jpg" data-eio-rwidth="2000" data-eio-rheight="1500" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent006.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent006.jpg.webp"></div></a></div><div class="swiper-slide gallery__img_container"><a href="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent005-scaled.jpg" data-fancybox data-gall="Gallery229" class="venobox"><div class="gallery__img__locations gallery__img__bg lazyload" style=" " data-back="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent005-scaled.jpg" data-eio-rwidth="1920" data-eio-rheight="2560" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent005-scaled.jpg.webp" data-back-webp="https://www.groupefournelle.com/wp-content/uploads/2021/03/clement-vincent005-scaled.jpg.webp"></div></a></div></div></div><div class="nav-swiper location"> | |
| 570 | + <div class="swiper-button-prev"></div> | |
| 571 | + <div class="swiper-button-next"></div> | |
| 572 | + </div></div><div class="content"><a href="/domaine-clement-vincent"><img decoding="async" class="domaine-logo lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/logo-groupe-vincent.svg"><noscript><img decoding="async" class="domaine-logo" src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/domaines/logo-groupe-vincent.svg" data-eio="l"></noscript></a><a href="/domaine-clement-vincent"><h2>Grands condos locatifs 4½ à louer à Bécancour</h2></a><p>Pour information :<strong><br /> | |
| 573 | +<a href="tel:8196020227">819 602-0227</a> poste 4<br /> | |
| 574 | +</strong></p> | |
| 575 | +</div></div></div> </div> | |
| 576 | + <style> | |
| 577 | + .location-wrapper .swiper-container { | |
| 578 | + margin-top: 20px; | |
| 579 | + } | |
| 580 | + .location-wrapper .item--inner { | |
| 581 | + display: flex; | |
| 582 | + flex-direction: row-reverse; | |
| 583 | + align-items: flex-start; | |
| 584 | + max-width: 1420px; | |
| 585 | + margin: 0 auto; | |
| 586 | + } | |
| 587 | + </style> | |
| 588 | + </div> | |
| 589 | + </div> | |
| 590 | + | |
| 591 | + <!-- FIN Wordpress LOOP --> | |
| 592 | + </div> | |
| 593 | + </div> <!-- End container + warp --> | |
| 594 | +</div> <!-- End content --> | |
| 595 | + | |
| 596 | + | |
| 597 | + <!-- DÉBUT FOOTER --> | |
| 598 | + <div id="footer" class="container"> | |
| 599 | + <div class="row widgets flex-column-reverse flex-md-row"> | |
| 600 | + <div class="col-xxl-3 col-md-4"> | |
| 601 | + <div class="infos"> | |
| 602 | + <div class="widget widget_media_image"><img width="377" height="123" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXkAAAB7AQMAAACrcmLBAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAABxJREFUGBntwTEBAAAAwiD7p14KP2AAAAAAAMBTF4sAAScBbnEAAAAASUVORK5CYII=" class="image wp-image-35 attachment-medium size-medium lazyload" alt="Logo Groupe Fournelle" style="max-width: 100%; height: auto;" decoding="async" data-src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" data-eio-rwidth="377" data-eio-rheight="123" /><noscript><img width="377" height="123" src="https://www.groupefournelle.com/wp-content/uploads/2021/03/logo-groupe-fournelle.svg" class="image wp-image-35 attachment-medium size-medium" alt="Logo Groupe Fournelle" style="max-width: 100%; height: auto;" decoding="async" data-eio="l" /></noscript></div><div class="widget widget_text"> <div class="textwidget"><p>7802, rue Maurice Guillemette<br /> | |
| 603 | +Bécancour (Québec)<br /> | |
| 604 | +G9H 4Y7</p> | |
| 605 | +</div> | |
| 606 | + </div><div class="widget widget_text"> <div class="textwidget"><p>Téléphone : <a href="tel:8196020227"><strong>819 602-0227</strong></a><br /> | |
| 607 | +Courriel : <strong><a href="mailto:info@groupefournelle.com">info@groupefournelle.com</a></strong></p> | |
| 608 | +</div> | |
| 609 | + </div><div class="widget_text widget widget_custom_html"><div class="textwidget custom-html-widget"><a href="https://www.linkedin.com/company/groupe-fournelle/mycompany/?viewAsMember=true" target="_blank"><i class="fab fa-linkedin-in"></i></a> | |
| 610 | +<a href="https://www.facebook.com/profile.php?id=100082010837463" target="_blank"><i class="fab fa-facebook"></i></a></div></div> </div> | |
| 611 | + | |
| 612 | + </div> | |
| 613 | + <div class="col-xxl-9 col-md-8"> | |
| 614 | + <div class="contact"> | |
| 615 | + <h2 data-aos-delay="150" data-aos-duration="1500">Demande d'information</h2> | |
| 616 | + | |
| 617 | +<div class="wpcf7 no-js" id="wpcf7-f33-o1" lang="fr-CA" dir="ltr" data-wpcf7-id="33"> | |
| 618 | +<div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> | |
| 619 | +<form action="/appartements-fournelle/#wpcf7-f33-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init"> | |
| 620 | +<fieldset class="hidden-fields-container"><input type="hidden" name="_wpcf7" value="33" /><input type="hidden" name="_wpcf7_version" value="6.1.6" /><input type="hidden" name="_wpcf7_locale" value="fr_CA" /><input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f33-o1" /><input type="hidden" name="_wpcf7_container_post" value="0" /><input type="hidden" name="_wpcf7_posted_data_hash" value="" /><input type="hidden" name="_wpcf7_recaptcha_response" value="" /> | |
| 621 | +</fieldset> | |
| 622 | +<div class="container"> | |
| 623 | + <div class="row"> | |
| 624 | + <div class="col-md-6"> | |
| 625 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="your-name"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Prénom" value="" type="text" name="your-name" /></span> </label> | |
| 626 | + </p> | |
| 627 | + </div> | |
| 628 | + <div class="col-md-6"> | |
| 629 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="your-name2"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Nom" value="" type="text" name="your-name2" /></span> </label> | |
| 630 | + </p> | |
| 631 | + </div> | |
| 632 | + <div class="col-md-6"> | |
| 633 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="telephone"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel" aria-required="true" aria-invalid="false" placeholder="Téléphone" value="" type="tel" name="telephone" /></span> </label> | |
| 634 | + </p> | |
| 635 | + </div> | |
| 636 | + <div class="col-md-6"> | |
| 637 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="your-email"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email" aria-required="true" aria-invalid="false" placeholder="Courriel" value="" type="email" name="your-email" /></span> </label> | |
| 638 | + </p> | |
| 639 | + </div> | |
| 640 | + <div class="col-md-12"> | |
| 641 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="your-subject"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false" placeholder="Sujet" value="" type="text" name="your-subject" /></span> </label> | |
| 642 | + </p> | |
| 643 | + </div> | |
| 644 | + <div class="col-md-12"> | |
| 645 | + <p><label> <span class="wpcf7-form-control-wrap" data-name="your-message"><textarea cols="40" rows="4" maxlength="2000" class="wpcf7-form-control wpcf7-textarea" aria-invalid="false" placeholder="Message" name="your-message"></textarea></span> </label> | |
| 646 | + </p> | |
| 647 | + </div> | |
| 648 | + <div class="col-md-12 submit"> | |
| 649 | + <p><input class="wpcf7-form-control wpcf7-submit has-spinner" type="submit" value="Envoyer la demande" /> | |
| 650 | + </p> | |
| 651 | + </div> | |
| 652 | + </div> | |
| 653 | +</div><div class="wpcf7-response-output" aria-hidden="true"></div> | |
| 654 | +</form> | |
| 655 | +</div> | |
| 656 | + </div> | |
| 657 | + | |
| 658 | + </div> | |
| 659 | + </div> | |
| 660 | + <div class="row copyright"> | |
| 661 | + <div class="col-md-12"> | |
| 662 | + <p>© 2026 <a href="https://www.groupefournelle.com">Groupe Fournelle</a>, tous droits réservés</p> | |
| 663 | + <p>DESIGN + web + hébergement <a href="https://www.adncomm.com/" target="_blank"><img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="" data-src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/Logo-ADN.svg" decoding="async" class="lazyload"><noscript><img src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/img/Logo-ADN.svg" alt="" data-eio="l"></noscript></a></p> | |
| 664 | + </div> | |
| 665 | + </div> | |
| 666 | + </div> | |
| 667 | + | |
| 668 | + <!-- END FOOTER --> | |
| 669 | + <script type="speculationrules"> | |
| 670 | +{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/groupefournelle/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} | |
| 671 | +</script> | |
| 672 | +<style> | |
| 673 | +.grecaptcha-badge { | |
| 674 | + position: absolute; | |
| 675 | + opacity: 0; | |
| 676 | + pointer-events: none; | |
| 677 | +} | |
| 678 | + | |
| 679 | +@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); | |
| 680 | + | |
| 681 | +.elementor-form p.form-custom-phrase-adn { | |
| 682 | + color: #767676 !important; | |
| 683 | + font-family: 'Poppins', sans-serif !important; | |
| 684 | + font-weight: 400 !important; | |
| 685 | + display: block; | |
| 686 | + font-size: 12px !important; | |
| 687 | + margin-top: 7px; | |
| 688 | + line-height: 1.2; | |
| 689 | + text-align: left !important; | |
| 690 | + width: 100%; | |
| 691 | +} | |
| 692 | + | |
| 693 | +.elementor-form p.form-custom-phrase-adn a { | |
| 694 | + color: #546E92 !important; | |
| 695 | + text-decoration: underline !important; | |
| 696 | +} | |
| 697 | + | |
| 698 | +@media (max-width: 767px) { | |
| 699 | + .elementor-form p.form-custom-phrase-adn { | |
| 700 | + font-size: calc(12px - 2px) !important; | |
| 701 | + } | |
| 702 | +} | |
| 703 | +</style> | |
| 704 | + <style> | |
| 705 | + .e-ai-layout-button.elementor-add-section-area-button { | |
| 706 | + display: none; | |
| 707 | + } | |
| 708 | + </style> | |
| 709 | + <style> | |
| 710 | + .elementor-copilot--idle { | |
| 711 | + display: none; | |
| 712 | + } | |
| 713 | + </style> | |
| 714 | + <style> | |
| 715 | + .elementor-add-section-area-button.elementor-add-ha-button { | |
| 716 | + display: none; | |
| 717 | + } | |
| 718 | + </style> | |
| 719 | + <style> | |
| 720 | + #poly-9319, #poly-1677, #poly-7301, #poly-245, #poly-602, #poly-8692, #poly-3287, #poly-609, #poly-6880, #poly-3844, #poly-9308, #poly-4759, #poly-4333, #poly-9048, #poly-4588, #poly-4204, #poly-2273, #poly-9088, #poly-5853, #poly-9641, #poly-8945, #poly-4512, #poly-5113, #poly-793, #poly-7804, #poly-6173, #poly-8443, #poly-3387, #poly-1979, #poly-9728, #poly-9499, #poly-2154, #poly-7254, #poly-5479, #poly-2682, #poly-7247, #poly-1537, #poly-414, #poly-5090, #poly-4689, #poly-5320, #poly-6203, #poly-1497, #poly-7903, #poly-5048, #poly-3282, #poly-5661, #poly-6557, #poly-3494, #poly-7483, #poly-856, #poly-7252, #poly-4165, #poly-5257, #poly-9252, #poly-2745, #poly-7619, #poly-9654, #poly-7987, #poly-1597, #poly-7060, #poly-5602, #poly-2928, #poly-6435, #poly-608 { | |
| 721 | + display:none; | |
| 722 | + } | |
| 723 | +</style> | |
| 724 | + | |
| 725 | +<script> | |
| 726 | +document.addEventListener("DOMContentLoaded", function() { | |
| 727 | + // Utiliser setTimeout pour retarder l'exécution | |
| 728 | + setTimeout(function() { | |
| 729 | + var tooltips = document.querySelectorAll('.imp-tooltip'); | |
| 730 | + | |
| 731 | + tooltips.forEach(function(tooltip) { | |
| 732 | + if (tooltip.querySelector('h2')) { | |
| 733 | + tooltip.style.display = 'block'; | |
| 734 | + } else { | |
| 735 | + tooltip.style.display = 'none'; | |
| 736 | + } | |
| 737 | + }); | |
| 738 | + }, 1000); // Délai de 1000 millisecondes (1 seconde) | |
| 739 | +}); | |
| 740 | +</script> | |
| 741 | + | |
| 742 | +<script id="eio-lazy-load-js-before"> | |
| 743 | +var eio_lazy_vars = {"bg_min_dpr":1.100000000000000088817841970012523233890533447265625,"exactdn_domain":"","safe_domains":["www.groupefournelle.com","groupefournelle.com"],"skip_autoscale":0,"threshold":0,"use_dpr":1}; | |
| 744 | +//# sourceURL=eio-lazy-load-js-before | |
| 745 | +</script> | |
| 746 | +<script async data-wp-strategy="async" id="eio-lazy-load-js" src="https://www.groupefournelle.com/wp-content/plugins/ewww-image-optimizer/includes/lazysizes.min.js?ver=875"></script> | |
| 747 | +<script id="adn-ga-footer-scripts-js-after"> | |
| 748 | +const tags = document.getElementsByTagName('a');for(let i=0; i<tags.length; i++) {const tag = tags[i];tag.addEventListener('click', function(e) {const href = tag.href;if(href.indexOf(window.location.origin) === -1) {const is_tel = href.indexOf('tel:') === 0;let subject = '';if(is_tel) {e.preventDefault();subject = 'Telephone';} else if (href.indexOf('mailto:') === 0) {subject = 'Courriel';} else {subject = 'Liens externes';}let label = tag.innerHTML.replace(/(<([^>]+)>)/ig,'');label = label || tag.getAttribute('title');if(label) { label = label.replace(' ', ' '); }ga('send', 'event', subject, href, label);if(is_tel) {window.location = href;}}});};document.addEventListener('wpcf7mailsent', function(event) {__ga('send', 'event', 'Formulaires recus', 'Demande information', 'fr');}, false ); | |
| 749 | +//# sourceURL=adn-ga-footer-scripts-js-after | |
| 750 | +</script> | |
| 751 | +<script id="wp-hooks-js" src="https://www.groupefournelle.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> | |
| 752 | +<script id="wp-i18n-js" src="https://www.groupefournelle.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> | |
| 753 | +<script id="wp-i18n-js-after"> | |
| 754 | +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); | |
| 755 | +//# sourceURL=wp-i18n-js-after | |
| 756 | +</script> | |
| 757 | +<script id="swv-js" src="https://www.groupefournelle.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> | |
| 758 | +<script id="contact-form-7-js-translations"> | |
| 759 | +( function( domain, translations ) { | |
| 760 | + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; | |
| 761 | + localeData[""].domain = domain; | |
| 762 | + wp.i18n.setLocaleData( localeData, domain ); | |
| 763 | +} )( "contact-form-7", {"translation-revision-date":"2026-07-27 15:37:27+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"This contact form is placed in the wrong place.":["Ce formulaire de contact est plac\u00e9 dans un mauvais endroit."],"Error:":["Erreur\u00a0:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); | |
| 764 | +//# sourceURL=contact-form-7-js-translations | |
| 765 | +</script> | |
| 766 | +<script id="contact-form-7-js-before"> | |
| 767 | +var wpcf7 = { | |
| 768 | + "api": { | |
| 769 | + "root": "https:\/\/www.groupefournelle.com\/wp-json\/", | |
| 770 | + "namespace": "contact-form-7\/v1" | |
| 771 | + }, | |
| 772 | + "cached": 1 | |
| 773 | +}; | |
| 774 | +//# sourceURL=contact-form-7-js-before | |
| 775 | +</script> | |
| 776 | +<script id="contact-form-7-js" src="https://www.groupefournelle.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> | |
| 777 | +<script id="venobox-js-js" src="https://www.groupefournelle.com/wp-content/plugins/venobox-lightbox/js/venobox.min.js?ver=1.9.3"></script> | |
| 778 | +<script id="venobox-init-js-extra"> | |
| 779 | +var venoboxVars = {"disabled":"","ng_numeratio":"1","ng_numeratio_position":"bottom","ng_infinigall":"","ng_all_images":"","ng_title_select":"4","ng_title_position":"top","ng_all_videos":"","ng_border_width":"px","ng_border_color":"rgba(255,255,255,1)","ng_autoplay":"","ng_overlay":"rgba(0,0,0,0.85)","ng_nav_elements":"#fff","ng_nav_elements_bg":"rgba(0,0,0,0.85)","ng_preloader":"none","ng_vb_legacy_markup":"","ng_vb_woocommerce":"","ng_bb_lightbox":"","ng_vb_facetwp":"","ng_vb_searchfp":"","ng_arrows":"","ng_vb_share":[]}; | |
| 780 | +//# sourceURL=venobox-init-js-extra | |
| 781 | +</script> | |
| 782 | +<script id="venobox-init-js" src="https://www.groupefournelle.com/wp-content/plugins/venobox-lightbox/js/venobox-init.js?ver=2.0.8"></script> | |
| 783 | +<script id="bootstrap-js-js" src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/bootstrap/bootstrap.min.js?ver=1.0"></script> | |
| 784 | +<script id="child_custom_scripts-js" src="https://www.groupefournelle.com/wp-content/themes/groupefournelle/js/custom.js?ver=1.0"></script> | |
| 785 | +<script id="swiper-scripts-js" src="https://unpkg.com/swiper/swiper-bundle.min.js?ver=1.0"></script> | |
| 786 | +<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LeE6RobAAAAAARCFLz4A9JYJJQxkmdzMv_CtnwJ&ver=3.0"></script> | |
| 787 | +<script id="wp-polyfill-js" src="https://www.groupefournelle.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> | |
| 788 | +<script id="wpcf7-recaptcha-js-before"> | |
| 789 | +var wpcf7_recaptcha = { | |
| 790 | + "sitekey": "6LeE6RobAAAAAARCFLz4A9JYJJQxkmdzMv_CtnwJ", | |
| 791 | + "actions": { | |
| 792 | + "homepage": "homepage", | |
| 793 | + "contactform": "contactform" | |
| 794 | + } | |
| 795 | +}; | |
| 796 | +//# sourceURL=wpcf7-recaptcha-js-before | |
| 797 | +</script> | |
| 798 | +<script id="wpcf7-recaptcha-js" src="https://www.groupefournelle.com/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> | |
| 799 | +<script id="wp-emoji-settings" type="application/json"> | |
| 800 | +{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.groupefournelle.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0.3"}} | |
| 801 | +</script> | |
| 802 | +<script type="module"> | |
| 803 | +/*! This file is auto-generated */ | |
| 804 | +var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))}); | |
| 805 | +//# sourceURL=https://www.groupefournelle.com/wp-includes/js/wp-emoji-loader.min.js | |
| 806 | +</script> | |
| 807 | + | |
| 808 | + </body> | |
| 809 | +</html> | |
| 810 | + | |
| 811 | +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-08 23:07:59 --> | |
| \ No newline at end of file | ||
added
tests/fixtures/fournelle/expected.json
+61 −0
@@ -0,0 +1,61 @@ | ||
| 1 | +{ | |
| 2 | + "count": 4, | |
| 3 | + "listings": [ | |
| 4 | + { | |
| 5 | + "uid": "fournelle:domaine-de-lile-412-2-e-etage", | |
| 6 | + "url": "https://www.groupefournelle.com/appartements-fournelle/", | |
| 7 | + "title": "4½ au 2 e étage — Appartement à louer 4½ et 5½ avec vue sur le fleuve", | |
| 8 | + "address": "", | |
| 9 | + "sector": "", | |
| 10 | + "city": "Bécancour", | |
| 11 | + "unit_type": "4½", | |
| 12 | + "price": 1400.0, | |
| 13 | + "availability": "disponible à partir du 1 er Mai 2026", | |
| 14 | + "area_sqft": null, | |
| 15 | + "n_images": 15, | |
| 16 | + "n_amenities": 9 | |
| 17 | + }, | |
| 18 | + { | |
| 19 | + "uid": "fournelle:domaine-de-lile-512-3-e-etage", | |
| 20 | + "url": "https://www.groupefournelle.com/appartements-fournelle/", | |
| 21 | + "title": "5½ au 3 e étage — Appartement à louer 4½ et 5½ avec vue sur le fleuve", | |
| 22 | + "address": "", | |
| 23 | + "sector": "", | |
| 24 | + "city": "Bécancour", | |
| 25 | + "unit_type": "5½", | |
| 26 | + "price": 1525.0, | |
| 27 | + "availability": "disponible à partir du 1 er Mai 2026", | |
| 28 | + "area_sqft": null, | |
| 29 | + "n_images": 15, | |
| 30 | + "n_amenities": 9 | |
| 31 | + }, | |
| 32 | + { | |
| 33 | + "uid": "fournelle:domaine-de-lile-512-rdc", | |
| 34 | + "url": "https://www.groupefournelle.com/appartements-fournelle/", | |
| 35 | + "title": "5½ au RDC — Appartement à louer 4½ et 5½ avec vue sur le fleuve", | |
| 36 | + "address": "", | |
| 37 | + "sector": "", | |
| 38 | + "city": "Bécancour", | |
| 39 | + "unit_type": "5½", | |
| 40 | + "price": 1525.0, | |
| 41 | + "availability": "disponible à partir du 1 er Mai 2026", | |
| 42 | + "area_sqft": null, | |
| 43 | + "n_images": 15, | |
| 44 | + "n_amenities": 9 | |
| 45 | + }, | |
| 46 | + { | |
| 47 | + "uid": "fournelle:domaine-de-lile-512-sous-sol", | |
| 48 | + "url": "https://www.groupefournelle.com/appartements-fournelle/", | |
| 49 | + "title": "5½ au sous-sol — Appartement à louer 4½ et 5½ avec vue sur le fleuve", | |
| 50 | + "address": "", | |
| 51 | + "sector": "", | |
| 52 | + "city": "Bécancour", | |
| 53 | + "unit_type": "5½", | |
| 54 | + "price": 1300.0, | |
| 55 | + "availability": "disponible à partir du 1 er Mai 2026", | |
| 56 | + "area_sqft": null, | |
| 57 | + "n_images": 15, | |
| 58 | + "n_amenities": 9 | |
| 59 | + } | |
| 60 | + ] | |
| 61 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/fournelle/index.json
+9 −0
@@ -0,0 +1,9 @@ | ||
| 1 | +{ | |
| 2 | + "3201a37934ca2abf2fad": { | |
| 3 | + "method": "GET", | |
| 4 | + "url": "https://www.groupefournelle.com/appartements-fournelle/", | |
| 5 | + "status": 200, | |
| 6 | + "content_type": "text/html; charset=UTF-8", | |
| 7 | + "file": "3201a37934ca2abf2fad.html" | |
| 8 | + } | |
| 9 | +} | |
| \ No newline at end of file | ||
added
tests/fixtures/habitations_sf/79bc8d812d6cdc35fec4.html
+2641 −0
@@ -0,0 +1,2641 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + | |
| 5 | + <meta charset='utf-8'> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" id="wixDesktopViewport" /> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 8 | + <meta name="generator" content="Wix.com Website Builder"/> | |
| 9 | + | |
| 10 | + <link rel="icon" sizes="192x192" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 11 | + <link rel="shortcut icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 12 | + <link rel="apple-touch-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 13 | + | |
| 14 | + <!-- Safari Pinned Tab Icon --> | |
| 15 | + <!-- <link rel="mask-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg"> --> | |
| 16 | + | |
| 17 | + <!-- Segmenter Polyfill --> | |
| 18 | + <script> | |
| 19 | + if (!window.Intl || !window.Intl.Segmenter) { | |
| 20 | + (function() { | |
| 21 | + var script = document.createElement('script'); | |
| 22 | + script.src = 'https://static.parastorage.com/unpkg/@formatjs/intl-segmenter@11.7.10/polyfill.iife.js'; | |
| 23 | + document.head.appendChild(script); | |
| 24 | + })(); | |
| 25 | + } | |
| 26 | + </script> | |
| 27 | + | |
| 28 | + <!-- Legacy Polyfills --> | |
| 29 | + <script nomodule="" src="https://static.parastorage.com/unpkg/core-js-bundle@3.2.1/minified.js"></script> | |
| 30 | + <script nomodule="" src="https://static.parastorage.com/unpkg/focus-within-polyfill@5.0.9/dist/focus-within-polyfill.js"></script> | |
| 31 | + | |
| 32 | + <!-- Performance API Polyfills --> | |
| 33 | + <script> | |
| 34 | + (function () { | |
| 35 | + var noop = function noop() {}; | |
| 36 | + if ("performance" in window === false) { | |
| 37 | + window.performance = {}; | |
| 38 | + } | |
| 39 | + window.performance.mark = performance.mark || noop; | |
| 40 | + window.performance.measure = performance.measure || noop; | |
| 41 | + if ("now" in window.performance === false) { | |
| 42 | + var nowOffset = Date.now(); | |
| 43 | + if (performance.timing && performance.timing.navigationStart) { | |
| 44 | + nowOffset = performance.timing.navigationStart; | |
| 45 | + } | |
| 46 | + window.performance.now = function now() { | |
| 47 | + return Date.now() - nowOffset; | |
| 48 | + }; | |
| 49 | + } | |
| 50 | + })(); | |
| 51 | + </script> | |
| 52 | + | |
| 53 | + <!-- Essential Viewer Model --> | |
| 54 | + <script type="application/json" id="wix-essential-viewer-model">{"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"Rollout","code":1},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"siteFeaturesConfigs":{"sessionManager":{"isRunningInDifferentSiteContext":false}},"language":{"userLanguage":"fr"},"siteAssets":{"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"site":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isSEO":false},"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":true},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"interactionSampleRatio":0.01,"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","experiments":{"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true}}</script> | |
| 55 | + <script>window.viewerModel = JSON.parse(document.getElementById('wix-essential-viewer-model').textContent)</script> | |
| 56 | + | |
| 57 | + <!-- Globals Definitions --> | |
| 58 | + <script> | |
| 59 | + (function () { | |
| 60 | + var now = Date.now() | |
| 61 | + var activationStart = 0 | |
| 62 | + try { | |
| 63 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 64 | + if (navEntry && navEntry.activationStart > 0) { | |
| 65 | + activationStart = navEntry.activationStart; | |
| 66 | + } | |
| 67 | + } catch (e) {} | |
| 68 | + window.initialTimestamps = { | |
| 69 | + initialTimestamp: now, | |
| 70 | + initialRequestTimestamp: Math.round(performance.timeOrigin ? performance.timeOrigin + activationStart : now - performance.now() + activationStart) | |
| 71 | + } | |
| 72 | + | |
| 73 | + window.thunderboltTag = "QA_READY" | |
| 74 | + window.thunderboltVersion = "1.17732.0" | |
| 75 | + })(); | |
| 76 | + </script> | |
| 77 | + | |
| 78 | + <script> | |
| 79 | + window.commonConfig = viewerModel.commonConfig | |
| 80 | + </script> | |
| 81 | + | |
| 82 | + | |
| 83 | + <!-- BEGIN handleAccessTokens bundle --> | |
| 84 | + | |
| 85 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js">(()=>{"use strict";let e,t,r,o;var n={},i={};function l(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return n[e](r,r.exports,l),r.exports}function a(e){let{context:t,property:r,value:o,enumerable:n=!0}=e,i=e.get,l=e.set;if(!r||void 0===o&&!i&&!l)return Error("property and value are required");let a=t||globalThis,s=a?.[r],u={};if(void 0!==o)u.value=o;else{if(i){let e=c(i);e&&(u.get=e)}if(l){let e=c(l);e&&(u.set=e)}}let p={...u,enumerable:n||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(a,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function c(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}l.rv=()=>"1.6.8",l.ruid="bundler=rspack@1.6.8";try{a({property:"strictDefine",value:a})}catch{}try{a({property:"defineStrictObject",value:function e(t){let{context:r,property:o,propertiesToExclude:n=[],skipPrototype:i=!1,hardenPrototypePropertiesToExclude:l=[]}=t;if(!o)return Error("property is required");let c=(r||globalThis)[o],p={},f=u(r,o);c&&("object"==typeof c||"function"==typeof c)&&Reflect.ownKeys(c).forEach(e=>{if(!n.includes(e)&&!s.includes(e)){let t=u(c,e);if(t&&(t.writable||t.configurable)){let{value:r,get:o,set:n,enumerable:i=!1}=t,l={};void 0!==r?l.value=r:o?l.get=o:n&&(l.set=n);try{let t=a({context:c,property:e,...l,enumerable:i});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:c,originalProperties:p};if(!i&&c?.prototype!==void 0){let t=e({context:c,property:"prototype",propertiesToExclude:l,skipPrototype:!0});t instanceof Error||(d.originalPrototype=t?.originalObject,d.originalPrototypeProperties=t?.originalProperties)}return a({context:r,property:o,value:c,enumerable:f?.enumerable}),d}})}catch{}try{a({property:"defineStrictMethod",value:function(e,t){let r=(t||globalThis)[e],o=u(t||globalThis,e);return r&&o&&(o.writable||o.configurable)?(Object.freeze(r),a({context:globalThis,property:e,value:r})):r}})}catch{}var s=["toString","toLocaleString","valueOf","constructor","prototype"];function u(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function p(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function f(e,t){let r="";if("string"==typeof e)r=e.split("=")[0]?.trim()||"";else{if(!e||"string"!=typeof e.name)return!1;r=e.name}return t.has(p(r)||"")}function d(e,t){return("string"==typeof e?e.split(";").map(e=>e.trim()).filter(e=>e.length>0):e||[]).filter(e=>!f(e,t))}var y=null;function g(){return null===y&&(y=typeof Document>"u"?void 0:Object.getOwnPropertyDescriptor(Document.prototype,"cookie")),y}let b=(e,t)=>{try{let r=t?t.get.call(document):document.cookie;return r.split(";").map(e=>e.trim()).filter(t=>t?.startsWith(e))[0]?.split("=")[1]}catch(e){return""}},h=(e="",t="",r="/")=>`${e}=; ${t?`domain=${t};`:""} max-age=0; path=${r}; expires=Thu, 01 Jan 1970 00:00:01 GMT`;function m(e,t){try{return sessionStorage[e]("reload",t||"")}catch(e){console.error("ATS: Error calling sessionStorage:",e)}}var v=["true","b","c","new","enabled"];let w=[],S=(e,t)=>{let r;return w.includes(t)||!0===(r=e[t])||"string"==typeof r&&v.includes(r.toLowerCase())},T="client-session-bind",k="sec-fetch-unsupported",{experiments:x}=window.viewerModel,{cookie:E}=(e=new Set([T,"client-binding",k,"svSession","smSession","server-session-bind","wixSession2","wixSession3"].map(e=>e.toLowerCase())),a({context:document,property:"cookie",set:{func:t=>{var r,o;let n,i;return r=document,o=void 0,n=g(),i=p(t.split(";")[0]||"")||"",void([...e].every(e=>!i.startsWith(e.toLowerCase()))&&n?.set?n.set.call(r,t):o&&console.warn(o))}},get:{func:()=>(function(e,t){let r=g();if(!r?.get)throw Error("Cookie descriptor or getter not available");return d(r.get.call(e),t).join("; ")})(document,e)},enumerable:!0}),{cookieStore:function(e,t){if(!globalThis?.cookieStore)return;let r=globalThis.cookieStore.get.bind(globalThis.cookieStore),o=globalThis.cookieStore.getAll.bind(globalThis.cookieStore),n=globalThis.cookieStore.set.bind(globalThis.cookieStore),i=globalThis.cookieStore.delete.bind(globalThis.cookieStore);return a({context:globalThis.CookieStore.prototype,property:"get",value:async function(t){return f(("string"==typeof t?t:t.name)||"",e)?null:r.call(this,t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"getAll",value:async function(){let t=await o.apply(this,Array.from(arguments));return d(t,e)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"set",value:async function(){let r=Array.from(arguments);if(!f(1===r.length?r[0].name:r[0],e))return n.apply(this,r);t&&console.warn(t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"delete",value:async function(){let t=Array.from(arguments);if(!f(1===t.length?t[0].name:t[0],e))return i.apply(this,t)},enumerable:!0}),a({context:globalThis.cookieStore,property:"prototype",value:globalThis.CookieStore.prototype,enumerable:!1}),a({context:globalThis,property:"cookieStore",value:globalThis.cookieStore,enumerable:!0}),{get:r,getAll:o,set:n,delete:i}}(e,void 0),cookie:g()}),P="tbReady",C="security_overrideGlobals",{experiments:D,siteFeaturesConfigs:M,accessTokensUrl:O}=window.viewerModel,$={},j=(t=b(T,E),S(x,"specs.thunderbolt.browserCacheReload")&&(b(k,E)||t?m("removeItem"):function(){if("undefined"!=typeof window){let e=performance.getEntriesByType("navigation")[0];return"back_forward"===(e?.type||"")}return!1}()&&function(){let{counter:e}=function(){let e=m("getItem");if(e){let[t,r]=e.split("-"),o=r?parseInt(r,10):0;if(o>=3){let e=t?Number(t):0;if(Date.now()-e>6e4)return{counter:0}}return{counter:o}}return{counter:0}}();e<3?(function(e=1){m("setItem",`${Date.now()}-${e}`)}(e+1),window.location.reload()):console.error("ATS: Max reload attempts reached")}()),r=h(T),o=h(T,location.hostname),E.set.call(document,r),E.set.call(document,o),t);j&&($["client-binding"]=j);let A=fetch;addEventListener(P,function e(t){let{logger:r}=t.detail;try{window.tb.init({fetch:A,fetchHeaders:$})}catch(t){let e=Error("TB003");r.meter(`${C}_${e.message}`,{paramsOverrides:{errorType:C,eventString:e.message}}),window?.viewerModel?.mode.debug&&console.error(t)}finally{removeEventListener(P,e)}}),S(D,"specs.thunderbolt.hardenFetchAndXHR")||(window.fetchDynamicModel=()=>M.sessionManager.isRunningInDifferentSiteContext?Promise.resolve({}):fetch((()=>{try{let e="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,t=globalThis?.parent!==globalThis,r=new URL(O,location.href);return(t||e)&&(r.searchParams.set("ifr",String(t)),r.searchParams.set("worker",String(e))),r.href}catch{return O}})(),{credentials:"same-origin",headers:$}).then(function(e){if(!e.ok)throw Error(`[${e.status}]${e.statusText}`);return e.json()}),window.dynamicModelPromise=window.fetchDynamicModel())})(); | |
| 86 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js.map</script> | |
| 87 | + | |
| 88 | +<!-- END handleAccessTokens bundle --> | |
| 89 | + | |
| 90 | +<!-- BEGIN overrideGlobals bundle --> | |
| 91 | + | |
| 92 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js">(()=>{"use strict";var e={},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}function o(e){let{context:t,property:r,value:o,enumerable:i=!0}=e,c=e.get,a=e.set;if(!r||void 0===o&&!c&&!a)return Error("property and value are required");let l=t||globalThis,s=l?.[r],u={};if(void 0!==o)u.value=o;else{if(c){let e=n(c);e&&(u.get=e)}if(a){let e=n(a);e&&(u.set=e)}}let p={...u,enumerable:i||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(l,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function n(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}r.rv=()=>"1.6.8",r.ruid="bundler=rspack@1.6.8";try{o({property:"strictDefine",value:o})}catch{}try{o({property:"defineStrictObject",value:c})}catch{}try{o({property:"defineStrictMethod",value:a})}catch{}var i=["toString","toLocaleString","valueOf","constructor","prototype"];function c(e){let{context:t,property:r,propertiesToExclude:n=[],skipPrototype:a=!1,hardenPrototypePropertiesToExclude:s=[]}=e;if(!r)return Error("property is required");let u=(t||globalThis)[r],p={},f=l(t,r);u&&("object"==typeof u||"function"==typeof u)&&Reflect.ownKeys(u).forEach(e=>{if(!n.includes(e)&&!i.includes(e)){let t=l(u,e);if(t&&(t.writable||t.configurable)){let{value:r,get:n,set:i,enumerable:c=!1}=t,a={};void 0!==r?a.value=r:n?a.get=n:i&&(a.set=i);try{let t=o({context:u,property:e,...a,enumerable:c});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:u,originalProperties:p};if(!a&&u?.prototype!==void 0){let e=c({context:u,property:"prototype",propertiesToExclude:s,skipPrototype:!0});e instanceof Error||(d.originalPrototype=e?.originalObject,d.originalPrototypeProperties=e?.originalProperties)}return o({context:t,property:r,value:u,enumerable:f?.enumerable}),d}function a(e,t){let r=(t||globalThis)[e],n=l(t||globalThis,e);return r&&n&&(n.writable||n.configurable)?(Object.freeze(r),o({context:globalThis,property:e,value:r})):r}function l(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function s(e){return e.startsWith("//")&&/(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/g.test(`${location.protocol}:${e}`)&&(e=`${location.protocol}${e}`),!e.startsWith("http")||new URL(e).hostname===location.hostname}function u(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function p(e,t){return e instanceof Headers?e.forEach((r,o)=>{f(o,t)||e.delete(o)}):Object.keys(e).forEach(r=>{f(r,t)||delete e[r]}),e}function f(e,t){return!t.has(u(e)||"")}function d(e,t){let r=!0,o=u(function(e){let t,r;if(globalThis.Request&&e instanceof Request)t=e.url;else if("function"==typeof e?.toString)t=e.toString();else throw Error("Unsupported type for url");try{return new URL(t).pathname}catch{return(r=t.replace(/#.+/gi,"").split("?").shift()).startsWith("/")?r:`/${r}`}}(e));return o&&t.some(e=>o.includes(e))&&(r=!1),r}var y=["true","b","c","new","enabled"];let b=[],g=(e,t)=>{let r;return b.includes(t)||!0===(r=e[t])||"string"==typeof r&&y.includes(r.toLowerCase())};performance.mark("overrideGlobals started");let{experiments:m}=window.viewerModel,v=g(m,"specs.thunderbolt.securityExperiments");try{let e,t;!function(){let e=globalThis.open,t=document.open;function r(t,r,o){let n="string"!=typeof t,i=e.call(window,t,r,o);return n||t&&s(t)?{}:i}o({property:"open",value:r,context:globalThis,enumerable:!0}),o({property:"open",value:function(e,o,n){return e?r(e,o,n):t.call(document,e||"",o||"",n||"")},context:document,enumerable:!0})}(),v&&function(){let e=document.createElement,t=Element.prototype.setAttribute,r=Element.prototype.setAttributeNS,n=Element.prototype.removeAttribute,i=(Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow")?.get,Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"src")),c=i?.get,a=i?.set,l=Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"sandbox")?.get,s=DOMTokenList.prototype.add,p=DOMTokenList.prototype.remove,f=DOMTokenList.prototype.toggle,d=DOMTokenList.prototype.replace,y=Object.getOwnPropertyDescriptor(DOMTokenList.prototype,"value"),b=y?.get,g=y?.set,m=new WeakSet;o({property:"createElement",context:document,value:function(n,i){let c=e.call(document,n,i);return"iframe"===u(n)&&(o({property:"srcdoc",context:c,get:()=>"",set:()=>{console.warn("`srcdoc` is not allowed in iframe elements.")}}),o({property:"setAttribute",context:c,value:function(e,r){if("srcdoc"===e.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");t.call(c,e,r);e.toLowerCase()},enumerable:!1}),o({property:"setAttributeNS",context:c,value:function(e,t,o){if("srcdoc"===t.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");r.call(c,e,t,o);t.toLowerCase()},enumerable:!1})),c},enumerable:!0})}(),g(m,"specs.thunderbolt.hardenFetchAndXHR")&&v&&function(e,t,r){let n=fetch,i=XMLHttpRequest,c=new Set(t);function a(){let t=new i,o=t.open,n=t.setRequestHeader;return t.open=function(){let n=Array.from(arguments),i=n[1];if(n.length<2||d(i,e))return o.apply(t,n);throw Error(r||`Request not allowed for path ${i}`)},t.setRequestHeader=function(e,r){f(decodeURIComponent(e),c)&&n.call(t,e,r)},t}o({property:"fetch",value:function(){var t;let o=(t=arguments,globalThis.Request&&t[0]instanceof Request&&t[0]?.headers?p(t[0].headers,c):t[1]?.headers&&p(t[1].headers,c),t);return d(arguments[0],e)?n.apply(globalThis,Array.from(o)):new Promise((e,t)=>{let o=Error(r||`Request not allowed for path ${arguments[0]}`);t(o)})},enumerable:!0}),o({property:"XMLHttpRequest",value:a,enumerable:!0}),Object.keys(i).forEach(e=>{a[e]=i[e]})}(["/_api/v1/access-tokens","/_api/v2/dynamicmodel","/_api/one-app-session-web/v3/businesses"],["client-binding"]),function(){if(navigator&&"serviceWorker"in navigator)navigator.serviceWorker.register,o({context:navigator.serviceWorker,property:"register",value:function(){console.log("Service worker registration is not allowed")},enumerable:!0})}(),e=[],t=(t=[]).concat(["TextEncoder","TextDecoder"]),v&&(t=t.concat(["XMLHttpRequestEventTarget","EventTarget"])),t=t.concat(["URL","JSON"]),v&&(e=e.concat(["addEventListener","removeEventListener"])),e=e.concat(["encodeURI","encodeURIComponent","decodeURI","decodeURIComponent"]),t=t.concat(["String","Number"]),v&&t.push("Object"),t=t.concat(["Reflect"]),e.forEach(e=>{a(e),["addEventListener","removeEventListener"].includes(e)&&a(e,document)}),t.forEach(e=>{c({property:e})}),v&&function(){return e("setTimeout",0,globalThis),e("setInterval",0,globalThis);function e(e,t,r){let n=r||globalThis,i=n[e];if(!i||"function"!=typeof i)throw Error(`Function ${e} not found or is not a function`);o({property:e,value:function(){let r=Array.from(arguments);if("string"!=typeof r[t])return i.apply(n,r);console.warn(`Calling ${e} with a String Argument at index ${t} is not allowed`)},context:r,enumerable:!0})}}()}catch(t){window?.viewerModel?.mode.debug&&console.error(t);let e=Error("TB006");window.fedops?.reportError(e,"security_overrideGlobals"),window.Sentry?window.Sentry.captureException(e):globalThis.defineStrictProperty("sentryBuffer",[e],window,!1)}performance.mark("overrideGlobals ended")})(); | |
| 93 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js.map</script> | |
| 94 | + | |
| 95 | +<!-- END overrideGlobals bundle --> | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + <script> | |
| 101 | + window.commonConfig = viewerModel.commonConfig | |
| 102 | + | |
| 103 | + | |
| 104 | + window.clientSdk = new Proxy({}, {get: (target, prop) => (...args) => window.externalsRegistry.clientSdk.loaded.then(() => window.__clientSdk__[prop](...args))}) | |
| 105 | + | |
| 106 | + </script> | |
| 107 | + | |
| 108 | + <!-- Initial CSS --> | |
| 109 | + <style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css">@keyframes slide-horizontal-new{0%{transform:translate(100%)}}@keyframes slide-horizontal-old{80%{opacity:1}to{opacity:0;transform:translate(-100%)}}@keyframes slide-vertical-new{0%{transform:translateY(-100%)}}@keyframes slide-vertical-old{80%{opacity:1}to{opacity:0;transform:translateY(100%)}}@keyframes out-in-new{0%{opacity:0}}@keyframes out-in-old{to{opacity:0}}:root:active-view-transition{view-transition-name:none}:root:active-view-transition::view-transition-group(*){animation:none}:root:active-view-transition::view-transition-old(*){animation:none}:root:active-view-transition::view-transition-new(*){animation:none}:root::view-transition{pointer-events:none}:root:active-view-transition #SITE_HEADER{view-transition-name:header-group}:root:active-view-transition #WIX_ADS{view-transition-name:wix-ads-group}:root:active-view-transition #SITE_FOOTER{view-transition-name:footer-group}:root:active-view-transition #BACKGROUND_GROUP_TRANSITION_GROUP>div{view-transition-name:background-group}:root:active-view-transition::view-transition-group(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-old(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-new(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-horizontal-old}:root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-horizontal-new}:root:active-view-transition-type(SlideVertical)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-vertical-old}:root:active-view-transition-type(SlideVertical)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-vertical-new}:root:active-view-transition-type(OutIn)::view-transition-old(page-group){animation:.35s cubic-bezier(.22,1,.36,1) forwards out-in-old}:root:active-view-transition-type(OutIn)::view-transition-new(page-group){animation:.35s cubic-bezier(.64,0,.78,0) .35s backwards out-in-new}@media (prefers-reduced-motion:reduce){::view-transition-group(*){animation:none!important}::view-transition-old(*){animation:none!important}::view-transition-new(*){animation:none!important}}html,body{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}body{--scrollbar-width:0px;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;font-family:Arial,Helvetica,sans-serif;font-size:10px}html,body{height:100%}body{overflow-x:auto;overflow-y:scroll}body:not(.responsive) #site-root{width:100%;min-width:var(--site-width)}body:not([data-js-loaded]) [data-hide-prejs]{visibility:hidden}interact-element{display:contents}#SITE_CONTAINER{position:relative}:root{--one-unit:1vw;--section-max-width:9999px;--spx-stopper-max:9999px;--spx-stopper-min:0px;--browser-zoom:1}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){:root{--safari-sticky-fix:opacity;--experimental-safari-sticky-fix:translateZ(0)}}@supports (container-type:inline-size){:root{--one-unit:1cqw}}[id^=oldHoverBox-]{mix-blend-mode:plus-lighter;transition:opacity .5s,visibility .5s}[data-mesh-id$=inlineContent-gridContainer]:has(>[id^=oldHoverBox-]){isolation:isolate} | |
| 110 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css.map*/</style> | |
| 111 | +<style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css">div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,nav,button,section,header,footer,title{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}textarea,input,select{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif}ol,ul{list-style:none}blockquote,q{quotes:none}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a{cursor:pointer;text-decoration:none}.testStyles{overflow-y:hidden}.reset-button{color:inherit;font:inherit;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;background:0 0;border:0;outline:0;padding:0;line-height:normal;overflow:visible}:focus{outline:none}body.device-mobile-optimized:not(.disable-site-overflow){overflow-x:hidden;overflow-y:scroll}body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER{width:320px;margin-left:auto;margin-right:auto;position:relative;overflow-x:visible}body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling) #SITE_CONTAINER{margin-top:0}body.device-mobile-optimized>*{max-width:100%!important}body.device-mobile-optimized #site-root{overflow:hidden}@supports (overflow:clip){body.device-mobile-optimized #site-root{overflow:clip}}body.device-mobile-non-optimized #SITE_CONTAINER #site-root{overflow:clip}body.device-mobile-non-optimized.fullScreenMode{background-color:#5f6360}body.device-mobile-non-optimized.fullScreenMode #site-root,body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,body.fullScreenMode #WIX_ADS{visibility:hidden}body.fullScreenMode{overflow:hidden!important}body.fullScreenMode.device-mobile-optimized #TINY_MENU{opacity:0;pointer-events:none}body.fullScreenMode-scrollable.device-mobile-optimized{overflow-x:hidden!important;overflow-y:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #site-root,body.fullScreenMode-scrollable.device-mobile-optimized #masterPage{overflow:hidden!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND{height:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout{height:0!important}body.blockSiteScrolling,body.siteScrollingBlocked{width:100%;position:fixed}body.siteScrollingBlockedIOSFix{overflow:hidden!important}body.blockSiteScrolling #SITE_CONTAINER{margin-top:calc(var(--blocked-site-scroll-margin-top)*-1)}#site-root{top:var(--wix-ads-height);min-height:100%;margin:0 auto;position:relative}#site-root img:not([src]){visibility:hidden}#site-root svg img:not([src]){visibility:visible}.auto-generated-link{color:inherit}#SCROLL_TO_TOP,#SCROLL_TO_BOTTOM{height:0}.has-click-trigger{cursor:pointer}.fullScreenOverlay{z-index:1005;justify-content:center;display:flex;position:fixed;top:-60px;bottom:0;left:0;right:0;overflow-y:hidden}.fullScreenOverlay>.fullScreenOverlayContent{margin:0 auto;position:absolute;top:60px;bottom:0;left:0;right:0;overflow:hidden;transform:translateZ(0)}[data-mesh-id$=inlineContent],[data-mesh-id$=centeredContent],[data-mesh-id$=form]{pointer-events:none;position:relative}[data-mesh-id$=-gridWrapper],[data-mesh-id$=-rotated-wrapper]{pointer-events:none}[data-mesh-id$=-gridContainer]>*,[data-mesh-id$=-rotated-wrapper]>*,[data-mesh-id$=inlineContent]>:not([data-mesh-id$=-gridContainer]){pointer-events:auto}.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID{-ms-grid-row:2;grid-area:2/1/3/2;position:relative}#masterPage.mesh-layout{display:-ms-grid;-ms-grid-rows:max-content max-content min-content max-content;-ms-grid-columns:100%;grid-template-rows:max-content max-content min-content max-content;grid-template-columns:100%;justify-content:stretch;align-items:start;display:grid}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~=mobileView],#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-column:1;-ms-grid-row-align:start;-ms-grid-column-align:start}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder{-ms-grid-row:1;grid-area:1/1/2/2}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{-ms-grid-row:3;grid-area:3/1/4/2}#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{width:100%}#masterPage.mesh-layout #PAGES_CONTAINER{align-self:stretch}#masterPage.mesh-layout main#PAGES_CONTAINER{display:block}#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-row:4;grid-area:4/1/5/2}#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERcenteredContent],#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERinlineContent],#masterPage.mesh-layout #SITE_PAGES{height:100%}#masterPage.mesh-layout.desktop>*{width:100%}#masterPage.mesh-layout #SITE_PAGES,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #masterPageinlineContent,#masterPage.mesh-layout #SITE_FOOTER,#masterPage.mesh-layout #SITE_HEADER{position:relative}#masterPage.mesh-layout #SITE_HEADER{grid-area:1/1/2/2}#masterPage.mesh-layout #SITE_FOOTER{grid-area:4/1/5/2}#masterPage.mesh-layout.overflow-x-clip #SITE_HEADER,#masterPage.mesh-layout.overflow-x-clip #SITE_FOOTER{overflow-x:clip}[data-z-counter]{z-index:0}[data-z-counter="0"]{z-index:auto}.wixSiteProperties{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--wst-button-color-fill-primary:rgb(var(--color_48));--wst-button-color-border-primary:rgb(var(--color_49));--wst-button-color-text-primary:rgb(var(--color_50));--wst-button-color-fill-primary-hover:rgb(var(--color_51));--wst-button-color-border-primary-hover:rgb(var(--color_52));--wst-button-color-text-primary-hover:rgb(var(--color_53));--wst-button-color-fill-primary-disabled:rgb(var(--color_54));--wst-button-color-border-primary-disabled:rgb(var(--color_55));--wst-button-color-text-primary-disabled:rgb(var(--color_56));--wst-button-color-fill-secondary:rgb(var(--color_57));--wst-button-color-border-secondary:rgb(var(--color_58));--wst-button-color-text-secondary:rgb(var(--color_59));--wst-button-color-fill-secondary-hover:rgb(var(--color_60));--wst-button-color-border-secondary-hover:rgb(var(--color_61));--wst-button-color-text-secondary-hover:rgb(var(--color_62));--wst-button-color-fill-secondary-disabled:rgb(var(--color_63));--wst-button-color-border-secondary-disabled:rgb(var(--color_64));--wst-button-color-text-secondary-disabled:rgb(var(--color_65));--wst-color-fill-base-1:rgb(var(--color_36));--wst-color-fill-base-2:rgb(var(--color_37));--wst-color-fill-base-shade-1:rgb(var(--color_38));--wst-color-fill-base-shade-2:rgb(var(--color_39));--wst-color-fill-base-shade-3:rgb(var(--color_40));--wst-color-fill-accent-1:rgb(var(--color_41));--wst-color-fill-accent-2:rgb(var(--color_42));--wst-color-fill-accent-3:rgb(var(--color_43));--wst-color-fill-accent-4:rgb(var(--color_44));--wst-color-fill-background-primary:rgb(var(--color_11));--wst-color-fill-background-secondary:rgb(var(--color_12));--wst-color-text-primary:rgb(var(--color_15));--wst-color-text-secondary:rgb(var(--color_14));--wst-color-action:rgb(var(--color_18));--wst-color-disabled:rgb(var(--color_39));--wst-color-title:rgb(var(--color_45));--wst-color-subtitle:rgb(var(--color_46));--wst-color-line:rgb(var(--color_47));--wst-font-style-h2:var(--font_2);--wst-font-style-h3:var(--font_3);--wst-font-style-h4:var(--font_4);--wst-font-style-h5:var(--font_5);--wst-font-style-h6:var(--font_6);--wst-font-style-body-large:var(--font_7);--wst-font-style-body-medium:var(--font_8);--wst-font-style-body-small:var(--font_9);--wst-font-style-body-x-small:var(--font_10);--wst-color-custom-1:rgb(var(--color_13));--wst-color-custom-2:rgb(var(--color_16));--wst-color-custom-3:rgb(var(--color_17));--wst-color-custom-4:rgb(var(--color_19));--wst-color-custom-5:rgb(var(--color_20));--wst-color-custom-6:rgb(var(--color_21));--wst-color-custom-7:rgb(var(--color_22));--wst-color-custom-8:rgb(var(--color_23));--wst-color-custom-9:rgb(var(--color_24));--wst-color-custom-10:rgb(var(--color_25));--wst-color-custom-11:rgb(var(--color_26));--wst-color-custom-12:rgb(var(--color_27));--wst-color-custom-13:rgb(var(--color_28));--wst-color-custom-14:rgb(var(--color_29));--wst-color-custom-15:rgb(var(--color_30));--wst-color-custom-16:rgb(var(--color_31));--wst-color-custom-17:rgb(var(--color_32));--wst-color-custom-18:rgb(var(--color_33));--wst-color-custom-19:rgb(var(--color_34));--wst-color-custom-20:rgb(var(--color_35))}.wix-presets-wrapper{display:contents}.builder-root{box-sizing:border-box}#main_MF .wix-visibility-hidden{visibility:hidden}#main_MF .wix-visibility-collapsed.wix-visibility-collapsed{--l_display:none;display:none}#main_MF .wix-visibility-revealed:after{content:"";box-sizing:border-box;z-index:1;pointer-events:none;border-radius:inherit;background-image:repeating-linear-gradient(-45deg,transparent,transparent 40%,rgba(43,86,114,.5) 40%,rgba(43,86,114,.5) 45%,rgba(255,255,255,.333) 45%,rgba(255,255,255,.333) 50%,transparent 50%);background-size:10px 10px;background-clip:padding-box;border:1px solid rgba(43,86,114,.5);position:absolute;top:0;bottom:0;left:0;right:0} | |
| 112 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css.map*/</style> | |
| 113 | + | |
| 114 | + <meta name="format-detection" content="telephone=no"> | |
| 115 | + <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + <!--pageHtmlEmbeds.head start--> | |
| 123 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head start"></script> | |
| 124 | + | |
| 125 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head end"></script> | |
| 126 | + <!--pageHtmlEmbeds.head end--> | |
| 127 | + | |
| 128 | + | |
| 129 | + <!-- head performance data start --> | |
| 130 | + | |
| 131 | + <!-- head performance data end --> | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + <style id="a11y-contrast"> | |
| 138 | + @media (forced-colors: active) { | |
| 139 | + #SITE_CONTAINER.focus-ring-active | |
| 140 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus, | |
| 141 | + #SITE_CONTAINER.focus-ring-active | |
| 142 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus | |
| 143 | + ~ .wixSdkShowFocusOnSibling { | |
| 144 | + outline: 2px solid CanvasText; | |
| 145 | + outline-offset: 2px; | |
| 146 | + } | |
| 147 | + } | |
| 148 | + </style> | |
| 149 | + | |
| 150 | + | |
| 151 | + <script id="wix-skip-played-animations-setup"> | |
| 152 | + (function() { | |
| 153 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 154 | + if (navEntry && navEntry.type === 'reload') { | |
| 155 | + return; | |
| 156 | + } | |
| 157 | + if ('PageRevealEvent' in window) { | |
| 158 | + window.__pageRevealPromise = new Promise(function(resolve) { | |
| 159 | + window.addEventListener('pagereveal', resolve, { once: true }); | |
| 160 | + }); | |
| 161 | + } else { | |
| 162 | + window.__pageRevealPromise = Promise.resolve(); | |
| 163 | + } | |
| 164 | + })(); | |
| 165 | + </script> | |
| 166 | + | |
| 167 | +<meta http-equiv="X-Wix-Meta-Site-Id" content="39b9882f-9e71-4f93-bb6d-a87166c85cda"> | |
| 168 | +<meta http-equiv="X-Wix-Application-Instance-Id" content="452071c1-a99b-44c2-b686-dd15b11264a3"> | |
| 169 | + | |
| 170 | + <meta http-equiv="X-Wix-Published-Version" content="4"/> | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + <meta http-equiv="etag" content="bug"/> | |
| 175 | + | |
| 176 | +<!-- render-head end --> | |
| 177 | + | |
| 178 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap.2c161780.min.css">.EtmdIW{cursor:pointer}.XWeqiF{opacity:0}.bWoigz{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.HTrn1j{opacity:1}.sAGPNe{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.cCFKrw{opacity:0}.yifJnQ{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.64,0,.78,0)}._mj5qU{opacity:1}.gG6uhp{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.22,1,.36,1)}.k0CnHT{transform:translate(100%)}.URQNsX{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.CCwVTE{transform:translate(0)}.TX_1qK{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(-100%)}.JMRv7x{transform:translate(-100%)}.AOzCGi{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.WzSMGx{transform:translate(0)}.I76Pz6{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(100%)}.bX95uQ{transform:translateY(100%)}.Ogwj62{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.GdyWfW{transform:translateY(0)}.YxqFze{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(-100%)}.NrDww4{transform:translateY(-100%)}.ciVV17{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.BMKrqh{transform:translateY(0)}.jNxMkI{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(100%)}body:not(.responsive) .Y3K28_{overflow-x:clip}:root:active-view-transition .Y3K28_{view-transition-name:page-group}.uvik8H{grid-template-rows:1fr;grid-template-columns:1fr;height:100%;display:grid}.uvik8H>div{grid-area:1/1/2/2;align-self:stretch!important;justify-self:stretch!important}.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}ul.font_100,ol.font_100{color:#080808;font-variant:normal;letter-spacing:normal;margin:0;font-family:"Arial, Helvetica, sans-serif",serif;font-size:10px;font-style:normal;font-weight:400;line-height:normal;text-decoration:none}ul.font_100 li,ol.font_100 li{margin-bottom:12px}ul.wix-list-text-align,ol.wix-list-text-align{list-style-position:inside}ul.wix-list-text-align p,ul.wix-list-text-align h1,ul.wix-list-text-align h2,ul.wix-list-text-align h3,ul.wix-list-text-align h4,ul.wix-list-text-align h5,ul.wix-list-text-align h6,ol.wix-list-text-align p,ol.wix-list-text-align h1,ol.wix-list-text-align h2,ol.wix-list-text-align h3,ol.wix-list-text-align h4,ol.wix-list-text-align h5,ol.wix-list-text-align h6{display:inline}.E28gHm{cursor:pointer}.V9ooqn{clip:rect(0 0 0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){._v6ohL>*>:first-child{vertical-align:top}}@supports (-webkit-touch-callout:none){._v6ohL>*>:first-child{vertical-align:top}}._v6ohL [data-attr-richtext-marker=true]{display:block}._v6ohL [data-attr-richtext-marker=true] table{border-collapse:collapse;width:100%;margin:15px 0}._v6ohL [data-attr-richtext-marker=true] table td{padding:12px;position:relative}._v6ohL [data-attr-richtext-marker=true] table td:after{content:"";opacity:.2;border-bottom:1px solid;border-left:1px solid;position:absolute;inset:0}._v6ohL [data-attr-richtext-marker=true] table tr td:last-child:after{border-right:1px solid}._v6ohL [data-attr-richtext-marker=true] table tr:first-child td:after{border-top:1px solid}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) [class$=rich-text__text],.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div)[class$=rich-text__text]{color:var(--corvid-color,currentColor)}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) span[style*=color]{color:var(--corvid-color,currentColor)!important}.V3wkP4{min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction)}.V3wkP4 .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.V3wkP4 .nzCBBu ul{list-style:inside}.V3wkP4 .nzCBBu li{margin-bottom:12px}.UwkEpO p,.UwkEpO h1,.UwkEpO h2,.UwkEpO h3,.UwkEpO h4,.UwkEpO h5,.UwkEpO h6,.UwkEpO blockquote,.UwkEpO div{letter-spacing:normal;line-height:normal}.JykKzs{min-height:var(--min-height);min-width:var(--min-width)}.JykKzs .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.JykKzs .nzCBBu ol,.JykKzs .nzCBBu ul{letter-spacing:normal;margin-inline-start:.5em;padding-inline-start:1.3em;line-height:normal}.JykKzs .nzCBBu ul{list-style-type:disc}.JykKzs .nzCBBu ol{list-style-type:decimal}.JykKzs .nzCBBu ul ul,.JykKzs .nzCBBu ol ul{line-height:normal;list-style-type:circle}.JykKzs .nzCBBu ol ol ul,.JykKzs .nzCBBu ol ul ul,.JykKzs .nzCBBu ul ol ul,.JykKzs .nzCBBu ul ul ul{line-height:normal;list-style-type:square}.JykKzs .nzCBBu li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.JykKzs .nzCBBu p,.JykKzs .nzCBBu h1,.JykKzs .nzCBBu h2,.JykKzs .nzCBBu h3,.JykKzs .nzCBBu h4,.JykKzs .nzCBBu h5,.JykKzs .nzCBBu h6{margin-block:0;letter-spacing:normal;margin:0;line-height:normal}.JykKzs .nzCBBu a{color:inherit}.N8MGzv,.UwkEpO{word-wrap:break-word;overflow-wrap:break-word;text-align:start;pointer-events:none;min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction);mix-blend-mode:var(--blendMode,normal);text-transform:var(--textTransform,"none");text-shadow:var(--textOutline,0px 0px transparent),var(--textShadow,0px 0px transparent)}.N8MGzv>*,.UwkEpO>*{pointer-events:auto}.N8MGzv li,.UwkEpO li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.N8MGzv ol,.UwkEpO ol,.N8MGzv ul,.UwkEpO ul{letter-spacing:normal;margin-inline:.5em 0;line-height:normal}.N8MGzv:not(.PO9MfV) ol,.UwkEpO:not(.PO9MfV) ol,.N8MGzv:not(.PO9MfV) ul,.UwkEpO:not(.PO9MfV) ul{padding-inline:1.3em 0}.N8MGzv ul,.UwkEpO ul{list-style-type:disc}.N8MGzv ol,.UwkEpO ol{list-style-type:decimal}.N8MGzv ul ul,.UwkEpO ul ul,.N8MGzv ol ul,.UwkEpO ol ul{list-style-type:circle}.N8MGzv ul ul ul,.UwkEpO ul ul ul,.N8MGzv ol ul ul,.UwkEpO ol ul ul,.N8MGzv ul ol ul,.UwkEpO ul ol ul,.N8MGzv ol ol ul,.UwkEpO ol ol ul{list-style-type:square}.N8MGzv p,.UwkEpO p,.N8MGzv h1,.UwkEpO h1,.N8MGzv h2,.UwkEpO h2,.N8MGzv h3,.UwkEpO h3,.N8MGzv h4,.UwkEpO h4,.N8MGzv h5,.UwkEpO h5,.N8MGzv h6,.UwkEpO h6,.N8MGzv blockquote,.UwkEpO blockquote,.N8MGzv div,.UwkEpO div{margin-block:0;margin:0}.N8MGzv a,.UwkEpO a{color:inherit}.PO9MfV li{margin-inline:1.3em 0}.qe3oTb{pointer-events:none;white-space:nowrap;padding:0;overflow:hidden}.TvbeET{display:none}.CNHfeA{width:100%;position:absolute;inset:0}.ZfNvr6{transition:all .2s ease-in;transform:translateY(-100%)}.ICcIQy{transition:all .2s}.xL7MJu{opacity:0;transition:all .2s ease-in}.xL7MJu.Dbjboh{pointer-events:none}.xg8z1A{opacity:1;transition:all .2s}.G6vvJF{width:100%;height:auto;position:relative}.ZgDNL8{width:100%;position:relative}body:not(.device-mobile-optimized) ._c_gnD,:host(:not(.device-mobile-optimized)) ._c_gnD{margin-left:calc((100% - var(--site-width))/2);width:var(--site-width)}.HQtdHX[data-focuscycled=active]{outline:1px solid #0000}.HQtdHX[data-focuscycled=active]:not(:focus-within){outline:2px solid #0000;transition:outline 10ms}.HQtdHX ._c_gnD{position:absolute;inset:0}.w4DepW{direction:var(--direction)}.w4DepW .tN_ggS .re13Ik{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.w4DepW .tN_ggS .re13Ik:last-child{margin-block:0;margin-inline:0}.w4DepW .tN_ggS .re13Ik .twXk19{display:block}.w4DepW .tN_ggS .re13Ik .twXk19 .ZK9snE{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.w4DepW .tN_ggS .re13Ik .twXk19{outline-offset:0;outline:2px solid buttontext}.w4DepW .tN_ggS .re13Ik .twXk19:hover{outline-offset:-2px;outline:3px solid highlight}.w4DepW .tN_ggS .re13Ik .twXk19:focus,.w4DepW .tN_ggS .re13Ik .twXk19:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.w4DepW .tN_ggS{white-space:nowrap;width:100%;height:100%;position:absolute}body.device-mobile-optimized .w4DepW .tN_ggS,:host(.device-mobile-optimized) .w4DepW .tN_ggS{white-space:normal}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.QED8q1{width:100%;height:calc(100% - var(--wix-ads-height));margin-top:var(--wix-ads-height);pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container));grid-template-rows:1fr;grid-template-columns:1fr;display:grid;position:fixed;top:0;left:0}.MswS0Y{pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container))}</style> | |
| 179 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SkipToContentButton].c9649c22.min.css">.BqYkvS{pointer-events:none;z-index:9999;color:#116dff;opacity:0;cursor:pointer;background:#fff;border-radius:24px;width:0;height:0;margin-left:-94px;padding:0 24px;font-family:Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;position:absolute;top:60px;left:50%}.BqYkvS:focus{opacity:1;pointer-events:auto;border:2px solid;width:auto;height:40px}</style> | |
| 180 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[GoogleMap].c573a625.min.css">.DDi8v8 .oD_vT7{position:absolute;inset:0}.ZzH1gE{background:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ZzH1gE .oD_vT7{border-radius:var(--rd,0);top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);display:inline-block;position:absolute;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff,#000);mask-image:radial-gradient(circle,#fff,#000)}.d45pDW .oD_vT7{position:absolute;inset:9px}.d45pDW .BIO33b{background-image:url(https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/media/sloppyframe.3214ce8e.png);background-repeat:no-repeat;position:absolute;inset:0}.d45pDW .tq8JQN{background-position:0 0;bottom:3px;right:3px}.d45pDW .wiMpk0{background-position:100% 100%;top:3px;left:3px}.PhoT72{background-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.PhoT72 .oD_vT7{top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);position:absolute;overflow:hidden}.PhoT72 .Yg0Qgp{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAAaCAYAAADR0BVGAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAACIFJREFUeNrsnOuS2ygQhRuBnWTf/1k3O5aA/QNbJ8enQfJkapMJXeWyrPul+TjdjRzsmgUxvbXpYGaxfTaYTmZ2a597+/5Cn69t2b1NfzWzbzTvrzadYH5q2+O+Uzvunc7lDucU27q4HM85nLwfta1bzeyAeWo9M7O9fZe2foDlxcxy+53bukebLmb2ZmYPM/unffY2f2+ft7Y+/v7etu/bHm3bA/bff/flfZ+5/eZPhk+B6X4NBab7d7/G6kxf8b3gTHc/xO9t4JfdN/nTfWMDX0vNBxP42FdY/qVt9w388Ub+2fd5Ax/v227UVmK7pgjX0O9VavOsrWuOv/Z5CXz0il/zMy7gl+gDD1r+AN/Z22/0zwf42sPM/m4+2Od/Bx9/gM+/0Qf3vZNvsl+yH9pF37P0Tkiik24ETXbKbfIJ4kEVuOn/tOkbNMLeeBM47Y0cLzrnEcHpAp2LUSPb6Nw6TO5tnQOuuztkXye043QnqgQjfrA7LNsBnOhIbwBPXPeN9vFGkEWQ7rDsgPtc6HwOmH8Q1BUUq/gwHD1HrQOf834zNAP5IH8jfBIAMQkfSeAnXwB0CEKEHUIxwu8IAqGvh0IgAvgi7YMBf4Pz79v259KXYQfe4VqbD9xEeyvU2Rn4AT5b7LgLATPT8h18DjvZNwdweA74fGfciOR3BbbDawt0X4ymfxooZ865OWqSp28CYOzQrLQOghj2lgykO91EPgY3IgPnMoKiEQDZQSJsh5AJcN47bVsEmDJArwhFyeoRHbDvn6F5DJxYTSvgeUrRTsJw1nvXF3zvTAc+g6gNlKcCLHaqajqKCArhGMDvsUNHlcnbbrB9FOBmkXGD+ZVg3+9BFp1BcDqxAtsVao+VwMRRRgEfrSRqdhGxFIKX6tzw/vZjJEctZmJIeK/vpYvOGcT3iPTbQNEpOFbRS20UsvYeFIHLob/6vcFDC7C/Sje1kqIt4mFnguFIIT4EYHeC5iHCml0ALgvAsfLmkCM7Sq8IB5sB72y4XO1jrL4DqDbxYw+wKnIKjkhgv0uOeNiEWkyUEooEUITjTbSn+0SBIkRxn4HacRSdSiWVVmF5oXZbB78P6sQPEgeZtgtOOgWVJLbR6HTcCFNOmYUzvpVe7MFn4c4ovOZGmCE3V+giOjASfG8UOkVHLaBjc6NHFXg4gDwEpDBkrSJUzk4eJ4tw1oR6PCj0OURYwdNGDjkKdT8aZL+KfTTIw8VoK5KwCM50It9NQmWaSBNEJ/8eRSgfKIXAsE4OMBOpU+5cCvmuEh4HddKHyIVj7rEQH4zEjseZSqBV56vSPPUVUHr5oBEkgwhnvAQ7XvgB4UIliByOGq2kXI16DXN6lkygG+XldgHOMoDh7oS6nNcxgnUeFIPqBHrLfh0Q1xehGwb5WAy3cX50orc0ACYXMRmMtxP52jBQnnwNnCcsBNUi0kO7KBB5eUvV2WxwnDBQx+qZubBML0DSU49B5D42UUXmm4e/N1JJ2MNGCBU8J6t0Y6tTmVVwLATIQqDEYgbnV7C4pMLk7OT0gggLlv150B0B9qBoTLXHOAjnA8EOgZcItpgzTU6aYKMiaBTV+UDtvjrpnIOiycPJXSJouY4QKAzfBkwpJzo4Cct0ITluE+XofQcnX3DQfgx6g11UnKOjRk1Uy7OTbOaqnVe5O0h1IggLqeAiCjomKsNV3NPL1bdlf5wFBzLoO4eIrriQg+kqDPVZ0KhRACqii0J5qtqAxxYeElec3LqJiE4JjgD82ChC3Qa8MJGnfGqP6YUK4izsDgOaqzF32Z6H5KhjbuLGqyStGr7AYXZ2FGUm1RjsueJbBoWQM+O1FhCXfUS+NduP1d6thbCjoXycEqukNqOjKKMIx9U6r7TfKpaVicLktjdj0xlA/gDLq8ODgo3HsiEUuVLGlXKjB6dOHMdFKdLzUBaz52E43s3NYlkGpVvoeAz8Zct+RZjOwkwj5cltqwNTqcUOQLPnMambPQ9bMnsecqVC3CpEEl8LXg8Pa+NquQm1qQThuwechwkcR5bhogvk+6KTDxjlaxB63lgoVIaBch9cIebKHALdU4orLF722YzBE4TKyqQ0gz2/kKHSbJgbrfZct1BtmOHqcYfZwKNKlEo9I/6m7T0NgDV7K8JIyamL64DDga78cIJQhwzNTMvMgWlxZLval9cbz94WWbbss4Xz3pjZ4rR/VJaqzuCF+QpSal8mVGgVEMuCDSpVlp12HCb34r9jp4laPDO6PRDkuIfBJOtuz4nV4PRyZn5hhC+Uh94EB+Q2uGnLli0biwYj8cHhPKsz9QaQgiRC1py0nOIFg1GNN569JHEmcgzpxM0KJw5U6ILUMIaN8iDm9Fyequx5CXN6P7xBGPpn59yWLVv2OkSLgNZGy6qNx1kmey7AmOk6hopUZ1Ac/f/A6HVb80LvV+S6US5DqU6vis3vT9sg/Ma3dIqNq8kqx+lVopctW/a6FfPHLzMoVfiOOUxeVxV/1Jt9dZAqYAFlE1AObVaomb0Ly6oxODkIJZ25N7KBVOZxVWdyLcuWLft/bVbnUMOIRsMDzXRV20sHjNTj6L8MToHQBj3A6IJHAPYGXHsnulHPVWwVWpYt+4zg5Gq6UTg+Y8aINSbEmNn1Mc71TGX7TM8QJoA9m1Advb1yivzLli37bYDpia96UciFCfCu/n6aP/t/v7M9w5ntgkN3m+QLtgvrLlu27PcAZZiovtG6KhS3GewuRqI/rBNfhOJsOcMsXAQx7yss31q27NOCslyEahhEpK/+s9Nwebx4cbNlKjQOJ06wnjz+UpPLln0uYP6sP2NWbDjzqmL9GQe/sn2dXHh478kuW7bsjwXqVXao4UkvcybUuhi1bNmyZSPb1i1YtmzZsgXKZcuWLVugXLZs2bKPtH8HADJQ9p+EtD02AAAAAElFTkSuQmCC);background-repeat:no-repeat;width:165px;height:26px;position:absolute;bottom:-26px}.PhoT72 .u2ipRh{background-position:0 0;left:-20px}.PhoT72 .JNSeQ8{background-position:100% 0;right:-20px}.tE8VE3{width:100%;height:100%}.TlDFAU{font-size:14px;font-weight:500;line-height:15px}.erPUts{color:#333;font-size:13px;font-weight:400}.dKbVyb{color:var(--wst-links-and-actions-color,#1a73e8);font-size:13px;font-weight:400;text-decoration:underline;display:block}.ug7ltv svg{width:32px;height:32px}.gTl8fV{clip-path:polygon(0 0,0 0,0 0,0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}</style> | |
| 181 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_mobile.a7aaff2a.min.css">.BZjmPL{direction:var(--direction,ltr)}.BZjmPL>ul{box-sizing:border-box;width:100%}.BZjmPL>ul li{display:block}.BZjmPL>ul li>div:focus,.BZjmPL>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.BZjmPL .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);position:relative;-webkit-transform:translateZ(0)}.d2V6sy{display:var(--display);--display:grid;direction:var(--direction,ltr);grid-template-columns:minmax(0,1fr)}.d2V6sy>ul{box-sizing:border-box;width:100%}.d2V6sy>ul li{display:block}.d2V6sy>ul li>div:focus,.d2V6sy>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.d2V6sy .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);min-height:1px;position:relative;-webkit-transform:translateZ(0)}.FWN1UT{--padding-start-lvl1:var(--padding-start,0);--padding-end-lvl1:var(--padding-end,0);--padding-start-lvl2:var(--sub-padding-start,0);--padding-end-lvl2:var(--sub-padding-end,0);--padding-start-lvl3:calc(2*var(--padding-start-lvl2) - var(--padding-start-lvl1));--padding-end-lvl3:calc(2*var(--padding-end-lvl2) - var(--padding-end-lvl1));background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;min-width:100px;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.FWN1UT .keDKhi{cursor:pointer;height:var(--item-height,50px);grid-template-columns:1fr;display:grid;position:relative}.FWN1UT .keDKhi>.j945c8{text-overflow:ellipsis;position:relative}.FWN1UT .keDKhi>.j945c8>.G7GdaI{-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:absolute;inset:0;overflow:hidden}.FWN1UT .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_14,color_14)))}@supports (-webkit-touch-callout:none){.FWN1UT .keDKhi>.j945c8>.G7GdaI{text-decoration:underline #0000}}.FWN1UT.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.FWN1UT.Hp2waC>.keDKhi>.j945c8{grid-area:label}.FWN1UT.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.FWN1UT.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.FWN1UT.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.FWN1UT.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.FWN1UT>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.FWN1UT>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.FWN1UT>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--padding-start-lvl2,0);padding-inline-end:var(--padding-end-lvl2,0)}.FWN1UT>.tFexI9 .tFexI9 .G7GdaI{padding-inline-start:var(--padding-start-lvl3,0);padding-inline-end:var(--padding-end-lvl3,0)}.FWN1UT .DpFF8A{opacity:0;position:absolute}.FWN1UT .G7GdaI{padding-inline-start:var(--padding-start-lvl1,0);padding-inline-end:var(--padding-end-lvl1,0)}.Onlmt7{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.Onlmt7 .keDKhi{cursor:pointer;grid-template-columns:1fr;height:auto;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8{text-overflow:ellipsis;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8>.G7GdaI{padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:relative;overflow:hidden}.Onlmt7 .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_15,color_15)))}.Onlmt7.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.Onlmt7.Hp2waC>.keDKhi>.j945c8{grid-area:label}.Onlmt7.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.Onlmt7.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.Onlmt7.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.Onlmt7.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.Onlmt7>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.Onlmt7>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.Onlmt7>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--sub-padding-start,0);padding-inline-end:var(--sub-padding-end,0)}.Onlmt7 .DpFF8A{opacity:0;position:absolute}.Onlmt7 .G7GdaI{padding-inline-start:var(--padding-start,0);padding-inline-end:var(--padding-end,0)}.WIf5uD .keDKhi{direction:var(--item-depth0-direction);text-align:var(--item-depth0-align,var(--text-align))}.jieHoL .keDKhi{direction:var(--item-depth1-direction);text-align:var(--item-depth1-align,var(--text-align))}.pk6ct0 .keDKhi{direction:var(--item-depth2-direction);text-align:var(--item-depth2-align,var(--text-align))}.Uym66v{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.Uym66v.I_VSKP{opacity:1;visibility:visible}.Uym66v[data-undisplayed=true]{display:none}.Uym66v:not([data-is-mesh]) .a6myrz,.Uym66v:not([data-is-mesh]) .vaRtfC{position:absolute;inset:0}.PuJkmm{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.PuJkmm.nQIUtw{display:none}body.device-mobile-optimized .PuJkmm,:host(.device-mobile-optimized) .PuJkmm{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.nQIUtw,:host(.device-mobile-optimized) .Uym66v.nQIUtw{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.PV8CZu,:host(.device-mobile-optimized) .Uym66v.PV8CZu{height:100vh}body:not(.device-mobile-optimized) .Uym66v.PV8CZu,:host(:not(.device-mobile-optimized)) .Uym66v.PV8CZu{height:100vh}.JssDma.PV8CZu{height:calc(var(--menu-height) - var(--wix-ads-height))}.JssDma.PV8CZu>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.Uym66v.PV8CZu{top:0}.vaRtfC{width:100%;height:100%}.Uym66v{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.GtYgZN{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.GtYgZN.DhNUBc{opacity:1;visibility:visible}.GtYgZN[data-undisplayed=true]{display:none}.GtYgZN:not([data-is-mesh]) .PGRltO,.GtYgZN:not([data-is-mesh]) .ontAlD{position:absolute;inset:0}.bKMmNw{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.bKMmNw.XiExOX{display:none}body.device-mobile-optimized .bKMmNw,:host(.device-mobile-optimized) .bKMmNw{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.XiExOX,:host(.device-mobile-optimized) .GtYgZN.XiExOX{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.u1yVmb,:host(.device-mobile-optimized) .GtYgZN.u1yVmb{height:100vh}body:not(.device-mobile-optimized) .GtYgZN.u1yVmb,:host(:not(.device-mobile-optimized)) .GtYgZN.u1yVmb{height:100vh}.fgXcGP.u1yVmb{height:calc(var(--menu-height) - var(--wix-ads-height))}.fgXcGP.u1yVmb>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.GtYgZN.u1yVmb{top:0}.ontAlD{width:100%;height:100%}.GtYgZN{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.fgXcGP{scrollbar-width:none;overflow-x:hidden;overflow-y:scroll;overflow:-moz-scrollbars-none;-ms-overflow-style:none;position:relative}.fgXcGP::-webkit-scrollbar{width:0;height:0}.ml3dss{display:inherit;height:inherit;width:auto}.qJB7LV{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .ml3dss,body:not(.responsive) .qJB7LV{z-index:var(--above-all-in-container)}.ml3dss.d0L2ow,.qJB7LV.d0L2ow{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.qJB7LV{touch-action:manipulation}}.vlJDcR{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.vlJDcR.d0L2ow{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.Pfl7LL{display:inherit;height:inherit;width:auto}.SOW3kh{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .Pfl7LL,body:not(.responsive) .SOW3kh{z-index:var(--above-all-in-container)}.Pfl7LL.EstcUq,.SOW3kh.EstcUq{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.SOW3kh{touch-action:manipulation}}.xC357X{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.xC357X.EstcUq{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.JJE8Wh{cursor:pointer;border-radius:50%;width:22px;height:22px;transition:all .3s linear;display:block;position:relative}.JJE8Wh:before,.JJE8Wh:after{content:"";background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:5px;margin:auto;position:absolute;inset:0}.JJE8Wh:before{width:22px;height:3px}.JJE8Wh:after{width:22px;height:3px;transition:all .12s linear;transform:rotate(90deg)}.JJE8Wh.EstcUq{transform:rotate(180deg)}.JJE8Wh.EstcUq:before{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.JJE8Wh.EstcUq:after{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(180deg)}.igzAYe{display:inherit;height:inherit;width:auto}.ISBHB0{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .igzAYe,body:not(.responsive) .ISBHB0{z-index:var(--above-all-in-container)}.igzAYe.v_eR1n,.ISBHB0.v_eR1n{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ISBHB0{touch-action:manipulation}}.FVpEn7{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.FVpEn7.v_eR1n{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.vWwHt3{cursor:pointer;flex-direction:column;justify-content:space-between;width:26px;height:21px;transition:transform .33s ease-out;display:flex}.vWwHt3.v_eR1n{transform:rotate(-45deg)}.jECeES{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1.5px;width:100%;height:3px}.jECeES.wjOCYk{width:50%}.jECeES.IgM_eH{transform-origin:100%;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.IgM_eH{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(4px)}.jECeES.Zp0zoK{transform-origin:0;align-self:flex-end;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.Zp0zoK{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(-4px)}.v_eR1n .jECeES.GVKWTt{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wsSrN4{display:inherit;height:inherit;width:auto}.dfqkHk{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wsSrN4,body:not(.responsive) .dfqkHk{z-index:var(--above-all-in-container)}.wsSrN4.n_2AWG,.dfqkHk.n_2AWG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.dfqkHk{touch-action:manipulation}}.XTpFTd{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.XTpFTd.n_2AWG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.voZlI_{width:22px;height:20px;position:absolute}.LhBFsy{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.KMI4iR{width:50%;top:0}.b6pJLW,.sItLyG{width:100%;top:9px}.erfbYp{width:50%;bottom:0}.Os6vNa{left:0}.HryFHb{right:0}.b6pJLW.LhBFsy,.sItLyG.LhBFsy{transform-origin:50%}.KMI4iR.LhBFsy.Os6vNa{transform-origin:0 0}.KMI4iR.LhBFsy.HryFHb{transform-origin:100% 0}.erfbYp.LhBFsy.Os6vNa{transform-origin:0 100%}.erfbYp.LhBFsy.HryFHb{transform-origin:100% 100%}.voZlI_.n_2AWG .KMI4iR.LhBFsy.Os6vNa,.voZlI_.n_2AWG .KMI4iR.LhBFsy.HryFHb,.voZlI_.n_2AWG .erfbYp.LhBFsy.Os6vNa,.voZlI_.n_2AWG .erfbYp.LhBFsy.HryFHb{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.voZlI_.n_2AWG .b6pJLW.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-45deg)scaleX(1)}.voZlI_.n_2AWG .sItLyG.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(45deg)scaleX(1)}.VK1Hr1{display:inherit;height:inherit;width:auto}.PbaYul{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .VK1Hr1,body:not(.responsive) .PbaYul{z-index:var(--above-all-in-container)}.VK1Hr1.sqDofR,.PbaYul.sqDofR{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.PbaYul{touch-action:manipulation}}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.pp3XSB{width:22px;height:20px;margin:auto;position:relative}.Z_qSkN{background-color:rgba(var(--lineColor,var(--color_11,color_11)),var(--alpha-lineColor,1));border-radius:2px;width:100%;height:2px;transition:all .25s ease-in-out;position:absolute;left:0}.hczDnO{margin:auto;top:0;bottom:0}.VmRHI1{bottom:0}.pp3XSB.sqDofR .Z_qSkN{background-color:rgba(var(--lineColorOpen,var(--color_11,color_11)),var(--alpha-lineColorOpen,1))}.pp3XSB.sqDofR .bYgNSB{transform:translateY(10px)translateY(-50%)rotate(-45deg)}.pp3XSB.sqDofR .hczDnO{opacity:0}.pp3XSB.sqDofR .VmRHI1{transform:translateY(-10px)translateY(50%)rotate(45deg)}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_15,color_15)),var(--alpha-bordercolor,1))}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_15,color_15)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_15,color_15)),var(--alpha-bordercolorOpen,1))}.aYkftZ{display:inherit;height:inherit;width:auto}.xFZxP2{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .aYkftZ,body:not(.responsive) .xFZxP2{z-index:var(--above-all-in-container)}.aYkftZ.DJyiS4,.xFZxP2.DJyiS4{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.xFZxP2{touch-action:manipulation}}.uFKDKj{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.uFKDKj.DJyiS4{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.D_1muR{cursor:pointer;width:26px;height:26px}.mV6DGf{opacity:1;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;transition:opacity .5s}.YBeTIR{color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));letter-spacing:5px;font-family:Helvetica-bold;font-size:12px;transition:all .25s;position:absolute;top:50%;left:55%;transform:translate(-50%,-50%)}.g_9F_D,.MMZbiz{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;width:0;height:2px;position:absolute;top:50%;left:50%}.g_9F_D{transition:all .3s;transform:translate(-50%,-50%)rotate(45deg)}.MMZbiz{transition:all .3s .3s;transform:translate(-50%,-50%)rotate(-45deg)}.D_1muR.DJyiS4 .g_9F_D,.D_1muR.DJyiS4 .MMZbiz{opacity:1;width:24px}.D_1muR.DJyiS4 .mV6DGf{opacity:0}.mi7tiY{display:inherit;height:inherit;width:auto}.ajCUJZ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .mi7tiY,body:not(.responsive) .ajCUJZ{z-index:var(--above-all-in-container)}.mi7tiY.WpOYnf,.ajCUJZ.WpOYnf{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ajCUJZ{touch-action:manipulation}}.zBWfOh{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.zBWfOh.WpOYnf{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.VOuQ3v{width:22px;height:22px;display:block;position:relative}.VOuQ3v *,.VOuQ3v :before,.VOuQ3v :after{box-sizing:border-box}.VOuQ3v .Ieo4Vm{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:100%;width:4.4px;height:4.4px;transition:all .2s ease-in-out;position:absolute}.VOuQ3v .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v .Ieo4Vm:nth-of-type(2){transform:translate(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(4){transform:translateY(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(5){transform:translate(8.8px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(6){transform:translate(17.6px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(8){transform:translate(8.8px,17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.VOuQ3v.WpOYnf .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(2){transform:translate(4.4px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(4){transform:translate(4.4px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(6){transform:translate(13.2px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(8){transform:translate(13.2px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.tAZggB{display:inherit;height:inherit;width:auto}.DQvE55{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .tAZggB,body:not(.responsive) .DQvE55{z-index:var(--above-all-in-container)}.tAZggB.Afzcr2,.DQvE55.Afzcr2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.DQvE55{touch-action:manipulation}}.cGMrez{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.cGMrez.Afzcr2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.lPW_G3{width:25px;height:20px;transition:transform .3s ease-in-out}.lPW_G3 span{content:"";background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1px;width:100%;height:3px;transition:width .3s ease-in-out,transform .3s ease-in-out,opacity .3s ease-in-out;display:block;position:relative}.lPW_G3 span:first-child{top:0}.lPW_G3 span:nth-child(2){top:5px}.lPW_G3 span:nth-child(3){top:10px}.Afzcr2.lPW_G3{transform:rotate(180deg)}.Afzcr2.lPW_G3 span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:16px}.Afzcr2.lPW_G3 span:first-child{opacity:0}.Afzcr2.lPW_G3 span:nth-child(2){transform:rotate(45deg)translate(0)translateY(1px)}.Afzcr2.lPW_G3 span:nth-child(3){transform:rotate(-45deg)translate(12px)translateY(1px)}.iT1uR5{display:inherit;height:inherit;width:auto}.H8XzQw{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .iT1uR5,body:not(.responsive) .H8XzQw{z-index:var(--above-all-in-container)}.iT1uR5.xL58zS,.H8XzQw.xL58zS{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.H8XzQw{touch-action:manipulation}}.ph3zmg{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.ph3zmg.xL58zS{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}._2OyzB{width:24px;height:20px;display:block;position:relative}._2OyzB span,._2OyzB span:before,._2OyzB span:after{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:24px;height:2px;margin-top:-1px;position:absolute;top:50%}._2OyzB span:before,._2OyzB span:after{content:"";transition:all .2s}._2OyzB span:before{transform:translateY(-9px)}._2OyzB span:after{transform:translateY(9px)}.xL58zS span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:23px;transform:translate(1px)}.xL58zS span:before{transform-origin:0 100%;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(-35deg)}.xL58zS span:after{transform-origin:0 0;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(35deg)}.ADO5Zm{justify-content:center;align-items:center;display:flex}.nUIszS{transform-origin:100%;opacity:0;transition:all .5s;transform:translate(50%)}.hRUbUe{opacity:1;transform:translate(0%)}._xk4dL{display:inherit;height:inherit;width:auto}.JA1Uo1{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) ._xk4dL,body:not(.responsive) .JA1Uo1{z-index:var(--above-all-in-container)}._xk4dL.suGS6F,.JA1Uo1.suGS6F{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.JA1Uo1{touch-action:manipulation}}.Tnmpzm{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Tnmpzm.suGS6F{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.XYRJOb{flex-direction:column;justify-content:space-around;align-items:center;width:26px;height:26px;transition:transform .2s;display:flex}.wzUA2b{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:30px;height:2px;transition:opacity .2s,transform .2s;transform:rotate(-45deg)}.UEwx1J{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:17px;height:2px;transition:transform .2s,border-color .2s}.UEwx1J.trUHhA{transform:rotate(-45deg)translate(-7px,-3px)}.UEwx1J.rjaPi6{transform:rotate(-45deg)translate(6px,2px)}.XYRJOb.suGS6F .trUHhA{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(9px)rotate(135deg)}.XYRJOb.suGS6F .rjaPi6{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(-9px)rotate(45deg)}.XYRJOb.suGS6F .wzUA2b{opacity:0;transform:rotate(45deg)}.h2hVnU{display:inherit;height:inherit;width:auto}.Iyw1gJ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .h2hVnU,body:not(.responsive) .Iyw1gJ{z-index:var(--above-all-in-container)}.h2hVnU.m_Fqbp,.Iyw1gJ.m_Fqbp{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Iyw1gJ{touch-action:manipulation}}.CnBWJM{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.CnBWJM.m_Fqbp{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.GlYaWf,.KHg340{cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:#0000;width:22px;transition:all .2s ease-in-out;position:relative}.GlYaWf span,.KHg340 span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:#0000;border-radius:2em;width:100%;height:3px;transition:all .2s ease-in-out;position:absolute}.GlYaWf span:nth-child(2),.KHg340 span:nth-child(2){transform:rotate(90deg)}.GlYaWf.m_Fqbp,.m_Fqbp.KHg340{transform:rotate(135deg)}.GlYaWf.m_Fqbp span,.m_Fqbp.KHg340 span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.KHg340{justify-content:center;align-items:center;display:flex}.KHg340 span{left:0}.KHg340 span:nth-child(2){transform:rotate(90deg)}.KHg340.m_Fqbp{transform:rotate(135deg)}.KHg340.m_Fqbp span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.jxFaGF{display:inherit;height:inherit;width:auto}.wu4jpM{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .jxFaGF,body:not(.responsive) .wu4jpM{z-index:var(--above-all-in-container)}.jxFaGF.diaQsa,.wu4jpM.diaQsa{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.wu4jpM{touch-action:manipulation}}.e2jpjV{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.e2jpjV.diaQsa{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.DS2KZ9{cursor:pointer;width:26px;height:20px;display:block;position:relative}.DS2KZ9 div{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:2px;height:2px;transition:transform .45s cubic-bezier(.9,-.6,.3,1.6),width .2s .2s;position:absolute}.DS2KZ9 .MLWS98{transform-origin:50%;width:26px;margin:-2px 0 0;top:11px;left:0}.DS2KZ9 .LTPYyD{transform-origin:0;width:13px;left:0}.DS2KZ9 .VaoqxS{transform-origin:100%;width:18px;bottom:0}.DS2KZ9.diaQsa .MLWS98{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s;transform:rotate(-45deg)translate(0)}.DS2KZ9.diaQsa .LTPYyD{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(4px)rotate(45deg)}.DS2KZ9.diaQsa .VaoqxS{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(9px)rotate(45deg)}.NxdLn2{display:inherit;height:inherit;width:auto}.NvEdZv{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .NxdLn2,body:not(.responsive) .NvEdZv{z-index:var(--above-all-in-container)}.NxdLn2.nq0ZU6,.NvEdZv.nq0ZU6{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.NvEdZv{touch-action:manipulation}}.PSaCAQ{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.PSaCAQ.nq0ZU6{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.IjZy4M{cursor:pointer;position:absolute}.LtWZVJ{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:19px;height:2px;margin-bottom:6px;transition:all .3s cubic-bezier(0,1,.5,1);position:relative}.LtWZVJ:first-child{top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:first-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;left:0;transform:rotate(-45deg)}.LtWZVJ:nth-child(2){opacity:1;right:-5px}.nq0ZU6 .LtWZVJ:nth-child(2){background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;right:0}.LtWZVJ:last-child{margin:0;top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:last-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:-8px;left:0;transform:rotate(45deg)}.nq0ZU6 .LtWZVJ{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wLzWM9{display:inherit;height:inherit;width:auto}.YFvXED{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wLzWM9,body:not(.responsive) .YFvXED{z-index:var(--above-all-in-container)}.wLzWM9.DlhxCV,.YFvXED.DlhxCV{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.YFvXED{touch-action:manipulation}}._G4uuH{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}._G4uuH.DlhxCV{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.rP06EV{width:26px;height:18px}.woYbvh{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:4px;height:2px;transition:all .4s;position:relative}.yawLPy{width:26px;top:0}.DKfMJX{width:26px;top:6px}.Upme0v{width:13px;top:12px}.DlhxCV .yawLPy{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px}.DlhxCV .DKfMJX{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.DlhxCV .Upme0v{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:4px}.fkVx4H{display:inherit;height:inherit;width:auto}.AX0rkT{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .fkVx4H,body:not(.responsive) .AX0rkT{z-index:var(--above-all-in-container)}.fkVx4H.pf7lKG,.AX0rkT.pf7lKG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.AX0rkT{touch-action:manipulation}}.X43m5R{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.X43m5R.pf7lKG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CpmaBD{width:22px;height:22px;margin:auto;position:absolute}.CpmaBD span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:22px;height:2px;transition:transform .2s cubic-bezier(.25,.46,.45,.94),top .2s cubic-bezier(.3,1.4,.7,1) .2s,bottom .2s cubic-bezier(.3,1.4,.7,1) .2s;display:block;position:relative}.CpmaBD span:first-of-type{top:5px}.CpmaBD span:last-of-type{top:13px}.CpmaBD.pf7lKG span{transition:transform .2s cubic-bezier(.25,.46,.45,.94) .2s,top .2s cubic-bezier(.3,1.4,.7,1),bottom .2s cubic-bezier(.3,1.4,.7,1)}.CpmaBD.pf7lKG span:first-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:10px;transform:rotate(45deg)}.CpmaBD.pf7lKG span:last-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;transform:rotate(-45deg)}.L1tNuO{display:inherit;height:inherit;width:auto}.Ae0iFd{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .L1tNuO,body:not(.responsive) .Ae0iFd{z-index:var(--above-all-in-container)}.L1tNuO.tUxMan,.Ae0iFd.tUxMan{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Ae0iFd{touch-action:manipulation}}.Hmm20G{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Hmm20G.tUxMan{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.AuZIx7{width:22px;height:19px;position:absolute}.BQuno6{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:3px;transition:all .25s;position:absolute}.oP04HO{width:50%;top:0}.p_ySCY{width:100%;top:8px}.u6J0wc{width:50%;bottom:0}.P03akj{left:0}.WBsrGG{right:0}.oP04HO.BQuno6.P03akj{transform-origin:0 0}.oP04HO.BQuno6.WBsrGG{transform-origin:100% 0}.u6J0wc.BQuno6.P03akj{transform-origin:0 100%}.u6J0wc.BQuno6.WBsrGG{transform-origin:100% 100%}.AuZIx7.tUxMan .oP04HO.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,2px)rotate(45deg)}.AuZIx7.tUxMan .oP04HO.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,2px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,-1px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,-1px)rotate(45deg)}.AuZIx7.tUxMan .p_ySCY.BQuno6{transform:scaleX(0)}.p2xU2j{display:inherit;height:inherit;width:auto}.tB06Km{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .p2xU2j,body:not(.responsive) .tB06Km{z-index:var(--above-all-in-container)}.p2xU2j.sb2ja2,.tB06Km.sb2ja2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.tB06Km{touch-action:manipulation}}.bSvkl8{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.bSvkl8.sb2ja2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CT0UM6{width:22px;height:20px;position:absolute}.i2Blxa{background-color:rgba(var(--lineColor,var(--color_15,color_15)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.NL9V92{width:100%;top:0}.xp7A7t{width:100%;top:9px}.dMTSgd{width:100%;bottom:0}.NL9V92.i2Blxa{transform-origin:0 0}.dMTSgd.i2Blxa{transform-origin:0 100%}.CT0UM6.sb2ja2 .NL9V92.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,2px)rotate(45deg)}.CT0UM6.sb2ja2 .dMTSgd.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,-1px)rotate(-45deg)}.CT0UM6.sb2ja2 .xp7A7t.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.PzP3Ka{cursor:pointer;opacity:0;visibility:hidden;display:var(--display);--display:flex;transition:visibility 0s .5s,opacity .5s}.PzP3Ka .XdXNO7{width:100%;height:100%;opacity:var(--icon-opacity,1)}.PzP3Ka .XdXNO7 svg{overflow:visible}.z7UpAt{opacity:1;visibility:visible;z-index:var(--above-all-z-index);transition-delay:0s;position:relative}</style> | |
| 182 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VectorImage_VectorButton].8d19a428.min.css">.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}</style> | |
| 183 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextInput].ff8b5cd8.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nbaJII:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nbaJII:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nbaJII.BOzGbm[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;-moz-appearance:none;margin:0}.nbaJII[disabled]{pointer-events:none}.Q1MQrw{min-height:25px;display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);flex-direction:column;position:relative}.Q1MQrw .nuFEsg{height:var(--inputHeight);position:relative}.Q1MQrw .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Q1MQrw .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;max-width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");min-height:var(--inputHeight);border-style:solid;width:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Q1MQrw .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;width:100%}.Q1MQrw .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Q1MQrw .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Q1MQrw .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Q1MQrw:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Q1MQrw.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw .QyrExM{display:none}.Q1MQrw.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Q1MQrw.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Yz8ZCc{display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);justify-content:var(--align,start);flex-direction:column}.Yz8ZCc .nuFEsg{flex-direction:column;flex:1;display:flex;position:relative}.Yz8ZCc .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Yz8ZCc .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");border-style:solid;flex:1;min-height:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Yz8ZCc .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield}.Yz8ZCc .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Yz8ZCc .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Yz8ZCc .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Yz8ZCc:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Yz8ZCc.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc .QyrExM{display:none}.Yz8ZCc.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Yz8ZCc.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 184 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextAreaInput].1476131e.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.fRbOAc{text-align:var(--align);direction:var(--direction)}.fRbOAc .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);min-width:100%;max-width:100%;height:var(--inputHeight);direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");margin:0;padding-top:.75em;display:block;overflow-y:auto;box-sizing:border-box!important}.fRbOAc .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .fRbOAc .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.fRbOAc .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.fRbOAc .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.fRbOAc .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.fRbOAc:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.fRbOAc.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc .P3lL3X{display:none}.fRbOAc.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.fRbOAc.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.YbkIHV{display:var(--display);--display:flex;text-align:var(--align);direction:var(--direction);flex-direction:column}.YbkIHV .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;width:100%;height:100%;direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");flex:1;margin:0;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);overflow-y:auto;box-sizing:border-box!important}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .YbkIHV .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.YbkIHV .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.YbkIHV .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.YbkIHV .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.YbkIHV .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.YbkIHV:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.YbkIHV.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV .P3lL3X{display:none}.YbkIHV.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.YbkIHV.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 185 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInput].2af36bd9.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}.alMCqG{opacity:0;pointer-events:none;justify-content:center;width:100%;height:0;display:flex}.vkQCnw{max-width:0;max-height:0;overflow:hidden}.l5LWAe .qKjd3E,.l5LWAe .Hae_iI:invalid{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.qa3D4M .Hae_iI:disabled{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.qa3D4M{display:var(--display);--display:flex;flex-direction:column}.qa3D4M .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight)}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .qa3D4M .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.qa3D4M .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.qa3D4M .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.qa3D4M .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}.qa3D4M .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.qa3D4M .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.qa3D4M .Hae_iI:disabled+.R8pbpf{border:none}.qa3D4M .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.qa3D4M .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.nYCc7p{display:var(--display);--display:flex;flex-direction:column}.nYCc7p .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight);border-width:1px 0;border-color:#0003}.nYCc7p .Hae_iI:hover:not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nYCc7p .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nYCc7p .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nYCc7p .Hae_iI:focus{border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.nYCc7p .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.nYCc7p .Hae_iI:disabled+.R8pbpf{border:none}.nYCc7p .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.nYCc7p .UuIgyh{flex:1;position:relative}.nYCc7p .R8pbpf{border-style:solid;border-color:#0003;border-width:var(--arrowBorderWidth,0)}.l5LWAe .Hae_iI:invalid,.l5LWAe .qKjd3E{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.nYCc7p .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.uvl2Tw{text-align:var(--align);text-align-last:var(--align);direction:var(--direction)}.UuIgyh{direction:var(--inputDirection)}.Hae_iI{direction:var(--inputDirection);text-align-last:var(--inputAlign,"inherit");border-radius:var(--corvid-border-radius,var(--rd,5px));-webkit-appearance:none;-moz-appearance:none;box-shadow:var(--shd,0 0 0 #0000);background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_8,color_8)),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,136,136,136)));cursor:pointer;text-overflow:ellipsis;white-space:nowrap;font:var(--fnt);border-style:solid;margin:0;padding-inline-start:var(--textPaddingInput_start);padding-inline-end:var(--textPaddingInput_end);display:block;position:relative}.Hae_iI option{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.Hae_iI option.QfNCKR{color:rgb(var(--txt2,var(--color_15,color_15)));display:none}.Hae_iI.ztWMYz{color:rgb(var(--txt_placeholder,136,136,136));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Hae_iI::placeholder{color:rgb(var(--txt_placeholder,136,136,136))}.Hae_iI:-moz-focusring{color:#0000;text-shadow:0 0 #000}.Hae_iI::-ms-expand{display:none}.Hae_iI:focus::-ms-value{background:0 0}.Hae_iI:disabled+.R8pbpf .ue5GsJ{fill:rgb(var(--txtd,255,255,255))}.R8pbpf{pointer-events:none;top:0;bottom:0;box-sizing:border-box;height:inherit;align-items:center;padding-left:20px;padding-right:20px;display:flex;position:absolute;inset-inline-start:var(--arrowInsetInlineStart);inset-inline-end:var(--arrowInsetInlineEnd)}.R8pbpf .XiOJeV{width:12px}.R8pbpf .XiOJeV .ue5GsJ{height:100%;fill:rgba(var(--arrowColor,var(--color_12,color_12)),var(--alpha-arrowColor,1))}.R8pbpf .XiOJeV.xlNOHs{transform:rotate(180deg)}.lo03zG{display:none}.VYqX7C .lo03zG{font:var(--fntlbl);text-align:var(--labelAlign,"inherit");direction:var(--labelDirection);color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.DCgvoa .lo03zG:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Y_w4j4{display:var(--display);--display:flex;flex-direction:column}.Y_w4j4 .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI{box-sizing:border-box;flex:1;align-items:center;width:100%;display:flex}.Y_w4j4 .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Y_w4j4 .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .Y_w4j4 .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.Y_w4j4 .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.Y_w4j4 .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf{border:none}</style> | |
| 186 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_Default].24db2c41.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 187 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LanguageSelector].1814237c.min.css">.d53IyJ .CjkVyx>button,.d53IyJ .drWYz5 .SVOqp3,.drWYz5 .d53IyJ .SVOqp3,.d53IyJ .drWYz5 .clBgzu,.drWYz5 .d53IyJ .clBgzu{justify-content:flex-start}.kyRJB9 .CjkVyx>button,.kyRJB9 .drWYz5 .SVOqp3,.drWYz5 .kyRJB9 .SVOqp3,.kyRJB9 .drWYz5 .clBgzu,.drWYz5 .kyRJB9 .clBgzu{justify-content:center}.OIbSKK .CjkVyx>button,.OIbSKK .drWYz5 .SVOqp3,.drWYz5 .OIbSKK .SVOqp3,.OIbSKK .drWYz5 .clBgzu,.drWYz5 .OIbSKK .clBgzu{direction:rtl}.CjkVyx .z6NAhm img,.drWYz5 .vDrjru .gEOfRC img,.drWYz5 .clBgzu .gEOfRC img{height:var(--iconSize);display:block}.drWYz5 .SVOqp3.tJr0E9,.CjkVyx>button:hover,.drWYz5 .SVOqp3:hover,.drWYz5 .clBgzu:hover{color:rgb(var(--itemTextColorHover,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorHover,var(--color_4,color_4)),var(--alpha-backgroundColorHover,1))}.drWYz5 .SVOqp3.tJr0E9 path,.CjkVyx>button:hover path,.drWYz5 .SVOqp3:hover path,.drWYz5 .clBgzu:hover path{fill:rgb(var(--itemTextColorHover,var(--color_1,color_1)))}.CjkVyx>button:active,.drWYz5 .SVOqp3:active,.drWYz5 .clBgzu:active,.CjkVyx>button.nOw6jW,.drWYz5 .nOw6jW.SVOqp3,.drWYz5 .nOw6jW.clBgzu{color:rgb(var(--itemTextColorActive,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorActive,var(--color_4,color_4)),var(--alpha-backgroundColorActive,1));cursor:default}.CjkVyx>button:active path,.drWYz5 .SVOqp3:active path,.drWYz5 .clBgzu:active path,.CjkVyx>button.nOw6jW path,.drWYz5 .nOw6jW.SVOqp3 path,.drWYz5 .nOw6jW.clBgzu path{fill:rgb(var(--itemTextColorActive,var(--color_1,color_1)))}.xDaLqh{width:var(--width);height:100%}body.device-mobile-optimized .xDaLqh,:host(.device-mobile-optimized) .xDaLqh{display:var(--display);--display:table}.xDaLqh.uEjKHu{opacity:.38}.xDaLqh.uEjKHu *,.xDaLqh.uEjKHu:active{pointer-events:none}.drWYz5 .SVOqp3,.drWYz5 .clBgzu{height:calc(var(--height) - var(--borderWidth,1px)*2);align-items:center;display:flex}.drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .clBgzu .YvJYK8{line-height:0}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{position:absolute;right:0}.OIbSKK .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .OIbSKK .SVOqp3 .YvJYK8,.OIbSKK .drWYz5 .clBgzu .YvJYK8,.drWYz5 .OIbSKK .clBgzu .YvJYK8,.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{margin:0 20px 0 14px}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8,.d53IyJ .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .d53IyJ .SVOqp3 .YvJYK8,.d53IyJ .drWYz5 .clBgzu .YvJYK8,.drWYz5 .d53IyJ .clBgzu .YvJYK8{margin:0 14px 0 20px}.d53IyJ .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .d53IyJ .SVOqp3 .GZ9kig,.d53IyJ .drWYz5 .clBgzu .GZ9kig,.drWYz5 .d53IyJ .clBgzu .GZ9kig,.OIbSKK .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .OIbSKK .SVOqp3 .GZ9kig,.OIbSKK .drWYz5 .clBgzu .GZ9kig,.drWYz5 .OIbSKK .clBgzu .GZ9kig{flex-grow:1}.kyRJB9 .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .kyRJB9 .SVOqp3 .GZ9kig,.kyRJB9 .drWYz5 .clBgzu .GZ9kig,.drWYz5 .kyRJB9 .clBgzu .GZ9kig{flex-shrink:0;width:20px}.drWYz5 .SVOqp3 svg,.drWYz5 .clBgzu svg{width:12px;height:auto}.drWYz5 .SVOqp3 path,.drWYz5 .clBgzu path{fill:rgb(var(--itemTextColor,var(--color_9,color_9)))}.drWYz5 .vDrjru,.drWYz5 .clBgzu{border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));overflow:hidden}.drWYz5 .vDrjru .gEOfRC,.drWYz5 .clBgzu .gEOfRC{margin:0 -6px 0 14px}.kyRJB9 .drWYz5 .vDrjru .gEOfRC,.drWYz5 .kyRJB9 .vDrjru .gEOfRC,.kyRJB9 .drWYz5 .clBgzu .gEOfRC,.drWYz5 .kyRJB9 .clBgzu .gEOfRC{margin:0 4px}.OIbSKK .drWYz5 .vDrjru .gEOfRC,.drWYz5 .OIbSKK .vDrjru .gEOfRC,.OIbSKK .drWYz5 .clBgzu .gEOfRC,.drWYz5 .OIbSKK .clBgzu .gEOfRC{margin:0 14px 0 -6px}.xDaLqh{height:100%}.drWYz5{cursor:pointer;width:var(--width);font:var(--itemFont,var(--font_0));color:rgb(var(--itemTextColor,var(--color_9,color_9)));height:100%;position:relative}.drWYz5 *{box-sizing:border-box}.drWYz5 .clBgzu{z-index:1;height:100%;position:relative}.FDTMKK.drWYz5 .clBgzu{display:none!important}.drWYz5 .yHM59W{text-overflow:ellipsis;white-space:nowrap;margin:0 0 0 14px;overflow:hidden}.kyRJB9 .drWYz5 .yHM59W{margin:0 4px}.OIbSKK .drWYz5 .yHM59W{margin:0 14px 0 0}.drWYz5 .vDrjru{z-index:1;min-width:100%;max-height:calc(var(--height)*5.5);flex-direction:column;display:flex;position:absolute;overflow-y:auto}.drWYz5 .vDrjru:not(.jLVp_T){--itemBorder:1px 0 0;top:0}.drWYz5 .vDrjru.jLVp_T{--itemBorder:0 0 1px;flex-direction:column-reverse;bottom:0}.FDTMKK.drWYz5 .vDrjru svg{transform:rotate(180deg)}.drWYz5.FDTMKK{z-index:47}.drWYz5:not(.FDTMKK) .vDrjru{display:none}.drWYz5 .SVOqp3{flex-shrink:0}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .drWYz5 .SVOqp3:focus{outline-offset:1px;outline-offset:-2px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.drWYz5 .SVOqp3:focus{box-shadow:none;outline-offset:-3px!important;outline:3px solid highlight!important}}.drWYz5 .SVOqp3:not(:first-child){--force-state-metadata:false;border-width:var(--itemBorder);border-style:solid;border-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.Q0JjLQ{height:100%}body.device-mobile-optimized .Q0JjLQ,:host(.device-mobile-optimized) .Q0JjLQ{width:100%;display:table}.CjkVyx{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);height:100%;color:rgb(var(--itemTextColor,var(--color_9,color_9)));border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);font:var(--itemFont,var(--font_0));display:flex}.CjkVyx,.CjkVyx *{box-sizing:border-box}.CjkVyx>button{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));height:100%;color:inherit;cursor:pointer;font:inherit;flex:auto;align-items:center;display:flex}.CjkVyx>button:not(:first-child){--force-state-metadata:false;border-left-style:solid;border-left-width:1px;border-left-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.CjkVyx>button:first-child,.CjkVyx>button:last-child{border-radius:var(--borderRadius,5px)}.CjkVyx>button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.CjkVyx>button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.OIbSKK .CjkVyx .z6NAhm{margin:0 14px 0 -6px}.kyRJB9 .CjkVyx .z6NAhm{margin:0 4px}.d53IyJ .CjkVyx .z6NAhm{margin:0 -6px 0 14px}.CjkVyx ._L5t7V{margin:0 14px}.kyRJB9 .CjkVyx ._L5t7V{margin:0 4px}._1Ry_8 select{opacity:0;z-index:1;width:100%;height:100%;position:absolute;top:0;left:0}._1Ry_8 .XDBTy_{display:none}</style> | |
| 188 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SiteButton_WrappingButton].339c1169.min.css">.ZhVEJq{touch-action:manipulation}.PoVCDy{text-align:initial;box-sizing:border-box;align-items:center;justify-content:var(--label-align);width:max-content;min-width:100%;display:flex}@media (forced-colors:active){.PoVCDy{outline-offset:0px;outline:2px solid buttontext}.PoVCDy:hover{outline-offset:1px;outline:3px solid highlight}.PoVCDy:focus,.PoVCDy:focus-visible{outline-offset:1px;outline:3px solid highlight!important}[aria-disabled=true] .PoVCDy{outline:none}}.PoVCDy:before{content:"";max-width:var(--margin-start,0px);flex-grow:1;align-self:stretch}.PoVCDy:after{content:"";max-width:var(--margin-end,0px);flex-grow:1;align-self:stretch}.lIkFMb{display:var(--display);--display:grid;grid-template-columns:minmax(0,1fr)}.lIkFMb .PoVCDy{border-radius:var(--corvid-border-radius,var(--rd,0));transition:var(--trans1,border-color .4s ease 0s,background-color .4s ease 0s);box-shadow:var(--shd,0 1px 4px #0009);padding-left:var(--horizontalPadding,0);padding-right:var(--horizontalPadding,0);padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);width:auto;position:relative}.lIkFMb .PoVCDy:before{width:var(--margin-start,0px);flex-shrink:0}.lIkFMb .PoVCDy:after{width:var(--margin-end,0px);flex-shrink:0}.lIkFMb .Gf1CuA{font:var(--fnt,var(--font_5));transition:var(--trans2,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));position:relative}.lIkFMb[aria-disabled=false] .PoVCDy{background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17,color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)))var(--corvid-border-width,var(--brw,0));cursor:pointer!important}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .PoVCDy,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .Gf1CuA,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .PoVCDy,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .Gf1CuA,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}.lIkFMb[aria-disabled=true] .PoVCDy{background-color:var(--corvid-disabled-background-color,rgba(var(--bgd,204,204,204),var(--alpha-bgd,1)));border-color:var(--corvid-disabled-border-color,rgba(var(--brdd,204,204,204),var(--alpha-brdd,1)))}.lIkFMb[aria-disabled=true] .Gf1CuA{color:var(--corvid-disabled-color,rgb(var(--txtd,255,255,255)))}.lIkFMb .Gf1CuA{text-align:var(--label-text-align)}</style> | |
| 189 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VerticalLine_VerticalSolidLine].81222752.min.css">.n8bAtI .zACo20{border-left:var(--lnw,3px)solid rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));height:100%}</style> | |
| 190 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LinkBar_Responsive].9d761e03.min.css">.eAOB3n{direction:var(--direction)}.eAOB3n .tDHQQD .VGXFRO{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.eAOB3n .tDHQQD .VGXFRO:last-child{margin-block:0;margin-inline:0}.eAOB3n .tDHQQD .VGXFRO .FvIvPq{display:block}.eAOB3n .tDHQQD .VGXFRO .FvIvPq .IKlnHc{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.eAOB3n .tDHQQD .VGXFRO .FvIvPq{outline-offset:0;outline:2px solid buttontext}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:hover{outline-offset:-2px;outline:3px solid highlight}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus,.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.eAOB3n{display:var(--display);--display:initial;width:-moz-fit-content;width:fit-content}.eAOB3n .tDHQQD{flex-direction:var(--flex-direction);display:flex}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}</style> | |
| 191 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_menu.d7f69225.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.umBpNq{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.umBpNq:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.umBpNq:not(:disabled):hover,.umBpNq:not(:disabled)[aria-pressed=true],.umBpNq:not(:disabled)[aria-selected=true],.umBpNq:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.umBpNq:not(:disabled):focus,.umBpNq:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.umBpNq.b5wzzG:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.umBpNq.IdBKRQ:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.umBpNq:hover,.umBpNq [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.umBpNq.olGtjp:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.umBpNq.H4kLBj:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.umBpNq:disabled,.umBpNq [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.umBpNq.jRfRxf:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.umBpNq.yNUpJa:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.xuJAxK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.umBpNq.EOdpK9:not(:hover):not(:disabled) .xuJAxK{color:var(--corvid-color,var(--color))}.umBpNq:hover .xuJAxK,.umBpNq [data-preview=hover] .xuJAxK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.umBpNq.wCtkkB:hover:not(:disabled) .xuJAxK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.umBpNq:disabled .xuJAxK,.umBpNq [data-preview=disabled] .xuJAxK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.umBpNq.GsVIhZ:disabled:not(:hover) .xuJAxK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.wVQcpq{box-sizing:border-box;color:#000;text-decoration:none}.NZHz_8{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.GvoWb8{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.umBpNq.LwoP3t:not(:hover):not(:disabled) .GvoWb8{fill:var(--corvid-icon-color,var(--icon-color))}.umBpNq:hover .GvoWb8,.umBpNq [data-preview=hover] .GvoWb8{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.umBpNq.Sbl9_q:hover:not(:disabled) .GvoWb8{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.umBpNq:disabled .GvoWb8,.umBpNq [data-preview=disabled] .GvoWb8{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.umBpNq.ET2QWr:disabled:not(:hover) .GvoWb8{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.GvoWb8>span,.GvoWb8 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.GvoWb8,.GvoWb8 svg,.GvoWb8 svg *{fill:currentColor!important;stroke:currentColor!important}}.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}.gDZ5xr{border-radius:var(--overflow-wrapper-border-radius)}.ZBf0K1{opacity:var(--hamburger-menu-container-initial-opacity)}.ZBf0K1>*{transform:var(--hamburger-menu-container-initial-transform)}.ZBf0K1[data-animation-name=revealFromRight]{clip-path:inset(0)}.ZBf0K1[data-animation-name=revealFromRight]>*{transition:transform .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterActive]>*,.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterDone]>*{transform:translate(0)}.ZBf0K1[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterActive],.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.fy6eJk{--container-overflow-y:hidden}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1{clip-path:inset(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1>*{transition:transform .4s cubic-bezier(.645,.045,.355,1);transform:translate(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=fadeIn]:checked) .ZBf0K1{opacity:1;transition:opacity .4s cubic-bezier(.645,.045,.355,1)}[data-prehydration]:has([data-hamburger-toggle]:checked) .ZBf0K1{z-index:2;position:relative}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1{opacity:1}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1>*{transform:translate(0)}.HamburgerMenuContainer502174924__root{-archetype:paintBox;box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.Qkigz2{box-sizing:border-box;top:0;background:var(--background);border:var(--border);border-radius:var(--border-radius);width:100%;height:100%;box-shadow:var(--box-shadow);position:absolute;inset-inline-start:0}.NxO5nt{flex-direction:var(--container-flex-direction);flex-grow:var(--menu-items-flex-grow);align-items:center;gap:var(--menu-items-main-axis-gap);flex-wrap:nowrap;display:flex}.fYThT1{height:var(--menu-item-wrapper-height);display:var(--item-wrapper-display);width:var(--item-wrapper-width);justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow)}.FBAIyH{width:var(--item-width);box-sizing:border-box;align-items:center;height:100%;display:flex;position:relative}.FBAIyH a{color:inherit}.FBAIyH.QFOPOz{border-left:var(--item-border-left);border-right:var(--item-border-right);border-radius:var(--item-border-radius);padding-left:var(--item-padding-left,var(--item-horizontal-padding));padding-right:var(--item-padding-right,var(--item-horizontal-padding))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8{background:var(--item-hover-background,var(--item-background));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow));border-top:var(--item-hover-border-top,var(--item-border-top));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH.QFOPOz,.FBAIyH[data-interactive=true]:hover.QFOPOz,.FBAIyH[data-preview=hover].QFOPOz,.FBAIyH.BjD2X8.QFOPOz{border-left:var(--item-hover-border-left,var(--item-border-left));border-right:var(--item-hover-border-right,var(--item-border-right));border-radius:var(--item-hover-border-radius,var(--item-border-radius))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .ijO_Jr,.FBAIyH[data-interactive=true]:hover .ijO_Jr,.FBAIyH[data-preview=hover] .ijO_Jr,.FBAIyH.BjD2X8 .ijO_Jr{color:var(--item-hover-color,var(--item-color));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration));text-shadow:var(--item-hover-text-outline,var(--item-text-outline)),var(--item-hover-text-shadow,var(--item-text-shadow));background-color:var(--item-hover-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH path,.FBAIyH[data-interactive=true]:hover path,.FBAIyH[data-preview=hover] path,.FBAIyH.BjD2X8 path{fill:var(--item-hover-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH[data-selected],.FBAIyH[data-preview=selected],.FBAIyH.aH0Njg{background:var(--item-selected-background,var(--item-background));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow));border-top:var(--item-selected-border-top,var(--item-border-top));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom))}.FBAIyH[data-selected].QFOPOz,.FBAIyH[data-preview=selected].QFOPOz,.FBAIyH.aH0Njg.QFOPOz{border-left:var(--item-selected-border-left,var(--item-border-left));border-right:var(--item-selected-border-right,var(--item-border-right));border-radius:var(--item-selected-border-radius,var(--item-border-radius))}.FBAIyH[data-selected] .ijO_Jr,.FBAIyH[data-preview=selected] .ijO_Jr,.FBAIyH.aH0Njg .ijO_Jr{color:var(--item-selected-color,var(--item-color));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration));text-shadow:var(--item-selected-text-outline,var(--item-text-outline)),var(--item-selected-text-shadow,var(--item-text-shadow));background-color:var(--item-selected-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}.FBAIyH[data-selected] path,.FBAIyH[data-preview=selected] path,.FBAIyH.aH0Njg path{fill:var(--item-selected-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH>a:before{content:"";position:absolute;inset:0}@media (forced-colors:active){.FBAIyH{outline-offset:-1px;outline:2px solid buttontext}.FBAIyH .RXCM8H{color:buttontext}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8,.FBAIyH[data-selected],.FBAIyH[data-preview=selected]{outline-offset:-2px;outline:3px solid highlight}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .RXCM8H,.FBAIyH[data-interactive=true]:hover .RXCM8H,.FBAIyH[data-preview=hover] .RXCM8H,.FBAIyH.BjD2X8 .RXCM8H,.FBAIyH[data-selected] .RXCM8H,.FBAIyH[data-preview=selected] .RXCM8H{color:highlight}.FBAIyH:focus-within{outline-offset:-2px!important;outline:3px solid highlight!important}.FBAIyH:focus-within .RXCM8H{color:highlight}.FBAIyH>a:focus,.FBAIyH>a:focus-visible{outline:none!important}.FBAIyH .RXCM8H:focus,.FBAIyH .RXCM8H:focus-visible{outline-offset:1px!important;outline:3px solid highlight!important}}.ijO_Jr{direction:var(--item-direction);background-color:var(--item-text-highlight);white-space:nowrap}.rpHatU{--computed-anchor:var(--anchor,var(--dropdown-anchor));--computed-align:var(--align,var(--dropdown-align));--computed-space-above:var(--space-above,var(--dropdown-space-above));--computed-horizontal-margin:var(--horizontal-margin,var(--dropdown-horizontal-margin));--before-el-top:calc(-1*var(--computed-space-above));visibility:hidden;z-index:var(--above-all-z-index);margin-top:var(--computed-space-above)!important;inset:auto!important;left:var(--dropdown-left)!important;display:none!important;position:absolute!important}.rpHatU:before{content:"";height:var(--computed-space-above);top:var(--before-el-top);width:100%;display:block;position:absolute}.rpHatU[data-open=true]{visibility:visible}.NxO5nt[data-open=calculating] .rpHatU,.NxO5nt[data-open=true] .rpHatU{display:grid!important}.RXCM8H{cursor:pointer;display:var(--item-icon-display,flex)}.RXCM8H svg{height:var(--item-icon-size);width:var(--item-icon-size)}.RXCM8H path{fill:var(--item-icon-color,currentcolor)}.RXCM8H.wWora8:before{content:"";position:absolute;inset:0}.RXCM8H.G_xd9z{display:var(--sr-only-item-icon-display,flex);clip:rect(0 0 0 0);clip-path:inset(50%);position:absolute}.RXCM8H.G_xd9z:focus,.RXCM8H.G_xd9z:active{clip-path:unset;position:static}.kbbiAh[data-open]{transform:rotate(-180deg)}.iincGk{display:var(--vertical-expand-collapse-display,var(--item-icon-display,flex))}.RXCM8H:not(.wWora8):not(.G_xd9z){position:relative}.RXCM8H:not(.wWora8):before{content:"";height:max(100%,24px);width:max(var(--item-icon-size),24px);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@media (forced-colors:active){.RXCM8H,.RXCM8H svg,.RXCM8H svg *,.RXCM8H path{fill:currentColor!important;stroke:currentColor!important}}.JFWRCg{display:var(--horizontal-menu-dropdown-display,block)}.lmsYvh{display:var(--vertical-menu-dropdown-display);margin-top:calc(var(--menu-items-main-axis-gap,0)*-1);width:100%}.t_wvYI{--computed-space-above:var(--space-above,var(--dropdown-space-above));visibility:var(--vertical-dropdown-visibility);height:var(--vertical-dropdown-height);margin-top:var(--vertical-dropdown-height,var(--computed-space-above))!important}.Rfl5du .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}.BDrALc{display:var(--divider-display,none);border-left:var(--horizontal-menu-item-divider,none);border-top:var(--vertical-menu-item-divider,none);align-self:stretch}.NxO5nt:last-child .BDrALc{display:none}.jGiW2t{display:contents}.twZzaW{display:none}.WCS58T{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}[data-prehydration] [data-submenu-toggle]:checked~.lmsYvh .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}[data-prehydration] .jGiW2t{z-index:1;display:flex;position:relative}[data-prehydration] .jGiW2t .RXCM8H{pointer-events:none}[data-prehydration] .twZzaW{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}[data-prehydration] .twZzaW:before{content:"";min-width:44px;min-height:44px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}[data-prehydration] [data-submenu-toggle]:checked~.fYThT1 .kbbiAh{transform:rotate(-180deg)}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=screen]{visibility:visible;left:var(--computed-horizontal-margin)!important;width:calc(100vw - 2*var(--computed-horizontal-margin))!important;display:grid!important;position:fixed!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuStretched]{visibility:visible;width:100%!important;display:grid!important;left:0!important}[data-prehydration] .NxO5nt:hover{anchor-name:--ee-hovered-menu-item}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth]{visibility:visible;display:grid!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{left:0!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:0!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:50%!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:0!important}@supports (anchor-name:--a){[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{width:max-content!important;min-width:anchor-size(--ee-hovered-menu-item width)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=start],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:anchor(--ee-hovered-menu-item left)!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=center],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:anchor(--ee-hovered-menu-item center)!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=end],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:anchor(--ee-hovered-menu-item right)!important}}.cVnJ7u{justify-content:var(--item-text-align);background:var(--item-background);box-shadow:var(--item-box-shadow);border-top:var(--item-border-top);border-bottom:var(--item-border-bottom);padding-top:var(--item-padding-top,var(--item-vertical-padding));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding));gap:var(--spacing-between-label-and-dropdown-icon)}.GPIJZi{font:var(--item-font,font_6);color:var(--item-color);text-decoration-line:var(--item-text-decoration);text-transform:var(--item-text-transform);text-shadow:var(--item-text-outline),var(--item-text-shadow);letter-spacing:var(--item-letter-spacing);line-height:var(--item-line-height)}.Y4Cdvx [data-part=menu-item]{--underline-scale:scaleX(0);--wash-scale:scaleX(0);--circle-clip-path:circle(0%);--dropdown-icon-transform:rotate(0);--bullet-translate:translateX(-150%);--bullet-opacity:0;--wave-tarnslate:scaleY(0)}.Y4Cdvx [data-part=menu-item]:not([data-animation-name=none]) [data-part=dropdown-icon]{transition-property:transform;transition-duration:.4s}.Y4Cdvx [data-part=menu-item] [data-part=label]:after,.Y4Cdvx [data-part=menu-item] [data-part=dropdown-item-label]:after{content:"";width:100%;height:1px;display:block;display:var(--item-label-underline-display,block);background-color:currentColor;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item] [data-part=label]:before{content:"•"/"";display:var(--item-label-bullet-display,inline-block);opacity:0;padding-inline-end:3px}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:after{display:var(--item-selected-label-underline-display,block);transform:scaleX(1)}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:before{opacity:1}.Y4Cdvx [data-part=menu-item][data-open=true],.Y4Cdvx [data-part=menu-item][data-animation-state=enterActive],.Y4Cdvx [data-part=menu-item][data-animation-state=enterDone]{--underline-scale:scaleX(1);--wash-scale:scaleX(1);--circle-clip-path:circle(100%);--dropdown-icon-transform:rotate(-540deg);--bullet-translate:translateX(0%);--bullet-opacity:1;--wave-tarnslate:scaleY(1.5)}.Y4Cdvx [data-part=menu-item] [data-selected]{--underline-scale:scaleX(1);--wash-scale:scaleX(0);--bullet-translate:translateX(0%);--bullet-opacity:1}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=label]:after{transform-origin:0;transform:var(--underline-scale);transition:transform .3s}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item-label]:after{transform-origin:0;transition-property:transform;transition-duration:.3s;display:block;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item]:hover [data-part=dropdown-item-label]:after{transform:scaleX(1)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);transform-origin:0;transform:var(--wash-scale);transition:transform .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);clip-path:var(--circle-clip-path);transition:clip-path .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=dropdown-icon]{transform:var(--dropdown-icon-transform)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);height:135%;inset:0;bottom:unset;transform-origin:bottom;transform:var(--wave-tarnslate);transition:transform .4s;display:block;position:absolute;-webkit-mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100% 100%;mask-size:100% 100%}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=bullet] [data-part=label]:before{transform:var(--bullet-translate);opacity:var(--bullet-opacity);transition-duration:.3s;display:inline-block}.Y4Cdvx{width:100%;height:100%;overflow-x:var(--container-overflow-x,unset);overflow-y:var(--container-overflow-y,visible);scrollbar-width:none;box-sizing:border-box;display:flex}.Y4Cdvx.VxjUGd{border-left:var(--container-border-left);border-right:var(--container-border-right);border-radius:var(--container-border-radius);padding-right:var(--container-padding-right,0);padding-left:var(--container-padding-left,0)}.tn8ZSa{direction:var(--direction)}.OD_PyT{width:100%;min-width:-moz-fit-content;height:auto;justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow);flex-direction:var(--container-flex-direction);flex-wrap:var(--container-flex-wrap,unset);scrollbar-width:none;row-gap:var(--menu-items-row-gap);column-gap:var(--menu-items-column-gap);min-width:fit-content;display:flex;overflow-x:visible}.YUEUpV{background:var(--container-background);box-shadow:var(--container-box-shadow);border-top:var(--container-border-top);border-bottom:var(--container-border-bottom);padding-top:var(--container-padding-top,0);padding-bottom:var(--container-padding-bottom,0)}.PnnIOa{cursor:pointer;pointer-events:auto;visibility:hidden;transform:var(--scroll-button-transform);--icon-rotation:var(--scroll-button-icon-rotation-deg,calc(var(--scroll-button-icon-rotation)*1deg));--icon-rotation-hover:var(--scroll-button-hover-icon-rotation-deg,calc(var(--scroll-button-hover-icon-rotation)*1deg));justify-content:center;align-items:center;display:flex;overflow:hidden}.PnnIOa.hcRPG3{border-left:var(--scroll-button-border-left);border-right:var(--scroll-button-border-right);border-radius:var(--scroll-button-border-radius)}.PnnIOa.hcRPG3 .KEUNmX{padding-right:var(--scroll-button-padding-right,0);padding-left:var(--scroll-button-padding-left,0)}.PnnIOa.Od2sOd .KEUNmX{padding-inline-start:var(--scroll-button-padding-inline-start,0);padding-inline-end:var(--scroll-button-padding-inline-end,0)}.PnnIOa:hover,.PnnIOa[data-preview=hover]{background:var(--scroll-button-hover-background,var(--scroll-button-background));box-shadow:var(--scroll-button-hover-box-shadow,var(--scroll-button-box-shadow));border-top:var(--scroll-button-hover-border-top,var(--scroll-button-border-top));border-bottom:var(--scroll-button-hover-border-bottom,var(--scroll-button-border-bottom))}.PnnIOa:hover.hcRPG3,.PnnIOa[data-preview=hover].hcRPG3{border-left:var(--scroll-button-hover-border-left,var(--scroll-button-border-left));border-right:var(--scroll-button-hover-border-right,var(--scroll-button-border-right));border-radius:var(--scroll-button-hover-border-radius,var(--scroll-button-border-radius))}.PnnIOa:hover.hcRPG3 .KEUNmX,.PnnIOa[data-preview=hover].hcRPG3 .KEUNmX{padding-right:var(--scroll-button-hover-padding-right,var(--scroll-button-padding-right,0));padding-left:var(--scroll-button-hover-padding-left,var(--scroll-button-padding-left,0))}.PnnIOa:hover .KEUNmX,.PnnIOa[data-preview=hover] .KEUNmX{fill:var(--scroll-button-hover-icon-color,var(--scroll-button-icon-color));transform:rotate(var(--icon-rotation-hover,var(--icon-rotation)));height:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size));width:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size))}.PnnIOa:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.fXBvwp{visibility:visible;pointer-events:auto}.sLcDXV{visibility:hidden;pointer-events:none}.KEUNmX{min-width:1px;max-width:100%;max-height:100%;fill:var(--scroll-button-icon-color);transform:rotate(var(--icon-rotation));height:var(--scroll-button-icon-size);width:var(--scroll-button-icon-size)}.KEUNmX>svg{width:inherit;height:inherit}@media (forced-colors:active){.PnnIOa.fXBvwp{outline-offset:0px;color:buttontext;outline:2px solid buttontext}.PnnIOa.fXBvwp:hover,.PnnIOa[data-preview=hover]{outline-offset:1px;color:highlight;outline:3px solid highlight}.KEUNmX,.KEUNmX *{fill:currentColor;stroke:currentColor}}.MXA4tA{background:var(--scroll-button-background);box-shadow:var(--scroll-button-box-shadow);border-top:var(--scroll-button-border-top);border-bottom:var(--scroll-button-border-bottom)}.UU6mel{padding-top:inherit;padding-bottom:inherit;border:inherit;pointer-events:none;display:var(--scroll-button-icon-display,flex);border-color:#0000;justify-content:space-between;position:absolute;inset:0}.toi7Rj{direction:var(--submenu-direction,var(--dropdown-menu-direction,var(--direction)));box-sizing:border-box;background:var(--container-background,var(--dropdown-menu-container-background));border-top:var(--container-border-top,var(--dropdown-menu-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-menu-container-border-bottom));border-left:var(--container-border-left,var(--dropdown-menu-container-border-left));border-right:var(--container-border-right,var(--dropdown-menu-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-menu-container-border-radius));box-shadow:var(--container-box-shadow,var(--dropdown-menu-container-box-shadow));text-align:var(--align,var(--dropdown-menu-align));padding-top:var(--container-padding-top,var(--container-vertical-padding,var(--dropdown-menu-container-padding-top,var(--dropdown-menu-container-vertical-padding))));padding-bottom:var(--container-padding-bottom,var(--container-vertical-padding,var(--dropdown-menu-container-padding-bottom,var(--dropdown-menu-container-vertical-padding))));min-width:min-content!important}.toi7Rj.x0UOau{padding-right:var(--container-padding-right,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-right,var(--dropdown-menu-container-horizontal-padding))));padding-left:var(--container-padding-left,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-left,var(--dropdown-menu-container-horizontal-padding))))}.toi7Rj.esKf1e{padding-inline-start:var(--container-padding-inline-start);padding-inline-end:var(--container-padding-inline-end)}@media (forced-colors:active){.toi7Rj{outline-offset:0px;outline:2px solid buttontext}.toi7Rj:focus-within{outline-offset:1px;outline:3px solid highlight!important}}.sbxaYn{--rows-number:calc((var(--items-number)/$columns-number) + .49);grid-template-columns:repeat(var(--columns-number,var(--dropdown-menu-columns-number)),1fr);grid-template-rows:repeat(var(--rows-number),auto);row-gap:var(--item-vertical-spacing,var(--dropdown-menu-item-vertical-spacing));column-gap:var(--item-horizontal-spacing,var(--dropdown-menu-item-horizontal-spacing));display:grid}@supports (width:round(1.9px, 1px)){.sbxaYn{--rows-number:calc(round(up,var(--items-number)/$columns-number))}}.SjbYta{gap:var(--sub-items-vertical-spacing-between,var(--dropdown-menu-sub-items-vertical-spacing-between));margin-top:var(--sub-items-vertical-spacing-before,var(--dropdown-menu-sub-items-vertical-spacing-before));flex-direction:column;display:flex}.P3tBK7{width:100%}.ptLEUT{direction:var(--submenu-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--dropdown-menu-item-justify-self);text-align:var(--item-align,var(--align,var(--dropdown-menu-item-align,var(--dropdown-menu-align))));padding-top:var(--item-padding-top,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));display:block}.ptLEUT.x0UOau{border-left:var(--item-border-left,var(--dropdown-menu-item-border-left));border-right:var(--item-border-right,var(--dropdown-menu-item-border-right));border-radius:var(--item-border-radius,var(--dropdown-menu-item-border-radius));padding-left:var(--item-padding-left,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-right:var(--item-padding-right,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.esKf1e{padding-inline-start:var(--item-padding-inline-start,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-inline-end:var(--item-padding-inline-end,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected]{font:var(--item-selected-font,var(--item-font,var(--dropdown-menu-item-selected-font,var(--dropdown-menu-item-font))));color:var(--item-selected-color,var(--item-color,var(--dropdown-menu-item-selected-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-selected-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-selected-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-selected-line-height,var(--item-line-height,var(--dropdown-menu-item-selected-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-selected-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-selected-text-transform,var(--item-text-transform,var(--dropdown-menu-item-selected-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-selected-text-outline,var(--item-text-outline,var(--dropdown-menu-item-selected-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-selected-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-selected-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-selected-background,var(--item-background,var(--dropdown-menu-item-selected-background,var(--dropdown-menu-item-background))));border-top:var(--item-selected-border-top,var(--item-border-top,var(--dropdown-menu-item-selected-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-selected-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-selected-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT.WB5Q35.x0UOau,.ptLEUT[data-preview=selected].x0UOau{border-left:var(--item-selected-border-left,var(--item-border-left,var(--dropdown-menu-item-selected-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-selected-border-right,var(--item-border-right,var(--dropdown-menu-item-selected-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-selected-border-radius,var(--item-border-radius,var(--dropdown-menu-item-selected-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT.WB5Q35 .u9_aLl,.ptLEUT[data-preview=selected] .u9_aLl{background-color:var(--item-selected-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-selected-text-highlight,var(--dropdown-menu-item-text-highlight))))}.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{font:var(--item-hover-font,var(--item-font,var(--dropdown-menu-item-hover-font,var(--dropdown-menu-item-font))));color:var(--item-hover-color,var(--item-color,var(--dropdown-menu-item-hover-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-hover-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-hover-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-hover-line-height,var(--item-line-height,var(--dropdown-menu-item-hover-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-hover-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-hover-text-transform,var(--item-text-transform,var(--dropdown-menu-item-hover-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-hover-text-outline,var(--item-text-outline,var(--dropdown-menu-item-hover-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-hover-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-hover-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-hover-background,var(--item-background,var(--dropdown-menu-item-hover-background,var(--dropdown-menu-item-background))));border-top:var(--item-hover-border-top,var(--item-border-top,var(--dropdown-menu-item-hover-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-hover-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-hover-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT:hover.x0UOau,.ptLEUT.brJofP.x0UOau,.ptLEUT[data-preview=hover].x0UOau{border-left:var(--item-hover-border-left,var(--item-border-left,var(--dropdown-menu-item-hover-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-hover-border-right,var(--item-border-right,var(--dropdown-menu-item-hover-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-hover-border-radius,var(--item-border-radius,var(--dropdown-menu-item-hover-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT:hover .u9_aLl,.ptLEUT.brJofP .u9_aLl,.ptLEUT[data-preview=hover] .u9_aLl{background-color:var(--item-hover-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-hover-text-highlight,var(--dropdown-menu-item-text-highlight))))}@media (forced-colors:active){.ptLEUT{outline-offset:0px;outline:2px solid buttontext}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected],.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.ptLEUT:focus,.ptLEUT:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.B2qCAf{direction:var(--submenu-sub-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--sub-item-justify-self);text-align:var(--sub-item-align,var(--align,var(--dropdown-menu-sub-item-align,var(--dropdown-menu-align))));display:block}.B2qCAf.x0UOau{border-left:var(--sub-item-border-left,var(--dropdown-menu-sub-item-border-left));border-right:var(--sub-item-border-right,var(--dropdown-menu-sub-item-border-right));border-radius:var(--sub-item-border-radius,var(--dropdown-menu-sub-item-border-radius));padding-left:var(--sub-item-padding-left,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)));padding-right:var(--sub-item-padding-right,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)))}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected]{font:var(--sub-item-selected-font,var(--sub-item-font,var(--dropdown-menu-sub-item-selected-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-selected-color,var(--sub-item-color,var(--dropdown-menu-sub-item-selected-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-selected-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-selected-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-selected-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-selected-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-selected-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-selected-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-selected-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-selected-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-selected-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-selected-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-selected-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-selected-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-selected-background,var(--sub-item-background,var(--dropdown-menu-sub-item-selected-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-selected-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-selected-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-selected-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-selected-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-selected-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-selected-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf.WB5Q35.x0UOau,.B2qCAf[data-preview=selected].x0UOau{border-left:var(--sub-item-selected-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-selected-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-selected-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-selected-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-selected-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-selected-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf.WB5Q35 .UCVF7R,.B2qCAf[data-preview=selected] .UCVF7R{background-color:var(--sub-item-selected-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-selected-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{font:var(--sub-item-hover-font,var(--sub-item-font,var(--dropdown-menu-sub-item-hover-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-hover-color,var(--sub-item-color,var(--dropdown-menu-sub-item-hover-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-hover-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-hover-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-hover-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-hover-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-hover-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-hover-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-hover-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-hover-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-hover-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-hover-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-hover-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-hover-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-hover-background,var(--sub-item-background,var(--dropdown-menu-sub-item-hover-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-hover-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-hover-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-hover-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-hover-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-hover-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-hover-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf:hover.x0UOau,.B2qCAf.brJofP.x0UOau,.B2qCAf[data-preview=hover].x0UOau{border-left:var(--sub-item-hover-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-hover-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-hover-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-hover-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-hover-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-hover-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf:hover .UCVF7R,.B2qCAf.brJofP .UCVF7R,.B2qCAf[data-preview=hover] .UCVF7R{background-color:var(--sub-item-hover-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-hover-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}@media (forced-colors:active){.B2qCAf{outline-offset:0px;outline:2px solid buttontext}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected],.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.B2qCAf:focus,.B2qCAf:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.u9_aLl{background-color:var(--item-text-highlight,var(--dropdown-menu-item-text-highlight));text-align:inherit;text-decoration-line:inherit;text-transform:inherit;text-shadow:inherit;display:inline-block}.UCVF7R{background-color:var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-text-highlight))}.eP1KVV{font:var(--item-font,var(--dropdown-menu-item-font,var(--font_7)));color:var(--item-color,var(--dropdown-menu-item-color));letter-spacing:var(--item-letter-spacing,var(--dropdown-menu-item-letter-spacing));line-height:var(--item-line-height,var(--dropdown-menu-item-line-height));text-decoration-line:var(--item-text-decoration,var(--dropdown-menu-item-text-decoration));text-transform:var(--item-text-transform,var(--dropdown-menu-item-text-transform));text-shadow:var(--item-text-outline,var(--dropdown-menu-item-text-outline)),var(--item-text-shadow,var(--dropdown-menu-item-text-shadow));background:var(--item-background,var(--dropdown-menu-item-background));border-top:var(--item-border-top,var(--dropdown-menu-item-border-top));border-bottom:var(--item-border-bottom,var(--dropdown-menu-item-border-bottom));box-shadow:var(--item-box-shadow,var(--dropdown-menu-item-box-shadow))}._3mA1c{font:var(--sub-item-font,var(--dropdown-menu-sub-item-font));color:var(--sub-item-color,var(--dropdown-menu-sub-item-color));letter-spacing:var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing));line-height:var(--sub-item-line-height,var(--dropdown-menu-sub-item-line-height));text-decoration-line:var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-text-decoration));text-transform:var(--sub-item-text-transform,var(--dropdown-menu-sub-item-text-transform));text-shadow:var(--sub-item-text-outline,var(--dropdown-menu-sub-item-text-outline)),var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-text-shadow));background:var(--sub-item-background,var(--dropdown-menu-sub-item-background));border-top:var(--sub-item-border-top,var(--dropdown-menu-sub-item-border-top));border-bottom:var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-border-bottom));box-shadow:var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-box-shadow));padding-top:var(--sub-item-padding-top,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)));padding-bottom:var(--sub-item-padding-bottom,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)))}.cNddzb[data-animation-name=revealFromTop]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),clip-path .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enter],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitDone]{clip-path:var(--animation-clip-path);opacity:0}.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive]{clip-path:inset(var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%))}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone]{clip-path:unset}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit]{opacity:1}.cNddzb[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=fadeIn][data-animation-state=enter],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitDone]{opacity:0}.cNddzb[data-animation-name=fadeIn][data-animation-state=enterActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=enterDone],.cNddzb[data-animation-name=fadeIn][data-animation-state=exit]{opacity:1}.cNddzb{background:var(--container-background,var(--dropdown-container-background));border-top:var(--container-border-top,var(--dropdown-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-container-border-bottom));box-shadow:var(--container-box-shadow,var(--dropdown-container-box-shadow))}.cNddzb.Nk9NbA{border-left:var(--container-border-left,var(--dropdown-container-border-left));border-right:var(--container-border-right,var(--dropdown-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-container-border-radius))}.cNddzb.W_BIhg{border-inline-start:var(--container-border-inline-start,var(--dropdown-container-border-inline-start));border-inline-end:var(--container-border-inline-end,var(--dropdown-container-border-inline-end));border-start-start-radius:var(--container-border-start-start-radius,var(--dropdown-container-border-start-start-radius));border-start-end-radius:var(--container-border-start-end-radius,var(--dropdown-container-border-start-end-radius));border-end-end-radius:var(--container-border-end-end-radius,var(--dropdown-container-border-end-end-radius));border-end-start-radius:var(--container-border-end-start-radius,var(--dropdown-container-border-end-start-radius))}.OOc2NG{direction:ltr}.G4Bkwp{box-sizing:border-box}div.wiZmhC{display:var(--l_display,var(--hamburger-menu-root-display,var(--container-display)))}[data-hamburger-btn-label]{display:none}div.wiZmhC[data-prehydration] [data-hamburger-btn-label]{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}.pcn0FH{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.HamburgerOpenButton3537389287__nav{display:inherit;height:inherit;width:auto}.uxNlIP{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.uxNlIP:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.uxNlIP:not(:disabled):hover,.uxNlIP:not(:disabled)[aria-pressed=true],.uxNlIP:not(:disabled)[aria-selected=true],.uxNlIP:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.uxNlIP:not(:disabled):focus,.uxNlIP:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.uxNlIP.KuCfHA:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.uxNlIP.aNAcG0:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.uxNlIP:hover,.uxNlIP [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.uxNlIP.GPIMxy:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.uxNlIP.KceBs9:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.uxNlIP:disabled,.uxNlIP [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.uxNlIP.N3sAZG:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.uxNlIP._FFhff:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.I0RXdK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.uxNlIP.siSNn5:not(:hover):not(:disabled) .I0RXdK{color:var(--corvid-color,var(--color))}.uxNlIP:hover .I0RXdK,.uxNlIP [data-preview=hover] .I0RXdK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.uxNlIP.EJ6L9y:hover:not(:disabled) .I0RXdK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.uxNlIP:disabled .I0RXdK,.uxNlIP [data-preview=disabled] .I0RXdK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.uxNlIP.S6tzPA:disabled:not(:hover) .I0RXdK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.kAoW_K{box-sizing:border-box;color:#000;text-decoration:none}.VzoZx_{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.p_5A25{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.uxNlIP.iN4eVS:not(:hover):not(:disabled) .p_5A25{fill:var(--corvid-icon-color,var(--icon-color))}.uxNlIP:hover .p_5A25,.uxNlIP [data-preview=hover] .p_5A25{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.uxNlIP.SGrXAN:hover:not(:disabled) .p_5A25{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.uxNlIP:disabled .p_5A25,.uxNlIP [data-preview=disabled] .p_5A25{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.uxNlIP.ZBuT2t:disabled:not(:hover) .p_5A25{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.p_5A25>span,.p_5A25 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.p_5A25,.p_5A25 svg,.p_5A25 svg *{fill:currentColor!important;stroke:currentColor!important}}.HMOnu5{display:inherit;height:inherit;width:auto}.HamburgerOverlay547129737__root{-archetype:paintBox;visibility:hidden;box-sizing:border-box;z-index:var(--above-all-z-index);left:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;top:var(--wix-ads-height)!important;position:fixed!important}.HamburgerOverlay547129737__overlay{box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--isMenuOpen{visibility:visible}.HamburgerOverlay547129737__root:not(.HamburgerOverlay547129737--showBackgroundOverlay){background-color:#0000}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--shouldScroll{overflow-x:hidden;overflow-y:scroll}.HamburgerOverlay547129737__scrollContent{position:relative}.OrbgmN[data-part=hamburger-overlay]{opacity:var(--hamburger-overlay-initial-opacity)}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn]{transition:opacity .4s}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterActive],.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.xdu0As{background:var(--background);border:var(--border);border-radius:var(--border-radius);box-shadow:var(--box-shadow);z-index:var(--above-all-z-index);box-sizing:border-box;visibility:hidden;inset-inline-start:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;position:fixed!important;inset-block-start:var(--wix-ads-height)!important}.oSs9UC{box-sizing:border-box;width:100%;height:100%;position:absolute;inset-block-start:0;inset-inline-start:0}.UOTM1J{visibility:visible}.xdu0As:not(.mh8_De){background-color:#0000}.vCpC6x{overflow-x:hidden;overflow-y:scroll}.mhdEAw{position:relative}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),visibility linear;opacity:1!important;visibility:visible!important}[data-hamburger-overlay-label]{display:none}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay] [data-hamburger-overlay-label]{z-index:1;cursor:pointer;display:block;position:absolute;inset:0}.EtmdIW{cursor:pointer}.gpDCD5{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--backdrop-filter:$backdrop-filter}.jv9xi4{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));backdrop-filter:var(--backdrop-filter,none);background-image:var(--bg-gradient,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.StylableHorizontalMenu3372578893__root{-archetype:paddingBox;box-sizing:border-box;width:100%;height:100%;display:flex}.StylableHorizontalMenu3372578893__root *{box-sizing:border-box}.StylableHorizontalMenu3372578893__menu{flex-wrap:var(--menu-flex-wrap,wrap);min-width:-moz-fit-content;min-width:fit-content;display:flex}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menuItem{box-sizing:border-box;height:100%;margin-top:0!important;margin-bottom:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:first-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-start:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:last-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-end:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu{height:auto!important;margin:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll{scrollbar-width:none;-ms-overflow-style:none;overflow-x:scroll}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll::-webkit-scrollbar{display:none}.StylableHorizontalMenu3372578893__menuItem{position:relative;--focus-ring-box-shadow:inset 0 0 0 2px #116dff,inset 0 0 0 4px #fff!important}.StylableHorizontalMenu3372578893__megaMenuWrapper{display:flex}.itemDepth02233374943__root{-archetype:paintBox;cursor:pointer;flex:1;text-decoration:none;display:block}.itemDepth02233374943__root.itemDepth02233374943--isHovered,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage,.itemDepth02233374943__root.itemDepth02233374943--isHovered .itemDepth02233374943__label,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage .itemDepth02233374943__label{transition:all 80ms cubic-bezier(0,0,1,1)}.itemDepth02233374943__container{-archetype:box;align-items:center;height:100%;display:flex}.itemDepth02233374943__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown;white-space:nowrap;transition:inherit}.itemDepth02233374943__itemWrapper{flex-grow:inherit}.itemDepth02233374943__positionBox{z-index:var(--position-box-z-index,47);margin:auto;display:none;position:fixed}.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn{position:absolute;left:0;right:0}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched{max-width:unset}@keyframes itemDepth02233374943__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth02233374943__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);max-height:var(--max-height,none);overflow-y:var(--overflow-y,visible);transition:border-color 80ms cubic-bezier(.25,1,.5,1),box-shadow 80ms cubic-bezier(.25,1,.5,1);animation-fill-mode:forwards}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched>.itemDepth02233374943__animationBox{width:100%}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched .itemDepth02233374943__megaMenuComp{width:100%!important}.itemDepth02233374943__alignBox{display:flex}.itemDepth02233374943__list{column-gap:calc(1px*var(--horizontalSpacing))}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox{visibility:hidden;display:block}.itemDepth02233374943__itemWrapper[data-shown]>.itemDepth02233374943__positionBox{visibility:visible;display:block}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox>.itemDepth02233374943__animationBox{animation-name:itemDepth02233374943__fadeIn}.itemDepth02233374943__megaMenuComp{direction:ltr;flex-shrink:0;margin-top:var(--containerMarginTop)!important;padding:0!important}.itemDepth02233374943__itemWrapper:not([data-hovered]) .itemDepth02233374943__megaMenuComp{display:none}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn.itemDepth02233374943--isStretched{display:block;position:fixed!important}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn>.itemDepth02233374943__animationBox{opacity:1}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn .itemDepth02233374943__megaMenuComp{display:block}.itemDepth12472627565__root{-archetype:paintBox;text-decoration:none;display:block;position:relative}.itemDepth12472627565__container{display:flex}.itemDepth12472627565__label{-archetype:text;text-overflow:clip;white-space:var(--white-space);overflow-wrap:var(--label-word-wrap);word-wrap:var(--label-word-wrap);display:block;overflow:hidden;text-align:inherit!important}.itemDepth12472627565__itemWrapper{page-break-inside:avoid;break-inside:avoid;position:relative}.itemDepth12472627565__itemWrapper:after{content:"";clear:both;display:table}.itemDepth12472627565__positionBox{position:var(--subsubmenu-box-position);display:var(--subsubmenu-box-display);top:0;left:var(--subsubmenu-box-left);right:var(--subsubmenu-box-right)}.itemDepth12472627565__positionBox[data-reverted]{left:var(--subsubmenu-box-right);right:var(--subsubmenu-box-left)}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox{display:block}@keyframes itemDepth12472627565__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth12472627565__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);animation-fill-mode:forwards;margin-top:0!important}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox>.itemDepth12472627565__animationBox{animation-name:itemDepth12472627565__fadeIn}.submenu815198092__heading .itemDepth12472627565__label{color:#000}.submenu815198092__pageWrapper{margin-left:auto!important;margin-right:auto!important}.submenu815198092__overrideWidth{width:100%!important}.submenu815198092__rowItem:last-child{margin-bottom:0!important}.submenu815198092__rowItem:first-child,.submenu815198092__rowItem+.submenu815198092__rowItem{margin-top:0}.h75ntl{display:var(--navbar-display,block);height:100%}.I9v6Rw:hover{z-index:var(--is-sticky,auto)}.Aj_PK7{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.wZrAIE{min-width:var(--min-width-override);min-height:var(--min-height-override)}.itemShared2352141355__rootContainer{height:100%}.itemShared2352141355__rootContainer.itemShared2352141355--isRow{flex-direction:row;display:flex}.itemShared2352141355__rootContainer.itemShared2352141355--isRow .itemShared2352141355__menuItem{flex-grow:1}.itemShared2352141355__accessibilityIconWrapper{width:0}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isIconShown{width:unset;margin-inline:4px 8px}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isTopLevel.itemShared2352141355--isIconShown{align-items:center;display:flex}.itemShared2352141355__accessibilityIcon{clip:rect(0 0 0 0);clip-path:inset(50%);width:0;height:0}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isIconShown{width:24px;height:24px;clip-path:unset;background:#fff}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isOpen{rotate:180deg}.ScrollButton2305195801__root{-archetype:paddingBox;cursor:pointer;opacity:0;pointer-events:none;justify-content:center;align-items:center;display:flex;overflow:hidden}.ScrollButton2305195801__root:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.ScrollButton2305195801__root.ScrollButton2305195801---side-4-left{transform:scaleX(-1)}.ScrollButton2305195801__root.ScrollButton2305195801--isVisible{opacity:1;pointer-events:auto}.ScrollButton2305195801__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown;min-width:1px;max-width:100%;max-height:100%}.ScrollButton2305195801__icon>svg{width:inherit;height:inherit}.ScrollControls2015960785__root{padding-top:inherit;padding-bottom:inherit;border:inherit;display:var(--scroll-controls-display,flex);pointer-events:none;border-color:#0000;justify-content:space-between;position:absolute;inset:0}</style> | |
| 192 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_StylableButton].37250527.min.css">.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 193 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInputListModal].80f46385.min.css">.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}</style> | |
| 194 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap-responsive.4e8a21db.min.css">.H4AHlN{clip-path:inset(50%);width:24px;height:24px;position:absolute}.H4AHlN:focus,.H4AHlN:active{clip-path:unset;top:50%;right:0;transform:translateY(-50%)}.H4AHlN.Ln3X5V{transform:translateY(-50%)rotate(180deg)}.RHcakQ,.CUYeWp{height:100%;width:initial;box-sizing:border-box;position:relative;overflow:visible}.RHcakQ[data-state~=header] a,[data-state~=header].CUYeWp a,.RHcakQ[data-state~=header] div,[data-state~=header].CUYeWp div{cursor:default!important}.RHcakQ .qMvpu5,.CUYeWp .qMvpu5{width:100%;height:100%;display:inline-block}.CUYeWp{display:var(--display);--display:inline-block;cursor:pointer;font:var(--fnt,var(--font_1))}.CUYeWp .EWeavx{padding:0 var(--pad,5px)}.CUYeWp .wGxoBM{color:rgb(var(--txt,var(--color_15,color_15)));transition:var(--trans,color .4s ease 0s);padding:0 10px;display:inline-block}.CUYeWp[data-state~=drop]{width:100%;display:block}.CUYeWp[data-state~=drop] .wGxoBM{padding:0 .5em}.CUYeWp[data-state~=over] .wGxoBM,.CUYeWp[data-state~=link]:hover .wGxoBM{color:rgb(var(--txth,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.CUYeWp[data-state~=selected] .wGxoBM{color:rgb(var(--txts,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.H5oXMS{overflow-x:hidden}.H5oXMS .nzOiVF{flex-direction:column;width:100%;height:100%;display:flex}.H5oXMS .nzOiVF .sPUR9o{flex:1}.H5oXMS .nzOiVF .U7fR3t{width:calc(100% - (var(--menuTotalBordersX,0px)));height:calc(100% - (var(--menuTotalBordersY,0px)));white-space:nowrap;overflow:visible}.H5oXMS .nzOiVF .U7fR3t .CSt_RJ,.H5oXMS .nzOiVF .U7fR3t .NgQZsf{direction:var(--menu-direction);text-align:var(--menu-align,var(--align));display:inline-block}.H5oXMS .nzOiVF .U7fR3t .NV2Ozs{width:100%;display:block}.H5oXMS .dva_z0{z-index:99999;opacity:1;text-align:var(--submenus-align,var(--align));direction:var(--submenus-direction);display:block}.H5oXMS .dva_z0 .fYO6yN{display:inherit;white-space:nowrap;width:auto;visibility:inherit;overflow:visible}.H5oXMS .dva_z0.mmODQd{visibility:visible;transition:visibility 0s .2s}.H5oXMS .dva_z0 .NgQZsf{display:inline-block}.H5oXMS .YStAo7{display:none}.MV6Z4B>nav{position:absolute;inset:0}.MV6Z4B .U7fR3t{position:absolute}.MV6Z4B .dva_z0{visibility:hidden;margin-top:7px;position:absolute}.MV6Z4B .dva_z0[data-dropMode="dropUp"]{margin-top:0;margin-bottom:7px}.MV6Z4B .fYO6yN{background-color:rgba(var(--bgDrop,var(--color_11,color_11)),var(--alpha-bgDrop,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ETqrjz .g0IvTF{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));position:absolute;inset:0;overflow:hidden}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}</style> | |
| 195 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Section].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 196 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[RefComponent].98cd6e5f.min.css">.S829f_{pointer-events:var(--ref-container-pointer-events)!important}.S829f_>*{pointer-events:auto}</style> | |
| 197 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Container_ResponsiveBox].c25ed6c0.min.css">.EtmdIW{cursor:pointer}.HFEOE3{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));--overflow-wrapper-border-radius:var(--rd);--backdrop-filter:$backdrop-filter}.NaeT1r{box-shadow:none!important;background:0 0!important;border:none!important}.NYfD3h{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));background-image:var(--bg-gradient,none);backdrop-filter:var(--backdrop-filter,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.jdJeEr{width:unset!important;min-width:unset!important;max-width:unset!important;height:unset!important;min-height:unset!important;max-height:unset!important;z-index:unset!important;margin:0!important;padding:0!important;position:absolute!important;inset:0!important}</style> | |
| 198 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[FooterSection].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 199 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[MenuContainer_Responsive].a710ff33.min.css">.vO4l6e{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.vO4l6e.Wy7QN0{opacity:1;visibility:visible}.vO4l6e[data-undisplayed=true]{display:none}.vO4l6e:not([data-is-mesh]) .mTXgrW,.vO4l6e:not([data-is-mesh]) ._Cv0fj{position:absolute;inset:0}.F02QWW{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.F02QWW.boScYg{display:none}body.device-mobile-optimized .F02QWW,:host(.device-mobile-optimized) .F02QWW{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.boScYg,:host(.device-mobile-optimized) .vO4l6e.boScYg{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.cdbKA3,:host(.device-mobile-optimized) .vO4l6e.cdbKA3{height:100vh}body:not(.device-mobile-optimized) .vO4l6e.cdbKA3,:host(:not(.device-mobile-optimized)) .vO4l6e.cdbKA3{height:100vh}.KX5JJ6.cdbKA3{height:calc(var(--menu-height) - var(--wix-ads-height))}.KX5JJ6.cdbKA3>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.vO4l6e.cdbKA3{top:0}.vO4l6e.B_nptD{z-index:calc(var(--above-all-z-index) - 1)}._Cv0fj{height:100%}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}._TdTo8{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}._TdTo8.mYq8K5{opacity:1;visibility:visible}._TdTo8[data-undisplayed=true]{display:none}._TdTo8:not([data-is-mesh]) ._SG1a6,._TdTo8:not([data-is-mesh]) .V1WvhC{position:absolute;inset:0}.KyTZlx{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.KyTZlx.rL1cmJ{display:none}body.device-mobile-optimized .KyTZlx,:host(.device-mobile-optimized) .KyTZlx{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.rL1cmJ,:host(.device-mobile-optimized) ._TdTo8.rL1cmJ{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.ci1BOD,:host(.device-mobile-optimized) ._TdTo8.ci1BOD{height:100vh}body:not(.device-mobile-optimized) ._TdTo8.ci1BOD,:host(:not(.device-mobile-optimized)) ._TdTo8.ci1BOD{height:100vh}.dz6k8U.ci1BOD{height:calc(var(--menu-height) - var(--wix-ads-height))}.dz6k8U.ci1BOD>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}._TdTo8.ci1BOD{top:0}.qINwWP{background-color:rgba(var(--containerBackground,var(--color_11,color_11)),var(--alpha-containerBackground,1));position:absolute;inset:0}.dz6k8U,.V1WvhC{height:100%}</style> | |
| 200 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[HeaderSection].cdbd0494.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}.yEgiaI{margin-top:var(--padding-top,0);margin-right:var(--padding-right,0);margin-bottom:var(--padding-bottom,0);margin-left:var(--padding-left,0)}</style> | |
| 201 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Repeater_Responsive].4a747053.min.css">.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}.ArRNfA{--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--container-corvid-border-color:rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0));direction:var(--wix-opt-in-direction,ltr);background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));border-style:solid;border-color:var(--container-corvid-border-color,rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0)));background-image:var(--bg-gradient,none);box-shadow:var(--boxShadow,0 0 0 #0000);border-width:var(--borderWidth,0px);border-radius:var(--borderRadius,0)}</style> | |
| 202 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[PageSections].7dbf3cd4.min.css">.ooGRUo{display:contents}</style> | |
| 203 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css">.chBh7{overflow:hidden}.UkML6{width:100%;height:100%;position:relative;overflow:hidden}.UkML6:-webkit-full-screen{min-height:auto!important}.UkML6:-moz-full-screen{min-height:auto!important}.UkML6:fullscreen{min-height:auto!important}.mqeQ0{visibility:hidden} | |
| 204 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css.map*/</style> | |
| 205 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css">.QrIus{height:auto!important}.bsFmQ{overflow:hidden!important} | |
| 206 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css.map*/</style> | |
| 207 | +<title>GRAND 5 1/2 À LOUER</title> | |
| 208 | + <meta name="description" content="f205c3fd-d554-4a78-a39c-7813a3f09838"/> | |
| 209 | + <link rel="canonical" href="https://www.leshabitationssf.com/copy-of-location/grand-5-1%2F2-%C3%A0-louer-"/> | |
| 210 | + <meta name="robots" content="index"/> | |
| 211 | + <meta property="og:title" content="GRAND 5 1/2 À LOUER"/> | |
| 212 | + <meta property="og:description" content="f205c3fd-d554-4a78-a39c-7813a3f09838"/> | |
| 213 | + <meta property="og:image" content="https://static.wixstatic.com/media/5ae170_6193ea69936446bba880dfc4f8731080~mv2.jpg/v1/fill/w_1024,h_683,al_c,q_85/640-Boulevard-lAssomption-SCB-2-2-1024x683.jpg"/> | |
| 214 | + <meta property="og:image:width" content="1024"/> | |
| 215 | + <meta property="og:image:height" content="683"/> | |
| 216 | + <meta property="og:url" content="https://www.leshabitationssf.com/copy-of-location/grand-5-1%2F2-%C3%A0-louer-"/> | |
| 217 | + <meta property="og:site_name" content="SF Habitations"/> | |
| 218 | + <meta property="og:type" content="website"/> | |
| 219 | + <script type="application/ld+json">{}</script> | |
| 220 | + <script type="application/ld+json">{}</script> | |
| 221 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/grand-5-1%2F2-%C3%A0-louer-" hreflang="x-default"/> | |
| 222 | + <link rel="alternate" href="https://www.leshabitationssf.com/en/copy-of-location/grand-5-1%2F2-%C3%A0-louer-" hreflang="en-us"/> | |
| 223 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/grand-5-1%2F2-%C3%A0-louer-" hreflang="fr-ca"/> | |
| 224 | + <meta name="google-site-verification" content="10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM"/> | |
| 225 | + <meta name="twitter:card" content="summary_large_image"/> | |
| 226 | + <meta name="twitter:title" content="GRAND 5 1/2 À LOUER"/> | |
| 227 | + <meta name="twitter:description" content="f205c3fd-d554-4a78-a39c-7813a3f09838"/> | |
| 228 | + <meta name="twitter:image" content="https://static.wixstatic.com/media/5ae170_6193ea69936446bba880dfc4f8731080~mv2.jpg/v1/fill/w_1024,h_683,al_c,q_85/640-Boulevard-lAssomption-SCB-2-2-1024x683.jpg"/> | |
| 229 | +<script>;(function(){function isSamePageAnchor(e){let t=e.target,r=t&&t.closest&&t.closest("a[data-anchor]");if(!r||"_blank"===r.getAttribute("target"))return!1;let a=r.getAttribute("href");if(!a)return!1;try{let e=new URL(a,location.href);return e.origin===location.origin&&e.pathname===location.pathname}catch(e){return!1}};var guard=(function preventSamePageAnchorReloadBeforeHydration(e){e.metaKey||e.ctrlKey||isSamePageAnchor(e)&&e.preventDefault()});window.__tbAnchorGuard=guard;document.addEventListener('click',guard,true)})();</script> | |
| 230 | +<script type="speculationrules">{"prefetch":[{"tag":"mpa-prefetch-eager","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":"/copy-of-location/grand-5-1%2F2-%C3%A0-louer-"}}]},"eagerness":"eager"}]}</script> | |
| 231 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidget.min.css">.sSAtY3z.ofOhStR--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.squ26My{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.stbqc1u.oJ8EvyQ--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.Q8TtId{padding:0;position:relative}.Q8TtId>svg{bottom:0;left:0;position:absolute!important;right:0;top:0}.aZhaoZ{opacity:0}.s1dvzA{display:block;outline:none;text-decoration:none;width:100%}.s1dvzA,.s1dvzA svg{overflow:visible}.js-focus-visible .s1dvzA:focus{box-shadow:none;position:relative}.js-focus-visible .s1dvzA:focus:after{box-shadow:inset 0 0 1px 1px #3899ec,inset 0 0 0 2px hsla(0,0%,100%,.9);content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.s1dvzA circle,.s1dvzA path,.s1dvzA polygon,.s1dvzA polyline,.s1dvzA rect{fill:rgb(var(--cartWidget_cartIcon,var(--wix-color-8)))}.s1dvzA text{fill:rgb(var(--cartWidget_cartIconText,var(--wix-color-8)));font:var(--cartWidget_cartIconTextFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-1)));font:var(--cartWidget_cartIconNumberFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx.M846Y_{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-8)))}.s1dvzA .ptVJi9{fill:rgba(var(--cartWidget_cartIconBubble,var(--wix-color-8)))}.tx4Jvn text.uxskpx{font-size:50px!important}.tx4Jvn.qZfbbY .uxskpx{font-size:45px!important}.tx4Jvn.fzGViX .uxskpx{font-size:37px!important}.DRb0Pe.qZfbbY .uxskpx{font-size:80px!important}.DRb0Pe.fzGViX .uxskpx{font-size:58px!important}.WWgVyT.qZfbbY .uxskpx{font-size:60px!important}.WWgVyT.fzGViX .uxskpx{font-size:45px!important}.XPTyZQ.qZfbbY .uxskpx{font-size:60px!important}.XPTyZQ.fzGViX .uxskpx{font-size:40px!important}.KpNISr.qZfbbY .uxskpx{font-size:70px!important}.KpNISr.fzGViX .uxskpx{font-size:60px!important}.l3royO.qZfbbY .uxskpx{font-size:80px!important}.l3royO.fzGViX .uxskpx{font-size:60px!important}.hAeODa.qZfbbY .uxskpx{font-size:75px}.hAeODa.fzGViX .uxskpx{font-size:55px}.spQjTI.qZfbbY .uxskpx{font-size:75px!important}.spQjTI.fzGViX .uxskpx{font-size:59px!important}.yA1DNe.qZfbbY .uxskpx{font-size:80px!important}.yA1DNe.fzGViX .uxskpx{font-size:65px!important}.Rl4inp.qZfbbY .uxskpx{font-size:75px!important}.Rl4inp.fzGViX .uxskpx{font-size:60px!important}.of9Ja5.qZfbbY .uxskpx{font-size:80px!important}.of9Ja5.fzGViX .uxskpx{font-size:60px!important}</style> | |
| 232 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidget.min.css">.sWmh0WA{position:relative;width:100%}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-6-center img{object-position:center center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-4-left img{object-position:left center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-5-right img{object-position:right center!important}.s__0oqQvY{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.sQHoZUY.orM9hcb--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.slGztSx{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}@media (forced-colors:active){.slGztSx{border:1px solid ButtonText!important}.slGztSx:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sMnC5St,.slGztSx:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sMnC5St{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}.sVmrY5m{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}@media (forced-colors:active){.sVmrY5m{border:1px solid ButtonText!important}.sVmrY5m:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sVmrY5m:not(:focus-visible):hover,.s__5lI9gM{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.s__5lI9gM{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}.sYP_tlR{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.sRwjrN7.och83_y--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.sA7jId1,.sQ47qqC{outline:0}.sf2MeN5 .snFVMUZ{font-size:14px}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-5-basic{background-color:#000;border-color:#000;color:#fff}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-14-basicSecondary{border-color:#000;color:#000}.sf2MeN5.otkPJbq---type-4-text:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-7-primary{color:#000}.s__3jxMoq{display:inline-block;position:relative}.s__3jxMoq.ouhSmpM--fluid{display:block;width:100%}.sONxQKD{background-color:#fff;border-color:#000;border-radius:initial;border-style:solid;border-width:1px;padding:initial}.soEFkgN{border-style:solid;height:0;margin:5px;position:absolute;width:0}.swpyXyw[data-placement*=right].sVK_8pY{padding-left:5px}.swpyXyw[data-placement*=right].sVK_8pY .soEFkgN{border-color:transparent #000 transparent transparent;border-width:5px 5px 5px 0;left:-5px;margin-left:5px;margin-right:0}.swpyXyw[data-placement*=left].sVK_8pY{padding-right:5px}.swpyXyw[data-placement*=left].sVK_8pY .soEFkgN{border-color:transparent transparent transparent #000;border-width:5px 0 5px 5px;margin-left:0;margin-right:5px;right:-5px}.swpyXyw[data-placement*=bottom].sVK_8pY{padding-top:5px}.swpyXyw[data-placement*=bottom].sVK_8pY .soEFkgN{border-color:transparent transparent #000 transparent;border-width:0 5px 5px 5px;margin-bottom:0;margin-top:5px;top:-5px}.swpyXyw[data-placement*=top].sVK_8pY{padding-bottom:5px}.swpyXyw[data-placement*=top].sVK_8pY .soEFkgN{border-color:#000 transparent transparent transparent;border-width:5px 5px 0 5px;bottom:-5px;margin-bottom:5px;margin-top:0}.s__72lfJk{position:relative}.sgKo7D0{--submitbuttonwut805068570-explicit-padding:11px;--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-padding-block-start:var(--submitbuttonwut805068570-explicit-padding);--wix-ui-tpa-button-padding-block-end:var(--submitbuttonwut805068570-explicit-padding);min-width:0!important;padding-inline:min(5%,15px)!important}.sgKo7D0 span{line-height:var(--submitbuttonwut805068570-submitButtonFont-line-height,1.2)!important}.sasFW9G{width:100%}.sEgWCPr{min-width:100px!important}.sCCUGm1{--wix-ui-tpa-text-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-text-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-text-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight)}.sCCUGm1:hover,.skxLJE4{color:rgb(var(--wix-forms-formSubmitButtonColorHover,var(--wix-color-5)))!important}.sqrHXDy{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity)}.s__637HSU{align-self:end;width:100%}.sYsuLUN{display:flex;height:100%;width:100%}.s__0wMXKP{display:flex;justify-content:space-between}.sAX9qX_{min-width:100px}.sCjRp4V{text-align:center}.sdvxq7V{height:15px!important;width:15px!important}.sCCUGm1 .sdvxq7V circle,.sgKo7D0 .sdvxq7V circle{stroke:rgb(var(--wix-forms-formSubmitButtonColor,var(--wix-color-1)))}.stkCIdj{height:0;visibility:hidden}.s__5wusy3{gap:var(--submitbuttonwut805068570-wix-forms-formRowSpacing,24px)}.sHBmGR5{pointer-events:none}@media (forced-colors:active){.sgKo7D0{border:1px solid ButtonText!important}.sCCUGm1:focus-visible,.sgKo7D0:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sgKo7D0.sqrHXDy,.sgKo7D0:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sFyI5ne .sONxQKD{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.s__3DOwO7{align-items:center;cursor:pointer;display:inline-flex}.sXyzDDh,.siwI922{flex-shrink:0}.s__3DOwO7.oX5PGLp--disabled{cursor:default}.s__3DOwO7[disabled]{pointer-events:none}.s__5mJsIL{--wut-error-color:rgb(var(--wix-ui-tpa-error-message-wrapper-error-color,223,49,49));--ErrorMessageWrapper329640366-transparent:0,0,0,0}.s__5mJsIL:not(.oKPjoIj--visible){margin-bottom:var(--wix-ui-tpa-error-message-wrapper-min-message-height)}.s__5mJsIL.oKPjoIj--visible{margin-bottom:calc(var(--wix-ui-tpa-error-message-wrapper-min-message-height, 28px) - 20px - 8px)}.sT4cyzB{align-items:flex-start;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-transparent)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-transparent)));border-radius:var(--wix-ui-tpa-error-message-wrapper-border-radius,4px);border-style:solid;border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,0);color:var(--wut-error-color);display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:1.4;margin-top:8px;min-height:20px}.sDw6n7W{flex-shrink:0;margin-inline-end:2px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sT4cyzB{--ErrorMessageWrapper329640366-border-color:223,49,49,0.2;--ErrorMessageWrapper329640366-background-color:253,243,243;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-background-color)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-border-color)));border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,1px);padding:8px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sDw6n7W{margin-inline-end:4px}.s__8wUiio{display:flex;justify-content:space-between;margin-top:8px}.s__8wUiio .sT4cyzB{margin-top:0;margin-inline-end:12px}.sigpKjl{--TextField2598911325-default-main-border-width:1px}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-ui-tpa-text-field-error-color,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-ui-tpa-text-field-error-color-rgb,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-ui-tpa-text-field-error-color-opacity);--wix-ui-tpa-error-message-wrapper-min-message-height:var(--wix-ui-tpa-text-field-error-message-min-height)}.smyXERm{align-items:center;background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-color:rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:0;box-sizing:border-box;display:flex;font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,var(--wix-font-Body-M-line-height));padding:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,var(--wix-font-Body-M-line-height));text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.stVd2iH{margin-bottom:8px}#SITE_CONTAINER.focus-ring-active .sigpKjl .smyXERm:focus-within,#SITE_CONTAINER.focus-ring-active .sigpKjl .sq3uuYJ:focus:not(:hover){box-shadow:0 0 0 1px #fff,0 0 0 3px #116dff!important;z-index:999}.smyXERm input:-webkit-autofill{-webkit-text-fill-color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));-webkit-box-shadow:0 0 0 1.5em rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1))) inset!important}.smyXERm.oYEaGDN---theme-3-box{border:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.oYEaGDN---theme-4-line{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-4-line{--TextField2598911325-transparent:0,0,0,0;background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--TextField2598911325-transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.o__6t2qui--focus,.smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-hover-border-color,var(--wix-ui-tpa-text-field-main-border-color,var(--wix-color-5))));border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px);border-width:var(--wix-ui-tpa-text-field-hover-border-width,var(--TextField2598911325-default-main-border-width,1px))}.smyXERm.oYEaGDN---theme-3-box.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-3-box:hover,.smyXERm.oYEaGDN---theme-4-line.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-4-line:hover{background-color:rgb(var(--wix-ui-tpa-text-field-hover-background-color-rgb,var(--wix-ui-tpa-text-field-main-background-color-rgb,transparent)),calc(var(--wix-ui-tpa-text-field-hover-background-color-opacity, var(--wix-ui-tpa-text-field-main-background-color-opacity, 1))*var(--wix-ui-tpa-text-field-hover-background-opacity, 1)))}.sigpKjl.oYEaGDN--disabled .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-disabled-border-color-rgb,var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-disabled-border-color-opacity, var(--wix-ui-tpa-text-field-main-border-color-opacity, 1))*.6))}.sigpKjl.oYEaGDN--disabled .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1)))}.sigpKjl.oYEaGDN--success .smyXERm{border-color:rgb(var(--wst-system-success-color-rgb,0,130,80),.6)}.sigpKjl.oYEaGDN--success .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--success .smyXERm:hover{border-color:#008250}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb,223,49,49)),.6)}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage .smyXERm{--TextField2598911325-wix-ui-tpa-text-field-border-color-internal:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb)));border-color:var(--TextField2598911325-wix-ui-tpa-text-field-border-color-internal,var(--wut-error-color,#df3131))!important}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,223,49,49))}.sigpKjl.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-prefix-padding-inline-end,4px)}.smyXERm .sjImZoO{background-color:transparent;border:0;box-sizing:border-box;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,24px);margin:0;min-width:0;padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-start:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,12px);vertical-align:middle;width:100%}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-readonly-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,24px);text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,0);padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,0)}.smyXERm.o__6t2qui--focus .sjImZoO,.smyXERm:hover .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-hover-text-color,var(--wix-ui-tpa-text-field-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sigpKjl.oYEaGDN--disabled .sfgvi8T svg,.smyXERm.o__6t2qui--disabled .sjImZoO{fill:rgb(var(--wix-ui-tpa-text-field-suffix-disabled-color,var(--wst-system-disabled-color-rgb)));color:rgb(var(--wix-ui-tpa-text-field-main-text-disabled-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.smyXERm.o__6t2qui--focus .sjImZoO{outline:0}.smyXERm .sjImZoO::selection{background:rgb(var(--wix-ui-tpa-text-field-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-field-main-text-color-opacity, 1)*.2))}.sisjT9x{align-items:center;display:flex;justify-content:flex-end;margin:0 -4px;padding:0;padding-inline-start:var(--wix-ui-tpa-text-field-suffix-padding-inline-start,8px);white-space:nowrap}.sisjT9x.oYEaGDN--arrows{height:100%}.smyXERm.oYEaGDN---theme-3-box{padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,12px)}.sYMteoM{align-items:center;display:flex;height:100%}.saZlyzg{display:inline-block;height:100%;width:4px}.sigpKjl .sxYAMB9{--wix-ui-tpa-icon-button-icon-color:var(--wix-ui-tpa-text-field-main-text-color,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-rgb:var(--wix-ui-tpa-text-field-main-text-color-rgb,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-opacity:var(--wix-ui-tpa-text-field-main-text-color-opacity);border-radius:20px;display:block;outline:0}.sigpKjl .sxYAMB9:focus,.sigpKjl .sxYAMB9:hover{background-color:transparent;opacity:1}.sfgvi8T{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));display:flex;height:100%}.smyXERm .sjImZoO::-webkit-input-placeholder,.smyXERm .sjImZoO::placeholder{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:var(--wst-paragraph-2-line-height);--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:var(--wst-paragraph-2-font-size);--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-placeholder-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));font-family:var(--wix-ui-tpa-text-field-placeholder-font-family,var(--wst-paragraph-2-overriden-font-family));font-size:var(--wix-ui-tpa-text-field-placeholder-font-size,var(--wst-paragraph-2-overriden-font-size));font-style:var(--wix-ui-tpa-text-field-placeholder-font-style,var(--wst-paragraph-2-overriden-font-style));font-variant:var(--wix-ui-tpa-text-field-placeholder-font-variant,var(--wst-paragraph-2-overriden-font-variant));font-weight:var(--wix-ui-tpa-text-field-placeholder-font-weight,var(--wst-paragraph-2-overriden-font-weight));line-height:var(--wix-ui-tpa-text-field-placeholder-font-line-height,var(--wst-paragraph-2-overriden-font-line-height));text-decoration:var(--wix-ui-tpa-text-field-placeholder-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration))}.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::-webkit-input-placeholder,.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::placeholder{color:rgb(var(--wix-ui-tpa-text-field-disabled-placeholder-color,var(--wix-color-29)))}.sdcwRYb{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.4;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));display:inline-block;font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));margin-bottom:8px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sigpKjl.oYEaGDN--disabled .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-disabled-label-color,var(--wix-color-29)))}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-label-font-size,14px);font-style:var(--wix-ui-tpa-text-field-readonly-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-label-font-line-height,1.4);text-decoration:var(--wix-ui-tpa-text-field-readonly-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sn_gi7t{color:rgb(var(--wix-ui-tpa-text-field-char-count-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));display:flex;font-family:var(--wix-ui-tpa-text-field-char-count-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-char-count-font-size,14px);font-style:var(--wix-ui-tpa-text-field-char-count-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-char-count-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-char-count-font-weight,var(--wix-font-Body-M-weight));justify-content:flex-end;line-height:var(--wix-ui-tpa-text-field-char-count-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-char-count-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage.oYEaGDN--hasErrorMessage .sn_gi7t{margin-top:0}.sXIeGiQ{display:none}.shfTOvJ{color:#df3131!important}.sW0lLQo{color:rgb(var(--wst-system-success-color-rgb,0,130,80))}.s__4zN_uk{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-4)));display:flex;margin-inline-start:var(--wix-ui-tpa-text-field-padding-inline-start,12px)}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-4)))}.s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-5)))}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-5)))}.smyXERm.oYEaGDN---theme-4-line .s__4zN_uk{margin-inline-start:0}.sSoKqc1{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.smyXERm input[type=number]::-webkit-inner-spin-button,.smyXERm input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.smyXERm input[type=number]{appearance:textfield}.smyXERm input{border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0)}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm input{border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0)}.smyXERm.o__6t2qui--focus input,.smyXERm:hover input{border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px)}.s__1MuoJD{display:flex;flex-direction:column;padding-bottom:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px);padding-top:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px)}.sFd_hFT{all:unset;cursor:pointer;height:16px;line-height:16px}.sigpKjl .sHJyM6t{color:rgb(var(--wix-ui-tpa-text-field-helper-text-color,var(--wix-color-4)));display:block;font-family:var(--wix-ui-tpa-text-field-helper-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-helper-text-font-size,14px);font-style:var(--wix-ui-tpa-text-field-helper-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-helper-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-helper-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-helper-text-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-helper-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sq3uuYJ{cursor:pointer;display:block;height:calc(max(24px,1em));width:calc(max(24px,1em))}.sq3uuYJ.oYEaGDN--disabled{cursor:default}.sE2SOPk{position:relative;width:100%}.sfXnMJy{font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,1.4);padding-top:3.6px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wix-color-4)));font:inherit;margin-bottom:0;overflow:hidden;padding-top:0;position:absolute;text-overflow:ellipsis;top:50%;transform:translateY(-50%);transition:all .1s ease-out;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;-ms-transition:all .1s ease-out;white-space:nowrap;width:calc(100% - 20px)}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-4)));font:inherit}.sigpKjl.oYEaGDN--hasFloatingLabelActive .sdcwRYb.oYEaGDN---style-8-floating{font-size:.875em;padding-top:2px;top:6px;transform:translateY(0)}.sigpKjl.oYEaGDN--hasFloatingLabel .sdcwRYb.oYEaGDN---theme-3-box{padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .sjImZoO{padding:0 0 6px;padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding:0 0 4px;padding-inline-start:0;text-indent:0}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:4px}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .smyXERm .sjImZoO{padding-inline-end:4px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box{padding-inline-end:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .s__4zN_uk{margin-inline-start:20px}.sjSK_mi{--Text1662509933-primary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-5)));--Text1662509933-secondary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-4)))}.sjSK_mi.ot7R_W1---priority-7-primary{color:var(--wut-text-color,var(--Text1662509933-primary-color))}.sjSK_mi.ot7R_W1---priority-9-secondary{color:var(--wut-placeholder-color,var(--Text1662509933-secondary-color))}.sjSK_mi.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.5em)}.sjSK_mi.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,2em)}.sjSK_mi.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,32px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.25em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,20px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.4em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.42em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,14px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.72em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.s__96XWLA{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sGQhrdY{--Spinner2369530196-diameter:var(--wix-ui-tpa-spinner-diameter,50px);animation:Spinner2369530196__rotate 2s linear infinite;height:var(--Spinner2369530196-diameter);left:auto;top:auto;width:var(--Spinner2369530196-diameter)}.sIOh1bP{stroke:rgb(var(--wix-ui-tpa-spinner-path-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,4px),10px);animation:Spinner2369530196__dash 1.5s ease-in-out infinite}.sGQhrdY.okHrCLG--slim .sIOh1bP{stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,1px),10px)}.sGQhrdY.okHrCLG--centered{left:calc(50% - var(--Spinner2369530196-diameter)/2);position:absolute;top:calc(50% - var(--Spinner2369530196-diameter)/2)}.sGQhrdY.okHrCLG--static,.sGQhrdY.okHrCLG--static .sIOh1bP{animation:none}@keyframes Spinner2369530196__rotate{to{transform:rotate(1turn)}}@keyframes Spinner2369530196__dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.sCptFO_{--SectionNotification1619105799-border-radius:2px;--SectionNotification1619105799-main-vertical-padding:9px;--SectionNotification1619105799-main-compact-vertical-padding:5px;--SectionNotification1619105799-main-left-padding:12px;--SectionNotification1619105799-main-right-padding:16px;--SectionNotification1619105799-content-padding:8px;--SectionNotification1619105799-line-height:20px;--SectionNotification1619105799-default-text-color:0,0,0;--SectionNotification1619105799-default-background-color:0,0,0;--SectionNotification1619105799-success-color:0,130,80;--SectionNotification1619105799-success-icon-color:rgb(var(--SectionNotification1619105799-success-color));--SectionNotification1619105799-wst-background-color:var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-background-color));--SectionNotification1619105799-wired-text-color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));--SectionNotification1619105799-wired-background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),0.05));background-color:#fff;border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));display:flex;height:100%;width:100%}.s_dGes_{background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),.05));border:1px solid hsla(0,0%,100%,.4);border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color))));display:flex;flex:1;flex-wrap:wrap;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;justify-content:center;padding:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-right-padding) var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-left-padding)}.syaQqqO{flex:1;flex-direction:row;padding:6px 0}.sW6Rvh9,.syaQqqO{align-items:center;display:flex}.sW6Rvh9{flex-direction:row;justify-content:center;margin:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-content-padding)}.sW6Rvh9:empty{display:none}.sCWNyRW{height:20px;transform:translateX(calc(-1*(var(--SectionNotification1619105799-content-padding)/2)))}.sCptFO_.oea4HGw--rtl .sCWNyRW{transform:translateX(calc((var(--SectionNotification1619105799-content-padding)/2)))}.sCWNyRW svg{fill:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));color:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));height:var(--SectionNotification1619105799-line-height)}.seJHu5h{flex:1;line-height:var(--SectionNotification1619105799-line-height);margin:0;min-width:200px}.seJHu5h:first-child{margin:0}.sRbY2lp{margin:0 calc(var(--SectionNotification1619105799-content-padding)/2)}.sCptFO_.oea4HGw--error .s_dGes_{background-color:rgb(223,49,49,.1)}.sCptFO_.oea4HGw--alert .s_dGes_{background-color:rgb(255,182,0,.1)}.sCptFO_.oea4HGw--wired{background-color:transparent}.sCptFO_.oea4HGw--wired .s_dGes_{background-color:var(--SectionNotification1619105799-wired-background-color);color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--success .s_dGes_{background-color:rgb(var(--SectionNotification1619105799-success-color),.1)}.sCptFO_.oea4HGw--success .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--error .sCWNyRW svg[fill=currentColor]{color:#df3131}.sCptFO_.oea4HGw--success .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw---size-7-compact .s_dGes_{padding-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);padding-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.sCptFO_.oea4HGw---size-7-compact .sW6Rvh9{margin-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);margin-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.svkvpiH{--WowImage1942816733-transparent:0,0,0,0;--WowImage1942816733-errorTextColor:255,255,255;display:flex;height:100%;position:relative}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain{width:100%}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain>*{align-items:center;border:inherit;border-radius:inherit;display:flex;justify-content:center}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain img{border:inherit;border-radius:inherit;height:unset!important;max-height:100%;max-width:100%;width:unset!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--verticalContainer img{width:min(var(--wut-source-width,100%),100%)!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--horizontalContainer img{height:min(var(--wut-source-height,100%),100%)!important}.svkvpiH.oTSGO_X--noImage{background-color:rgb(var(--wix-color-5),.2)}.svkvpiH img{vertical-align:middle}.svkvpiH.oTSGO_X--focalPoint img{object-position:var(--WowImage1942816733-focalPointX,0) var(--WowImage1942816733-focalPointY,0)}.svkvpiH.oTSGO_X---resize-7-contain .sALFxTu{object-fit:contain}.svkvpiH.oTSGO_X---resize-5-cover .sALFxTu{object-fit:cover}.svkvpiH.oTSGO_X--fluid .sALFxTu{height:100%;overflow:hidden;width:100%}.svkvpiH:not(.oTSGO_X--stretchImage){align-items:center}.svkvpiH.oTSGO_X--fluid:not(.oTSGO_X--stretchImage) .sALFxTu,.svkvpiH:not(.oTSGO_X--stretchImage) .sALFxTu{height:min(var(--wut-source-height,100%),100%);margin:0 auto;width:min(var(--wut-source-width,100%),100%)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom{overflow:hidden}.svkvpiH.oTSGO_X---hoverEffect-4-zoom .sALFxTu{overflow:initial;transform:scale(calc(100/107)) translate(-3.5%,-3.5%);transition:all .5s cubic-bezier(.18,.73,.63,1)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom:hover .sALFxTu{transform:scale(1) translate(-3.5%,-3.5%)}.svkvpiH.oTSGO_X---hoverEffect-6-darken:hover .sALFxTu{filter:brightness(85%) contrast(115%)}.svkvpiH:not(.oTSGO_X--isError){background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--WowImage1942816733-transparent)));border:var(--wix-ui-tpa-wow-image-border-width,0) solid rgb(var(--wix-ui-tpa-wow-image-border-color,var(--WowImage1942816733-transparent)));border-radius:var(--wix-ui-tpa-wow-image-border-radius,0);overflow:hidden}.svkvpiH:not(.oTSGO_X--isError).oTSGO_X--noImage{background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--wix-color-5),.2))}.svkvpiH .sALFxTu{opacity:var(--wix-ui-tpa-wow-image-image-opacity,1)}.svkvpiH.oTSGO_X--isError{background-color:rgb(var(--wix-color-2));position:relative}.svkvpiH.oTSGO_X--isError img{display:none}.svkvpiH .s__6u_3KK{align-items:center;background:rgb(0,0,0,.6);display:flex;flex-direction:column;height:100%;justify-content:center;position:absolute;width:100%;z-index:1}.sCRLHt8{--wix-ui-tpa-text-main-text-color:var(--WowImage1942816733-errorTextColor),1;--wix-ui-tpa-text-main-text-color-rgb:var(--WowImage1942816733-errorTextColor);--wix-ui-tpa-text-main-text-color-opacity:1;--wix-ui-tpa-text-main-text-font-text-decoration:var(--wix-ui-tpa-picker-font-style-text-decoration,var(--wix-font-Body-M-text-decoration));--wix-ui-tpa-text-main-text-font-line-height:var(--wix-ui-tpa-picker-font-style-line-height,1.5em);--wix-ui-tpa-text-main-text-font-family:var(--wix-ui-tpa-picker-font-style-family,var(--wix-font-Body-M-family));--wix-ui-tpa-text-main-text-font-size:var(--wix-ui-tpa-picker-font-style-size,14px);--wix-ui-tpa-text-main-text-font-style:var(--wix-ui-tpa-picker-font-style-style,var(--wix-font-Body-M-style));--wix-ui-tpa-text-main-text-font-variant:var(--wix-ui-tpa-picker-font-style-variant,var(--wix-font-Body-M-variant));--wix-ui-tpa-text-main-text-font-weight:var(--wix-ui-tpa-picker-font-style-weight,var(--wix-font-Body-M-weight))}.sPlOVIi{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sqE7FxN{color:rgb(var(--WowImage1942816733-errorTextColor))}.s__0hdo8Y{background-color:rgb(0,0,0,.6);display:none;height:100%;left:0;position:absolute;top:0;width:100%}.svkvpiH.oTSGO_X--loadSpinner:not(.oTSGO_X--loaded) .s__0hdo8Y{display:block}.s__3_30GG .sIOh1bP{stroke:#fff}.sFouHv5[data-hook=popover-portal]{display:initial}.sFouHv5 .sONxQKD{-webkit-font-smoothing:auto;background-color:#212121;border:1px solid #757575;border-radius:3px;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.1);color:#fff;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:20px;padding:4px 12px}.sFF_I56{margin:0;position:absolute}.sFF_I56,.sFF_I56 svg{display:block}.sFouHv5 .swpyXyw[data-placement*=top].suCSlDU{padding-bottom:6px}.sFouHv5 .swpyXyw[data-placement*=bottom].suCSlDU{padding-top:6px}.sFouHv5 .swpyXyw[data-placement*=left].suCSlDU{padding-right:6px}.sFouHv5 .swpyXyw[data-placement*=right].suCSlDU{padding-left:6px}.sFouHv5 .swpyXyw[data-placement*=top] .sFF_I56{bottom:-1px;height:7px;width:12px}.sFouHv5 .swpyXyw[data-placement*=bottom] .sFF_I56{height:7px;top:-1px;width:12px}.sFouHv5 .swpyXyw[data-placement*=left] .sFF_I56{height:12px;right:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=right] .sFF_I56{height:12px;left:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=top].sneWtR8{opacity:0;transform:scale(.9) translateY(3px)}.sFouHv5 .swpyXyw[data-placement*=bottom].sneWtR8{opacity:0;transform:scale(.9) translateY(-3px)}.sFouHv5 .swpyXyw[data-placement*=left].sneWtR8{opacity:0;transform:scale(.9) translateX(10px)}.sFouHv5 .swpyXyw[data-placement*=right].sneWtR8{opacity:0;transform:scale(.9) translateX(-10px)}.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{transition:transform .12s cubic-bezier(.25,.46,.45,.94),applyOpacity .12s cubic-bezier(.25,.46,.45,.94)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk,.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{opacity:1;transform:scale(1) translateY(0) translateX(0)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk.s__8Gqg5Z{opacity:0;transition:transform 80ms linear,applyOpacity 80ms linear}.sFouHv5.oFo_c_7---skin-5-error .sONxQKD{background-color:#df3131;border:1px solid hsla(0,0%,100%,.25)}.sFouHv5.oFo_c_7---skin-5-wired .sONxQKD{background-color:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-color:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wst-primary-background-color-rgb, var(--wix-color-1))));color:rgb(var(--wix-ui-tpa-tooltip-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path{fill:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wix-color-5)));stroke:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wix-color-5)))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:first-child{stroke:none}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:last-child{stroke-dasharray:0 17 17}.sFouHv5.oFo_c_7---skin-5-error .sFF_I56 path{fill:#df3131}.sSMZABS{--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal:rgb(var(--wix-ui-tpa-text-button-background-color));--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);background-color:var(--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal,transparent);border:0;font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));padding:0;text-decoration:none;text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV---priority-7-primary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))))}.sSMZABS.o__9L4TsV---priority-7-primary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV---priority-9-secondary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.sSMZABS.o__9L4TsV---priority-9-secondary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-7-primary.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-9-secondary.oX5PGLp--disabled{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.sNefrcN svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.sNefrcN svg:not([fill=currentColor]) path{stroke:currentColor;fill:none}.sL_FHv6:after,.sekO3oo:before{content:"";display:inline-block;height:1px;width:4px}.sjqP4Mv{--wix-ui-tpa-wow-image-background-color:var(--wix-ui-tpa-image-background-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-rgb:var(--wix-ui-tpa-image-background-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-opacity:var(--wix-ui-tpa-image-background-color-opacity);--wix-ui-tpa-wow-image-border-color:var(--wix-ui-tpa-image-border-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-rgb:var(--wix-ui-tpa-image-border-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-opacity:var(--wix-ui-tpa-image-border-color-opacity);--wix-ui-tpa-wow-image-border-width:var(--wix-ui-tpa-image-border-width);--wix-ui-tpa-wow-image-border-radius:var(--wix-ui-tpa-image-border-radius);--wix-ui-tpa-wow-image-image-opacity:var(--wix-ui-tpa-image-image-opacity)}.sjoXYIP{align-items:center;display:flex;justify-content:center}.sYygboQ{background-color:transparent;border:0;padding:0}.sYygboQ,.sjoXYIP{line-height:0}.sCD6_14 svg,.sjoXYIP{height:24px;width:24px}.sZstSKX{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.s__1NTrOu{border:0;display:inline-block;line-height:0;margin:0;padding:0;text-decoration:none}.s__1NTrOu.o__1Y_w3J--focus,.s__1NTrOu:hover{opacity:var(--wix-ui-tpa-icon-button-hover-opacity,.7)}.s__1NTrOu.o__0LZdzr--disabled{cursor:default}.s__1NTrOu.o__0LZdzr--disabled:hover{opacity:1}.sVnJn5y svg{display:block}.s__1NTrOu.o__0LZdzr--disabled.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));fill:none}.s__1NTrOu.o__0LZdzr--disabled.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---skin-4-line .sVnJn5y svg:not([fill=currentColor]) path,.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));fill:none}.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path,.s__1NTrOu.o__0LZdzr---skin-4-full .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu.o__0LZdzr--disabled .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---theme-4-none{background-color:transparent}.s__1NTrOu.o__0LZdzr---theme-3-box{align-items:center;background-color:rgb(var(--wix-ui-tpa-icon-button-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-radius:50%;display:inline-flex;height:32px;justify-content:center;width:32px}.sWHTiwe{--Button4291672415-primaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));--Button4291672415-primaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-primaryBorderColor));--Button4291672415-primaryHoverLegacyBorderColor:var(--Button4291672415-primaryHoverBorderColor),0.7;--Button4291672415-primaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-45))));--Button4291672415-secondaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--wix-color-48)));--Button4291672415-secondaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-secondaryBorderColor));--Button4291672415-secondaryHoverLegacyBorderColor:var(--Button4291672415-secondaryHoverBorderColor),0.7;--Button4291672415-secondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-54)));--Button4291672415-basicBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)));--Button4291672415-basicHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-basicBorderColor));--Button4291672415-basicHoverLegacyBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));--Button4291672415-basicSecondaryBorderColor:var(--Button4291672415-basicBorderColor);--Button4291672415-basicSecondaryHoverBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicSecondaryHoverLegacyBorderColor:var(--Button4291672415-basicSecondaryHoverBorderColor),0.7;--Button4291672415-basicSecondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29)));--Button4291672415-basicBorderWidth:0px;--Button4291672415-basicBorderExPaddingWidth:1px;--Button4291672415-basicSecondaryBorderWidth:1px;--Button4291672415-primaryBorderWidth:0px;--Button4291672415-primaryBorderExPaddingWidth:1px;--Button4291672415-secondaryBorderWidth:1px;--Button4291672415-borderStyle:solid;border-color:rgb(var(--wix-ui-tpa-button-main-border-color,var(--wix-color-39)));border-radius:var(--wix-ui-tpa-button-main-border-radius,0);border-style:solid;box-shadow:var(--wix-ui-tpa-button-main-box-shadow,0 0);box-sizing:content-box;font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing);line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));min-width:var(--wix-ui-tpa-button-min-width,100px);text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,0 0 transparent),var(--wix-ui-tpa-button-main-text-outline,0 0 transparent);text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out,border-width .2s ease-in-out}.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,underline)!important}.sWHTiwe .sezcxt9{margin:0 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_--fullWidth{box-sizing:border-box;width:100%}.sWHTiwe,.sWHTiwe.ojChOw_---priority-5-basic{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5),.7))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1),.7))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-color-1),0));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-primary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-primary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-primary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-primary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-primary-text-transform))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40)))))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-41))),calc(var(--wix-ui-tpa-button-main-background-color-opacity, 1) * .7)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-primary-color-rgb,var(--wix-color-43))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary .sewooAr{background-color:var(--wst-button-primary-text-highlight)}.sWHTiwe.ojChOw_---priority-9-secondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-secondary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-secondary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-secondary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-secondary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-secondary-text-transform))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-50),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-secondary-color-rgb,var(--wix-color-52))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sewooAr{background-color:var(--wst-button-secondary-text-highlight)}.sWHTiwe.oX5PGLp--disabled,.sWHTiwe.ojChOw_---priority-5-basic.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));border-color:rgb(var(--Button4291672415-basicDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-7-primary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-44))));border-color:rgb(var(--Button4291672415-primaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-46)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-disabled-background-color-opacity, 1)*0));border-color:rgb(var(--Button4291672415-basicSecondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.sWHTiwe.ojChOw_---priority-9-secondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-53))));border-color:rgb(var(--Button4291672415-secondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-secondary-background-color-rgb,var(--wix-color-55))))}.sWHTiwe.ojChOw_---size-4-tiny{padding:6px 16px}.sWHTiwe.ojChOw_---size-4-tiny.shzMJp6{padding:5.5px 16px}.sWHTiwe.ojChOw_---size-5-small{padding:7px 16px}.sWHTiwe,.sWHTiwe.ojChOw_---size-6-medium{padding:8px 16px}.sWHTiwe.ojChOw_---size-5-large,.sWHTiwe.ojChOw_--mobile,.sWHTiwe.ojChOw_--mobile.ojChOw_---size-6-medium{padding:10px 16px}.sbyYhb2 svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.s__19X6Eo:before,.segOfcF:after{content:"";display:inline-block;height:1px;width:var(--wix-ui-tpa-button-column-gap,4px)}.sWHTiwe .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-1)));transition:color .2s ease-in-out}.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-49)))}.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-52)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-5)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings{box-sizing:border-box;display:inline-flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings .sezcxt9,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings .sezcxt9{overflow:visible;text-overflow:unset;white-space:unset}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_--wrapContent{line-height:1.3!important;white-space:normal}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large:not(.ojChOw_--mobile),.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small:not(.ojChOw_--mobile){line-height:1}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_---size-4-tiny{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--mobile{padding:calc(17px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(14.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{border-width:var(--wix-ui-tpa-button-main-border-width,1px);padding-inline-end:var(--wix-ui-tpa-button-padding-inline-end,15px);padding-inline-start:var(--wix-ui-tpa-button-padding-inline-start,15px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:not(.ojChOw_---hoverStyle-9-underline):hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.oX5PGLp--disabled,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-small{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,5px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,5px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,7px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,7px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-large{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,11px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,11px)}.spPayPE{border-style:solid;box-sizing:border-box;cursor:pointer;display:block;overflow:hidden;position:relative;text-align:center;text-overflow:ellipsis;white-space:nowrap}.spPayPE .sewooAr{display:block;line-height:1.5}.spPayPE.ohrgDww--upgrade .sewooAr{display:inline-block;line-height:1}.syQvNy_{animation:StatesButton4232694921__bounce-in .5s ease 0s 1 normal;height:1.5em;top:.15em}.scujjIz{height:1.5em;width:1.5em}@keyframes StatesButton4232694921__bounce-in{0%{opacity:0;transform:translateY(30px)}32%{opacity:1;transform:translateY(-5px)}68%{opacity:1;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}.shszO9W{--wix-ui-tpa-text-field-main-label-font-text-decoration:var(--wix-forms-formInputLabelFont-text-decoration);--wix-ui-tpa-text-field-main-label-font-line-height:var(--wix-forms-formInputLabelFont-line-height);--wix-ui-tpa-text-field-main-label-font-family:var(--wix-forms-formInputLabelFont-family);--wix-ui-tpa-text-field-main-label-font-size:var(--wix-forms-formInputLabelFont-size);--wix-ui-tpa-text-field-main-label-font-style:var(--wix-forms-formInputLabelFont-style);--wix-ui-tpa-text-field-main-label-font-variant:var(--wix-forms-formInputLabelFont-variant);--wix-ui-tpa-text-field-main-label-font-weight:var(--wix-forms-formInputLabelFont-weight);--wix-ui-tpa-text-field-main-label-text-color:var(--wix-forms-formInputLabelColor);--wix-ui-tpa-text-field-main-label-text-color-rgb:var(--wix-forms-formInputLabelColor-rgb);--wix-ui-tpa-text-field-main-label-text-color-opacity:var(--wix-forms-formInputLabelColor-opacity);word-break:break-word}.shszO9W:empty:before{content:"\200B"}.shszO9W.sE7EeYv{display:block;height:0;margin:0;padding:0;visibility:hidden}.sHbjjkq{margin-inline-start:4px}.sHbjjkq,.smK0B6B{display:inline-block}.smK0B6B{margin-inline-end:4px}.sJ4C9d2{display:flex;flex-direction:column}.s__94TG4h{border-radius:8px;margin-bottom:8px;overflow:hidden;width:100%}.snZ_6f6{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-main-border-opacity:1;--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-disabled-color:var(--wix-forms-formInputDisabledValueColor);--wix-ui-tpa-text-field-main-text-disabled-color-rgb:var(--wix-forms-formInputDisabledValueColor-rgb);--wix-ui-tpa-text-field-main-text-disabled-color-opacity:var(--wix-forms-formInputDisabledValueColor-opacity);--wix-ui-tpa-text-field-readonly-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-readonly-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-readonly-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-readonly-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-readonly-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-readonly-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-readonly-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-readonly-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-readonly-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-readonly-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);--wix-ui-tpa-text-field-readonly-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-readonly-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-readonly-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-readonly-border-color:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)));--wix-ui-tpa-text-field-readonly-border-color-rgb:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -rgb);--wix-ui-tpa-text-field-readonly-border-color-opacity:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -opacity);--wix-ui-tpa-text-field-readonly-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-readonly-border-radius:var(--wix-forms-formInputBorderRadius);display:flex;flex-direction:column}.snZ_6f6 [placeholder]{text-overflow:ellipsis}.snZ_6f6 input::placeholder{color:rgb(var(--wix-forms-formInputPlaceholderColor,var(--wix-color-4)))!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{border-radius:var(--wix-forms-formInputBorderRadius,0)!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColor-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColor-opacity, 1)*--wix-forms-formInputBackgroundColor-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColorHover-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColorHover-opacity, 1)*--wix-forms-formInputBackgroundColorHover-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.sWgi58w{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);display:flex;flex-direction:column}.sy1z4yI{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:0px;--wix-ui-tpa-text-field-hover-border-width:0px;--wix-ui-tpa-text-field-readonly-border-width:0px;--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.s_wEX56{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity)}.snZ_6f6 div[data-theme=line]{padding-inline-start:12px}.sL5d0Ld div:has(>input){border-bottom-width:var(--wix-forms-formInputBorderBottomWidth,1px)!important;border-left-width:var(--wix-forms-formInputBorderLeftWidth,1px)!important;border-right-width:var(--wix-forms-formInputBorderRightWidth,1px)!important;border-top-width:var(--wix-forms-formInputBorderTopWidth,1px)!important}@media (forced-colors:active){.sL5d0Ld div:has(>input){border:1px solid CanvasText!important}.snZ_6f6:focus-within div:has(>input){outline:2px solid Highlight!important;outline-offset:2px!important}.sL5d0Ld div:has(>input):hover:not(:focus-within){outline:1px dashed CanvasText!important;outline-offset:1px!important}}.sN4uTVR,.s__5kY7XA{--wix-forms-formHeaderOneFont-text-decoration:var(--headerOneFont-text-decoration);--wix-forms-formHeaderOneFont-line-height:var(--headerOneFont-line-height);--wix-forms-formHeaderOneFont-family:var(--headerOneFont-family);--wix-forms-formHeaderOneFont-size:var(--headerOneFont-size);--wix-forms-formHeaderOneFont-style:var(--headerOneFont-style);--wix-forms-formHeaderOneFont-variant:var(--headerOneFont-variant);--wix-forms-formHeaderOneFont-weight:var(--headerOneFont-weight);--wix-forms-formHeaderOneColor:var(--headerOneColor);--wix-forms-formHeaderOneColor-rgb:var(--headerOneColor-rgb);--wix-forms-formHeaderOneColor-opacity:var(--headerOneColor-opacity);--wix-forms-formHeaderTwoFont-text-decoration:var(--headerTwoFont-text-decoration);--wix-forms-formHeaderTwoFont-line-height:var(--headerTwoFont-line-height);--wix-forms-formHeaderTwoFont-family:var(--headerTwoFont-family);--wix-forms-formHeaderTwoFont-size:var(--headerTwoFont-size);--wix-forms-formHeaderTwoFont-style:var(--headerTwoFont-style);--wix-forms-formHeaderTwoFont-variant:var(--headerTwoFont-variant);--wix-forms-formHeaderTwoFont-weight:var(--headerTwoFont-weight);--wix-forms-formHeaderTwoColor:var(--headerTwoColor);--wix-forms-formHeaderTwoColor-rgb:var(--headerTwoColor-rgb);--wix-forms-formHeaderTwoColor-opacity:var(--headerTwoColor-opacity);--wix-forms-formHeaderOneFontH1-text-decoration:var(--headerOneFontH1-text-decoration);--wix-forms-formHeaderOneFontH1-line-height:var(--headerOneFontH1-line-height);--wix-forms-formHeaderOneFontH1-family:var(--headerOneFontH1-family);--wix-forms-formHeaderOneFontH1-size:var(--headerOneFontH1-size);--wix-forms-formHeaderOneFontH1-style:var(--headerOneFontH1-style);--wix-forms-formHeaderOneFontH1-variant:var(--headerOneFontH1-variant);--wix-forms-formHeaderOneFontH1-weight:var(--headerOneFontH1-weight);--wix-forms-formHeaderTwoFontH2-text-decoration:var(--headerTwoFontH2-text-decoration);--wix-forms-formHeaderTwoFontH2-line-height:var(--headerTwoFontH2-line-height);--wix-forms-formHeaderTwoFontH2-family:var(--headerTwoFontH2-family);--wix-forms-formHeaderTwoFontH2-size:var(--headerTwoFontH2-size);--wix-forms-formHeaderTwoFontH2-style:var(--headerTwoFontH2-style);--wix-forms-formHeaderTwoFontH2-variant:var(--headerTwoFontH2-variant);--wix-forms-formHeaderTwoFontH2-weight:var(--headerTwoFontH2-weight);--wix-forms-formHeaderThreeFont-text-decoration:var(--headerThreeFont-text-decoration);--wix-forms-formHeaderThreeFont-line-height:var(--headerThreeFont-line-height);--wix-forms-formHeaderThreeFont-family:var(--headerThreeFont-family);--wix-forms-formHeaderThreeFont-size:var(--headerThreeFont-size);--wix-forms-formHeaderThreeFont-style:var(--headerThreeFont-style);--wix-forms-formHeaderThreeFont-variant:var(--headerThreeFont-variant);--wix-forms-formHeaderThreeFont-weight:var(--headerThreeFont-weight);--wix-forms-formHeaderThreeColor:var(--headerThreeColor);--wix-forms-formHeaderThreeColor-rgb:var(--headerThreeColor-rgb);--wix-forms-formHeaderThreeColor-opacity:var(--headerThreeColor-opacity);--wix-forms-formHeaderFourFont-text-decoration:var(--headerFourFont-text-decoration);--wix-forms-formHeaderFourFont-line-height:var(--headerFourFont-line-height);--wix-forms-formHeaderFourFont-family:var(--headerFourFont-family);--wix-forms-formHeaderFourFont-size:var(--headerFourFont-size);--wix-forms-formHeaderFourFont-style:var(--headerFourFont-style);--wix-forms-formHeaderFourFont-variant:var(--headerFourFont-variant);--wix-forms-formHeaderFourFont-weight:var(--headerFourFont-weight);--wix-forms-formHeaderFourColor:var(--headerFourColor);--wix-forms-formHeaderFourColor-rgb:var(--headerFourColor-rgb);--wix-forms-formHeaderFourColor-opacity:var(--headerFourColor-opacity);--wix-forms-formHeaderFiveFont-text-decoration:var(--headerFiveFont-text-decoration);--wix-forms-formHeaderFiveFont-line-height:var(--headerFiveFont-line-height);--wix-forms-formHeaderFiveFont-family:var(--headerFiveFont-family);--wix-forms-formHeaderFiveFont-size:var(--headerFiveFont-size);--wix-forms-formHeaderFiveFont-style:var(--headerFiveFont-style);--wix-forms-formHeaderFiveFont-variant:var(--headerFiveFont-variant);--wix-forms-formHeaderFiveFont-weight:var(--headerFiveFont-weight);--wix-forms-formHeaderFiveColor:var(--headerFiveColor);--wix-forms-formHeaderFiveColor-rgb:var(--headerFiveColor-rgb);--wix-forms-formHeaderFiveColor-opacity:var(--headerFiveColor-opacity);--wix-forms-formHeaderSixFont-text-decoration:var(--headerSixFont-text-decoration);--wix-forms-formHeaderSixFont-line-height:var(--headerSixFont-line-height);--wix-forms-formHeaderSixFont-family:var(--headerSixFont-family);--wix-forms-formHeaderSixFont-size:var(--headerSixFont-size);--wix-forms-formHeaderSixFont-style:var(--headerSixFont-style);--wix-forms-formHeaderSixFont-variant:var(--headerSixFont-variant);--wix-forms-formHeaderSixFont-weight:var(--headerSixFont-weight);--wix-forms-formHeaderSixColor:var(--headerSixColor);--wix-forms-formHeaderSixColor-rgb:var(--headerSixColor-rgb);--wix-forms-formHeaderSixColor-opacity:var(--headerSixColor-opacity);--wix-forms-formParagraphFont-text-decoration:var(--paragraphFont-text-decoration);--wix-forms-formParagraphFont-line-height:var(--paragraphFont-line-height);--wix-forms-formParagraphFont-family:var(--paragraphFont-family);--wix-forms-formParagraphFont-size:var(--paragraphFont-size);--wix-forms-formParagraphFont-style:var(--paragraphFont-style);--wix-forms-formParagraphFont-variant:var(--paragraphFont-variant);--wix-forms-formParagraphFont-weight:var(--paragraphFont-weight);--wix-forms-formParagraphColor:var(--paragraphColor);--wix-forms-formParagraphColor-rgb:var(--paragraphColor-rgb);--wix-forms-formParagraphColor-opacity:var(--paragraphColor-opacity);--wix-forms-formInputBackgroundColor:var(--inputBackgroundColor);--wix-forms-formInputBackgroundColor-rgb:var(--inputBackgroundColor-rgb);--wix-forms-formInputBackgroundColor-opacity:var(--inputBackgroundColor-opacity);--wix-forms-formInputBackgroundColorHover:var(--inputBackgroundColorHover);--wix-forms-formInputBackgroundColorHover-rgb:var(--inputBackgroundColorHover-rgb);--wix-forms-formInputBackgroundColorHover-opacity:var(--inputBackgroundColorHover-opacity);--wix-forms-formInputBorderColor:var(--inputBorderColor);--wix-forms-formInputBorderColor-rgb:var(--inputBorderColor-rgb);--wix-forms-formInputBorderColor-opacity:var(--inputBorderColor-opacity);--wix-forms-formInputBorderColorHover:var(--inputBorderColorHover);--wix-forms-formInputBorderColorHover-rgb:var(--inputBorderColorHover-rgb);--wix-forms-formInputBorderColorHover-opacity:var(--inputBorderColorHover-opacity);--wix-forms-formInputBorderWidth:calc(var(--inputBorderWidth) * 1px);--wix-forms-formInputBorderWidthHover:calc(var(--inputBorderWidthHover) * 1px);--wix-forms-formInputLabelFont-text-decoration:var(--inputLabelFont-text-decoration);--wix-forms-formInputLabelFont-line-height:var(--inputLabelFont-line-height);--wix-forms-formInputLabelFont-family:var(--inputLabelFont-family);--wix-forms-formInputLabelFont-size:var(--inputLabelFont-size);--wix-forms-formInputLabelFont-style:var(--inputLabelFont-style);--wix-forms-formInputLabelFont-variant:var(--inputLabelFont-variant);--wix-forms-formInputLabelFont-weight:var(--inputLabelFont-weight);--wix-forms-formInputLabelColor:var(--inputLabelColor);--wix-forms-formInputLabelColor-rgb:var(--inputLabelColor-rgb);--wix-forms-formInputLabelColor-opacity:var(--inputLabelColor-opacity);--wix-forms-formInputValueFont-text-decoration:var(--inputValueFont-text-decoration);--wix-forms-formInputValueFont-line-height:var(--inputValueFont-line-height);--wix-forms-formInputValueFont-family:var(--inputValueFont-family);--wix-forms-formInputValueFont-size:var(--inputValueFont-size);--wix-forms-formInputValueFont-style:var(--inputValueFont-style);--wix-forms-formInputValueFont-variant:var(--inputValueFont-variant);--wix-forms-formInputValueFont-weight:var(--inputValueFont-weight);--wix-forms-formInputValueColor:var(--inputValueColor);--wix-forms-formInputValueColor-rgb:var(--inputValueColor-rgb);--wix-forms-formInputValueColor-opacity:var(--inputValueColor-opacity);--wix-forms-formInputOptionColor:var(--inputOptionColor);--wix-forms-formInputOptionColor-rgb:var(--inputOptionColor-rgb);--wix-forms-formInputOptionColor-opacity:var(--inputOptionColor-opacity);--wix-forms-formInputPlaceholderColor:var(--inputPlaceholderColor);--wix-forms-formInputPlaceholderColor-rgb:var(--inputPlaceholderColor-rgb);--wix-forms-formInputPlaceholderColor-opacity:var(--inputPlaceholderColor-opacity);--wix-forms-formInputErrorColor:var(--inputErrorColor);--wix-forms-formInputErrorColor-rgb:var(--inputErrorColor-rgb);--wix-forms-formInputErrorColor-opacity:var(--inputErrorColor-opacity);--wix-forms-formInputBorderRadius:calc(var(--inputBorderRadius) * 1px);--wix-forms-formLinkColor:var(--linkColor);--wix-forms-formLinkColor-rgb:var(--linkColor-rgb);--wix-forms-formLinkColor-opacity:var(--linkColor-opacity);--wix-forms-formThankYouMessageFont-text-decoration:var(--thankYouMessageFont-text-decoration);--wix-forms-formThankYouMessageFont-line-height:var(--thankYouMessageFont-line-height);--wix-forms-formThankYouMessageFont-family:var(--thankYouMessageFont-family);--wix-forms-formThankYouMessageFont-size:var(--thankYouMessageFont-size);--wix-forms-formThankYouMessageFont-style:var(--thankYouMessageFont-style);--wix-forms-formThankYouMessageFont-variant:var(--thankYouMessageFont-variant);--wix-forms-formThankYouMessageFont-weight:var(--thankYouMessageFont-weight);--wix-forms-formThankYouMessageColor:var(--thankYouMessageColor);--wix-forms-formThankYouMessageColor-rgb:var(--thankYouMessageColor-rgb);--wix-forms-formThankYouMessageColor-opacity:var(--thankYouMessageColor-opacity);--wix-forms-formInputBorderStyle:var(--inputBorderStyle);--wix-forms-formInputSelectionColor:var(--inputSelectionColor);--wix-forms-formInputSelectionColor-rgb:var(--inputSelectionColor-rgb);--wix-forms-formInputSelectionColor-opacity:var(--inputSelectionColor-opacity);--wix-forms-formDropdownBackgroundColor:var(--dropdownBackgroundColor);--wix-forms-formDropdownBackgroundColor-rgb:var(--dropdownBackgroundColor-rgb);--wix-forms-formDropdownBackgroundColor-opacity:var(--dropdownBackgroundColor-opacity);--wix-forms-formDropdownOptionTextColor:var(--dropdownOptionTextColor);--wix-forms-formDropdownOptionTextColor-rgb:var(--dropdownOptionTextColor-rgb);--wix-forms-formDropdownOptionTextColor-opacity:var(--dropdownOptionTextColor-opacity);--wix-forms-formInputNoteFont-text-decoration:var(--inputNoteFont-text-decoration);--wix-forms-formInputNoteFont-line-height:var(--inputNoteFont-line-height);--wix-forms-formInputNoteFont-family:var(--inputNoteFont-family);--wix-forms-formInputNoteFont-size:var(--inputNoteFont-size);--wix-forms-formInputNoteFont-style:var(--inputNoteFont-style);--wix-forms-formInputNoteFont-variant:var(--inputNoteFont-variant);--wix-forms-formInputNoteFont-weight:var(--inputNoteFont-weight);--wix-forms-formInputNoteColor:var(--inputNoteColor);--wix-forms-formInputNoteColor-rgb:var(--inputNoteColor-rgb);--wix-forms-formInputNoteColor-opacity:var(--inputNoteColor-opacity);--wix-forms-formButtonsColor:var(--buttonsColor);--wix-forms-formButtonsColor-rgb:var(--buttonsColor-rgb);--wix-forms-formButtonsColor-opacity:var(--buttonsColor-opacity);--wix-forms-formButtonsColorHover:var(--buttonsColorHover);--wix-forms-formButtonsColorHover-rgb:var(--buttonsColorHover-rgb);--wix-forms-formButtonsColorHover-opacity:var(--buttonsColorHover-opacity);--wix-forms-formButtonsBackgroundColor:var(--buttonsBackgroundColor);--wix-forms-formButtonsBackgroundColor-rgb:var(--buttonsBackgroundColor-rgb);--wix-forms-formButtonsBackgroundColor-opacity:var(--buttonsBackgroundColor-opacity);--wix-forms-formButtonsBackgroundColorHover:var(--buttonsBackgroundColorHover);--wix-forms-formButtonsBackgroundColorHover-rgb:var(--buttonsBackgroundColorHover-rgb);--wix-forms-formButtonsBackgroundColorHover-opacity:var(--buttonsBackgroundColorHover-opacity);--wix-forms-formButtonsBorderColor:var(--buttonsBorderColor);--wix-forms-formButtonsBorderColor-rgb:var(--buttonsBorderColor-rgb);--wix-forms-formButtonsBorderColor-opacity:var(--buttonsBorderColor-opacity);--wix-forms-formButtonsBorderWidth:calc(var(--buttonsBorderWidth) * 1px);--wix-forms-formButtonsBorderRadius:calc(var(--buttonsBorderRadius) * 1px);--wix-forms-formButtonsFont-text-decoration:var(--buttonsFont-text-decoration);--wix-forms-formButtonsFont-line-height:var(--buttonsFont-line-height);--wix-forms-formButtonsFont-family:var(--buttonsFont-family);--wix-forms-formButtonsFont-size:var(--buttonsFont-size);--wix-forms-formButtonsFont-style:var(--buttonsFont-style);--wix-forms-formButtonsFont-variant:var(--buttonsFont-variant);--wix-forms-formButtonsFont-weight:var(--buttonsFont-weight);--wix-forms-formButtonsFontHover-text-decoration:var(--buttonsFontHover-text-decoration);--wix-forms-formButtonsFontHover-line-height:var(--buttonsFontHover-line-height);--wix-forms-formButtonsFontHover-family:var(--buttonsFontHover-family);--wix-forms-formButtonsFontHover-size:var(--buttonsFontHover-size);--wix-forms-formButtonsFontHover-style:var(--buttonsFontHover-style);--wix-forms-formButtonsFontHover-variant:var(--buttonsFontHover-variant);--wix-forms-formButtonsFontHover-weight:var(--buttonsFontHover-weight);--wix-forms-formNextButtonFont-text-decoration:var(--nextButtonFont-text-decoration);--wix-forms-formNextButtonFont-line-height:var(--nextButtonFont-line-height);--wix-forms-formNextButtonFont-family:var(--nextButtonFont-family);--wix-forms-formNextButtonFont-size:var(--nextButtonFont-size);--wix-forms-formNextButtonFont-style:var(--nextButtonFont-style);--wix-forms-formNextButtonFont-variant:var(--nextButtonFont-variant);--wix-forms-formNextButtonFont-weight:var(--nextButtonFont-weight);--wix-forms-formNextButtonFontHover-text-decoration:var(--nextButtonFontHover-text-decoration);--wix-forms-formNextButtonFontHover-line-height:var(--nextButtonFontHover-line-height);--wix-forms-formNextButtonFontHover-family:var(--nextButtonFontHover-family);--wix-forms-formNextButtonFontHover-size:var(--nextButtonFontHover-size);--wix-forms-formNextButtonFontHover-style:var(--nextButtonFontHover-style);--wix-forms-formNextButtonFontHover-variant:var(--nextButtonFontHover-variant);--wix-forms-formNextButtonFontHover-weight:var(--nextButtonFontHover-weight);--wix-forms-formNextButtonColor:var(--nextButtonColor);--wix-forms-formNextButtonColor-rgb:var(--nextButtonColor-rgb);--wix-forms-formNextButtonColor-opacity:var(--nextButtonColor-opacity);--wix-forms-formNextButtonColorHover:var(--nextButtonColorHover);--wix-forms-formNextButtonColorHover-rgb:var(--nextButtonColorHover-rgb);--wix-forms-formNextButtonColorHover-opacity:var(--nextButtonColorHover-opacity);--wix-forms-formNextButtonBackgroundColor:var(--nextButtonBackgroundColor);--wix-forms-formNextButtonBackgroundColor-rgb:var(--nextButtonBackgroundColor-rgb);--wix-forms-formNextButtonBackgroundColor-opacity:var(--nextButtonBackgroundColor-opacity);--wix-forms-formNextButtonBackgroundColorHover:var(--nextButtonBackgroundColorHover);--wix-forms-formNextButtonBackgroundColorHover-rgb:var(--nextButtonBackgroundColorHover-rgb);--wix-forms-formNextButtonBackgroundColorHover-opacity:var(--nextButtonBackgroundColorHover-opacity);--wix-forms-formNextButtonBorderColor:var(--nextButtonBorderColor);--wix-forms-formNextButtonBorderColor-rgb:var(--nextButtonBorderColor-rgb);--wix-forms-formNextButtonBorderColor-opacity:var(--nextButtonBorderColor-opacity);--wix-forms-formNextButtonBorderColorHover:var(--nextButtonBorderColorHover);--wix-forms-formNextButtonBorderColorHover-rgb:var(--nextButtonBorderColorHover-rgb);--wix-forms-formNextButtonBorderColorHover-opacity:var(--nextButtonBorderColorHover-opacity);--wix-forms-formNextButtonBorderWidth:calc(var(--nextButtonBorderWidth) * 1px);--wix-forms-formNextButtonBorderRadius:calc(var(--nextButtonBorderRadius) * 1px);--wix-forms-formPreviousButtonFont-text-decoration:var(--previousButtonFont-text-decoration);--wix-forms-formPreviousButtonFont-line-height:var(--previousButtonFont-line-height);--wix-forms-formPreviousButtonFont-family:var(--previousButtonFont-family);--wix-forms-formPreviousButtonFont-size:var(--previousButtonFont-size);--wix-forms-formPreviousButtonFont-style:var(--previousButtonFont-style);--wix-forms-formPreviousButtonFont-variant:var(--previousButtonFont-variant);--wix-forms-formPreviousButtonFont-weight:var(--previousButtonFont-weight);--wix-forms-formPreviousButtonFontHover-text-decoration:var(--previousButtonFontHover-text-decoration);--wix-forms-formPreviousButtonFontHover-line-height:var(--previousButtonFontHover-line-height);--wix-forms-formPreviousButtonFontHover-family:var(--previousButtonFontHover-family);--wix-forms-formPreviousButtonFontHover-size:var(--previousButtonFontHover-size);--wix-forms-formPreviousButtonFontHover-style:var(--previousButtonFontHover-style);--wix-forms-formPreviousButtonFontHover-variant:var(--previousButtonFontHover-variant);--wix-forms-formPreviousButtonFontHover-weight:var(--previousButtonFontHover-weight);--wix-forms-formPreviousButtonColor:var(--previousButtonColor);--wix-forms-formPreviousButtonColor-rgb:var(--previousButtonColor-rgb);--wix-forms-formPreviousButtonColor-opacity:var(--previousButtonColor-opacity);--wix-forms-formPreviousButtonColorHover:var(--previousButtonColorHover);--wix-forms-formPreviousButtonColorHover-rgb:var(--previousButtonColorHover-rgb);--wix-forms-formPreviousButtonColorHover-opacity:var(--previousButtonColorHover-opacity);--wix-forms-formPreviousButtonBackgroundColor:var(--previousButtonBackgroundColor);--wix-forms-formPreviousButtonBackgroundColor-rgb:var(--previousButtonBackgroundColor-rgb);--wix-forms-formPreviousButtonBackgroundColor-opacity:var(--previousButtonBackgroundColor-opacity);--wix-forms-formPreviousButtonBackgroundColorHover:var(--previousButtonBackgroundColorHover);--wix-forms-formPreviousButtonBackgroundColorHover-rgb:var(--previousButtonBackgroundColorHover-rgb);--wix-forms-formPreviousButtonBackgroundColorHover-opacity:var(--previousButtonBackgroundColorHover-opacity);--wix-forms-formPreviousButtonBorderColor:var(--previousButtonBorderColor);--wix-forms-formPreviousButtonBorderColor-rgb:var(--previousButtonBorderColor-rgb);--wix-forms-formPreviousButtonBorderColor-opacity:var(--previousButtonBorderColor-opacity);--wix-forms-formPreviousButtonBorderColorHover:var(--previousButtonBorderColorHover);--wix-forms-formPreviousButtonBorderColorHover-rgb:var(--previousButtonBorderColorHover-rgb);--wix-forms-formPreviousButtonBorderColorHover-opacity:var(--previousButtonBorderColorHover-opacity);--wix-forms-formPreviousButtonBorderWidth:calc(var(--previousButtonBorderWidth) * 1px);--wix-forms-formPreviousButtonBorderRadius:calc(var(--previousButtonBorderRadius) * 1px);--wix-forms-formSubmitButtonFont-text-decoration:var(--submitButtonFont-text-decoration);--wix-forms-formSubmitButtonFont-line-height:var(--submitButtonFont-line-height);--wix-forms-formSubmitButtonFont-family:var(--submitButtonFont-family);--wix-forms-formSubmitButtonFont-size:var(--submitButtonFont-size);--wix-forms-formSubmitButtonFont-style:var(--submitButtonFont-style);--wix-forms-formSubmitButtonFont-variant:var(--submitButtonFont-variant);--wix-forms-formSubmitButtonFont-weight:var(--submitButtonFont-weight);--wix-forms-formSubmitButtonFontHover-text-decoration:var(--submitButtonFontHover-text-decoration);--wix-forms-formSubmitButtonFontHover-line-height:var(--submitButtonFontHover-line-height);--wix-forms-formSubmitButtonFontHover-family:var(--submitButtonFontHover-family);--wix-forms-formSubmitButtonFontHover-size:var(--submitButtonFontHover-size);--wix-forms-formSubmitButtonFontHover-style:var(--submitButtonFontHover-style);--wix-forms-formSubmitButtonFontHover-variant:var(--submitButtonFontHover-variant);--wix-forms-formSubmitButtonFontHover-weight:var(--submitButtonFontHover-weight);--wix-forms-formSubmitButtonColor:var(--submitButtonColor);--wix-forms-formSubmitButtonColor-rgb:var(--submitButtonColor-rgb);--wix-forms-formSubmitButtonColor-opacity:var(--submitButtonColor-opacity);--wix-forms-formSubmitButtonColorHover:var(--submitButtonColorHover);--wix-forms-formSubmitButtonColorHover-rgb:var(--submitButtonColorHover-rgb);--wix-forms-formSubmitButtonColorHover-opacity:var(--submitButtonColorHover-opacity);--wix-forms-formSubmitButtonBackgroundColor:var(--submitButtonBackgroundColor);--wix-forms-formSubmitButtonBackgroundColor-rgb:var(--submitButtonBackgroundColor-rgb);--wix-forms-formSubmitButtonBackgroundColor-opacity:var(--submitButtonBackgroundColor-opacity);--wix-forms-formSubmitButtonBackgroundColorHover:var(--submitButtonBackgroundColorHover);--wix-forms-formSubmitButtonBackgroundColorHover-rgb:var(--submitButtonBackgroundColorHover-rgb);--wix-forms-formSubmitButtonBackgroundColorHover-opacity:var(--submitButtonBackgroundColorHover-opacity);--wix-forms-formSubmitButtonBorderColor:var(--submitButtonBorderColor);--wix-forms-formSubmitButtonBorderColor-rgb:var(--submitButtonBorderColor-rgb);--wix-forms-formSubmitButtonBorderColor-opacity:var(--submitButtonBorderColor-opacity);--wix-forms-formSubmitButtonBorderColorHover:var(--submitButtonBorderColorHover);--wix-forms-formSubmitButtonBorderColorHover-rgb:var(--submitButtonBorderColorHover-rgb);--wix-forms-formSubmitButtonBorderColorHover-opacity:var(--submitButtonBorderColorHover-opacity);--wix-forms-formSubmitButtonBorderWidth:calc(var(--submitButtonBorderWidth) * 1px);--wix-forms-formSubmitButtonBorderRadius:calc(var(--submitButtonBorderRadius) * 1px);--wix-forms-formColumnSpacing:calc(var(--columnSpacing) * 1px);--wix-forms-formRowSpacing:calc(var(--rowSpacing) * 1px);--wix-forms-formBackground:var(--formBackground);--wix-forms-formBackground-rgb:var(--formBackground-rgb);--wix-forms-formBackground-opacity:var(--formBackground-opacity);--wix-forms-formInputBorderLeftWidth:calc(var(--inputBorderLeftWidth) * 1px);--wix-forms-formInputBorderRightWidth:calc(var(--inputBorderRightWidth) * 1px);--wix-forms-formInputBorderTopWidth:calc(var(--inputBorderTopWidth) * 1px);--wix-forms-formInputBorderBottomWidth:calc(var(--inputBorderBottomWidth) * 1px)}.sN4uTVR{background:rgba(var(--formBackground));border-color:rgba(var(--borderColor));border-radius:calc(var(--borderRadius)*1px);border-style:solid;border-width:calc(var(--borderWidth)*1px);box-sizing:border-box;padding-bottom:calc(var(--verticalPadding)*1px);padding-left:calc(var(--horizontalPadding)*1px);padding-right:calc(var(--horizontalPadding)*1px);padding-top:calc(var(--verticalPadding)*1px)}.sHoCdRI{box-shadow:var(--index2490108247-shadowXOffset) var(--index2490108247-shadowYOffset) calc(var(--shadowBlur)*1px) calc(var(--shadowSize)*1px) rgba(var(--shadowColor))}@container (max-width: 288px){.sN4uTVR form fieldset>div{column-gap:0!important}}.CvQpuc{align-items:center;background:rgba(var(--formBackground));box-sizing:border-box;display:flex;flex-direction:column;height:100%;justify-content:center;padding:20px;text-align:center;width:100%}._Kekmv{font-size:18px!important;font-weight:700!important;line-height:24px!important;margin:24px 0 8px 0}.yriMaM{font-size:14px!important;font-weight:400!important;line-height:18px!important}._Kekmv,.yriMaM{font-family:Madefor,Helvetica Neue,Helvetica,Arial,sans-serif!important}.Qq9p0F{align-items:center;display:flex;flex-direction:column;text-align:center}.Qq9p0F .tQFwnj{margin-bottom:12px}.Qq9p0F .IqzMYA{margin-top:12px}.YSDaGO{animation:lWfcIs .4s ease}@keyframes lWfcIs{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.ckHV4G{display:flex;flex-direction:column;gap:var(--wix-forms-formRowSpacing,24px);width:100%}.GLWhGq{-moz-column-gap:var(--wix-forms-formColumnSpacing,24px);column-gap:var(--wix-forms-formColumnSpacing,24px)}.DXT5mJ{row-gap:var(--wix-forms-formRowSpacing,0)}.WLnTYL,.rSNHo6{margin-top:24px}.rSNHo6{align-items:center;color:rgb(var(--wix-forms-formInputErrorColor,223,49,49))!important;display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:16px;justify-content:center;line-height:1.4;min-height:20px}.PzL7AI{margin-right:2px}.pdfCm{direction:ltr}.jToQW{direction:rtl}.HosD-{background:transparent;border:none;cursor:pointer;display:flex;outline:none;padding-inline-end:14px;padding-inline-start:10px}.HosD-:hover{opacity:.7}.jToQW .HosD-{transform:scaleX(-1)}.HosD-:focus-visible .UM01p{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}.HosD- .UM01p{fill:#646464;color:#646464;outline:none;transition:transform .15s linear}.HosD- .UM01p.mTw6G{transform:rotate(90deg)}.ScyVy{overflow-wrap:break-word;width:100%;word-break:break-word}@media print{.HosD- .UM01p{transform:rotate(90deg)!important}}.l0N8d{align-items:center;cursor:auto;display:flex;margin:12px 0}.l0N8d .aXjZR{flex:1}.l0N8d p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.l0N8d p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}._3RkWr{margin:10px 0 12px}.ZvAeV{margin:0;min-height:48px}.ZvAeV._3RkWr{cursor:pointer;margin:2px 0}._2DBY0{align-self:start;display:flex;outline:none}._2DBY0,.eBhx-{padding-top:12px}.eBhx-{cursor:grab;position:absolute}.eBhx-:hover{opacity:.7}.eBhx- svg{fill:#646464;color:#646464}.NP-6A{right:-23px}.F6ia-{left:-23px}.QxwkN{display:flex;flex-direction:row;position:relative}.QxwkN p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.QxwkN p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}.ImTU9{margin:2px 0}.zTHZ5{cursor:pointer;display:flex;flex-direction:row;outline:none;width:100%}.zTHZ5:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.wCts7{display:flex;flex-direction:row}.aEBup{flex:0 0 48px}._3Sfx1{cursor:grabbing}.VqL-4,.hrdcY{min-width:0;width:100%}.hrdcY{display:flex;flex-direction:column}.VSINL{--ricos-custom-editor-add-plugin-button-position-inline-start:-36px}.bCXc8{display:none}@media print{.bCXc8{display:block!important}}.glob_fontElementMap,.zPN84{font-family:var(--ricos-font-family,unset)}.LRZrT{color:var(--ricos-custom-link-color,var(--ricos-action-color,#116dff));font-family:var(--ricos-custom-link-font-family,unset);font-size:var(--ricos-custom-link-font-size,unset);font-style:var(--ricos-custom-link-font-style,unset);font-weight:var(--ricos-custom-link-font-weight,unset);letter-spacing:var(--ricos-custom-link-letter-spacing,unset);line-height:var(--ricos-custom-link-line-height,unset);min-height:var(--ricos-custom-link-min-height,unset);-webkit-text-decoration:var(--ricos-custom-link-text-decoration,none);text-decoration:var(--ricos-custom-link-text-decoration,none)}._4dOZS:hover{cursor:text}.z7mqB:hover{cursor:pointer}.NI44M{display:flex;margin-right:5px}.md0f2{color:var(--ricos-settings-action-color,var(--ricos-action-color-fallback,#116dff));max-width:270px;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}@supports (color:rgb(from #000 r g b/0.1)){.md0f2{color:var(--ricos-settings-action-color,rgb(from var(--ricos-action-color,#116dff) min(r,150) min(g,150) min(b,150)))}}.md0f2:hover{text-decoration:underline}._2Wt3P:hover{cursor:pointer}@supports not (contain:inline-size){@media only screen and (max-width:480px){.md0f2{max-width:160px}}}@container (width < 480px){.md0f2{max-width:160px}}.ElBhne{width:100%}.dF3Dv0{align-items:center;background:rgba(var(--wix-forms-formBackground));display:flex;inset:0;justify-content:center;position:absolute;z-index:1}.dF3Dv0>div{height:auto;width:100%}.kLNiUo{border:none;margin:0;padding:0}.D8AT5x>fieldset,.zeyg5V{pointer-events:none}.D8AT5x>fieldset{visibility:hidden}.D8AT5x{position:relative}.M94ODH{align-items:center;display:flex;flex-direction:column;gap:12px}.M94ODH .QBpKk2{border-radius:4px!important}.eiknuc{display:block;height:100%;width:100%}.eiknuc img{max-width:var(--wix-img-max-width,100%)}.eiknuc[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.eiknuc[data-animate-blur] img[data-load-done]{filter:none}.CKafKt{font-size:12px!important;margin-top:8px}.mKhPRp{display:inline-flex}.A3sImb{cursor:default}</style> | |
| 233 | +<!-- Loadable Component comp-m8omf94t --> | |
| 234 | + | |
| 235 | +<!-- Loadable Component comp-m8omf94t --> | |
| 236 | +<script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[]</script><script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":[]}</script> | |
| 237 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 238 | +<style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.css">.sk_ESYz{--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formParagraphFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formParagraphFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formParagraphFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formParagraphFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formParagraphFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formParagraphFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formParagraphFont-weight)}.sk_ESYz,.sk_ESYz:hover{color:var(--ricosviewer2135568863-wix-forms-formLinkColor,rgba(var(--wix-color-8),1))!important}</style><style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/1277.chunk.min.css">.WdrX8{direction:rtl}.xWJx0{direction:ltr}.Y0khg{margin-left:0;margin-right:auto;z-index:1}.Y0khg:not(.g3kHM){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}}@container (width < 480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}.BzQKU{margin-left:auto;margin-right:0;z-index:1}.BzQKU:not(.g3kHM){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}}@container (width < 480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}.NY-QD{clear:both;display:block}.NY-QD:not(._0Z9DY){margin-left:auto;margin-right:auto;max-width:100%}._0Z9DY,.g3kHM{width:100%}.fwEUh ._0Z9DY,.fwEUh .g3kHM{margin:0 -8px;width:auto}.NwCLa{width:-moz-fit-content;width:fit-content}._50Ywj{margin-left:auto;margin-right:auto;max-width:100%}.eX7c9{width:min(350px,100%)!important}.fwEUh .eX7c9{width:50%}._0a1LY{margin-left:auto;margin-right:auto}.fwEUh ._0a1LY{width:150px}.sFMd1{display:flex}._6lkns,._6lkns>*{text-align:left}.Vbf1a,.Vbf1a>*{text-align:center}.NcJLH,.NcJLH>*{text-align:right}._0uG9a,._0uG9a>*{text-align:initial}.jswSl{text-align:justify!important;white-space:pre-wrap!important}.ZnMEC,.glob_fontElementMap,.zrLtk{font-family:var(--ricos-font-family,unset)}.pY8WU{max-width:100%}.zrLtk{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-content:start;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);height:100%;padding-block-end:var(--ricos-custom-container-padding-block-end,0);padding-block-start:var(--ricos-custom-container-padding-block-start,0);position:relative}.zrLtk:has([data-layout-banner=top]){padding-block-start:0}.zrLtk:has([data-layout-banner=bottom]){padding-block-end:0}.zrLtk *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.zrLtk .tlZw8{box-sizing:border-box;-moz-tab-size:40px;-o-tab-size:40px;tab-size:40px}.zrLtk .tlZw8 *,.zrLtk .tlZw8 :after,.zrLtk .tlZw8 :before{box-sizing:inherit}.zrLtk .tlZw8 input{box-sizing:border-box}.zrLtk.YHur4{padding-top:50px}.tlZw8{word-wrap:break-word;background-color:var(--ricos-bg-color-container,unset);color:var(--ricos-text-color,#212121);container-type:inline-size;font-size:16px;height:100%;line-height:1.5;overflow-wrap:break-word;white-space:pre-wrap;white-space:break-spaces;width:100%}.tlZw8:after{clear:both;content:"";display:table;line-height:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.tlZw8{font-size:14px}}}@container (width < 480px){.tlZw8{font-size:14px}}._7UvJA{width:100%}._7UvJA [data-breakout=normal]{padding-inline-end:var(--ricos-breakout-normal-padding-end,0);padding-inline-start:var(--ricos-breakout-normal-padding-start,0)}._7UvJA [data-breakout=fullWidth]{padding-inline-end:var(--ricos-breakout-full-width-padding-end,0);padding-inline-start:var(--ricos-breakout-full-width-padding-start,0)}._7UvJA [data-gap-spacer-top-margin]{margin-top:14px}._8B4zb{margin:2px 0}.DjL2Y,.b8HqH+.b8HqH{margin-top:20px}@media print{.tlZw8{height:auto}body{background-color:var(--rt-design-background-color,var(--rt-design-background-image-bg-color,var(--ricos-background-color,#fff)))}}._41BxQ{margin-inline-start:0!important}.wlxXY{margin-inline-start:40px!important}.uXCyf{margin-inline-start:80px!important}._746dJ{margin-inline-start:120px!important}.QC6Qc{margin-inline-start:160px!important}.sLvSN{margin-inline-start:200px!important}.WSqt-{margin-inline-start:240px!important}.Ik8pK{margin-left:0;margin-right:auto;z-index:1}.Ik8pK:not(.NtNUw){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}}@container (width < 480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}.U1e7f{margin-left:auto;margin-right:0;z-index:1}.U1e7f:not(.NtNUw){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}}@container (width < 480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}.odAbW{clear:both;display:block}.odAbW:not(._3XT4E){margin-left:auto;margin-right:auto;max-width:100%}.NtNUw,._3XT4E{width:100%}.A4ID1 .NtNUw,.A4ID1 ._3XT4E{margin:0 -8px;width:auto}.v36De{width:-moz-fit-content;width:fit-content}._0P5jU{margin-left:auto;margin-right:auto;max-width:100%}.Xq3fZ{width:min(350px,100%)!important}.A4ID1 .Xq3fZ{width:50%}.w6QFZ{margin-left:auto;margin-right:auto}.A4ID1 .w6QFZ{width:150px}.NrnwV{display:flex}._72eGU{margin:0}._18vC-{border:none;width:-moz-max-content;width:max-content}.EwjhL{overflow-x:auto}.EwjhL::-webkit-scrollbar{-webkit-appearance:none}.EwjhL::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:8px}.EwjhL::-webkit-scrollbar:horizontal{height:10px}.Ce-P5{max-width:100%}._9k8cw{text-decoration:none}.nWC1s:focus-visible{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}._4X3JV,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}._1XbUl,.v6mQw{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);list-style-position:outside;margin:0;min-height:var(--ricos-custom-p-min-height,unset);padding:0;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}._1XbUl>*,.v6mQw>*{background-color:var(--ricos-custom-p-background-color,unset)}._1XbUl>.frioR,.v6mQw>.frioR{list-style-type:inherit;margin-inline-start:1.5em;padding-inline-start:.5em}._1XbUl>.frioR[data-heading-level=headerOne],.v6mQw>.frioR[data-heading-level=headerOne]{font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerTwo],.v6mQw>.frioR[data-heading-level=headerTwo]{font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerThree],.v6mQw>.frioR[data-heading-level=headerThree]{font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFour],.v6mQw>.frioR[data-heading-level=headerFour]{font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFive],.v6mQw>.frioR[data-heading-level=headerFive]{font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerSix],.v6mQw>.frioR[data-heading-level=headerSix]{font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.VU1nK,.VU1nK>.frioR{list-style-type:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6){text-decoration:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6) :is([data-font-size],span[style*=font-size]){text-decoration:line-through}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6):not(:has([data-font-size],span[style*=font-size])){text-decoration:line-through}.frioR{position:relative;text-align:initial}.frioR[data-child-font-fit]>:is(p,h1,h2,h3,h4,h5,h6){font-size:inherit}[data-list-style-position=inside].frioR{list-style-position:inside;padding-inline-start:0}[data-list-style-position=inside].frioR>:first-child:not([aria-checked]),[data-list-style-position=inside].frioR>:first-child:not([aria-checked])>:first-child{display:inline}[data-list-style-position=inside].frioR[data-list-style=checkbox]>[aria-checked]{display:inline-grid;inset-inline-start:unset;margin-inline-end:.35em;position:relative;top:auto;transform:none;vertical-align:middle}[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span{display:inline}.v6mQw>[data-list-style-position=inside].frioR h2>span,.v6mQw>[data-list-style-position=inside].frioR h3>span,.v6mQw>[data-list-style-position=inside].frioR h4>span,.v6mQw>[data-list-style-position=inside].frioR h5>span,.v6mQw>[data-list-style-position=inside].frioR h6>span,.v6mQw>[data-list-style-position=inside].frioR>h1>span,.v6mQw>[data-list-style-position=inside].frioR>p>span>:first-child,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span>:first-child{margin-inline-start:.5em}ol .frioR{position:relative}ol .frioR>div>:not(ul)>span{margin-inline-start:.35em}.mqFOv{background-color:var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border:max(1px,1em/18) solid rgba(var(--ricos-theme-color-3-tuple,var(--ricos-action-color-tuple,var(--ricos-action-color-fallback-tuple,17,109,255))),.35);border-radius:.25em;box-sizing:border-box;display:inline-grid;font-size:inherit;height:1em;inset-inline-start:-1.25em;line-height:inherit;margin:0;padding:0;place-items:center;pointer-events:none;position:absolute;top:calc(.5lh - 1em / 2);width:1em}.mqFOv:after{border-bottom:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border-right:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));content:"";height:.5em;transform:translateY(-.0625em) rotate(45deg) scale(0);width:.25em}.mqFOv[aria-checked=true]{background-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)));border-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)))}.mqFOv[aria-checked=true]:after{transform:translateY(-.0625em) rotate(45deg) scale(1)}.eMsNb,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.eUxPq{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eUxPq{clear:both;margin:0}}}@container (width < 480px){.eUxPq{clear:both;margin:0}}.eBpC0{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);min-height:var(--ricos-custom-p-min-height,unset);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}.eBpC0>span>a,.eBpC0>span>span{background-color:var(--ricos-custom-p-background-color,unset)}.eBpC0:empty{height:24px}.zm9nI{display:block}.LRIFJ{background:var(--ricos-internal-layout-backdrop-gradient,var(--ricos-internal-layout-backdrop-color,transparent));clear:both;padding-bottom:var(--ricos-internal-layout-backdrop-padding-bottom,0);padding-top:var(--ricos-internal-layout-backdrop-padding-top,0);position:relative}.LRIFJ:before{background-image:var(--ricos-internal-layout-backdrop-image-src);background-position:var(--ricos-internal-layout-backdrop-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-backdrop-image-scaling);filter:var(--ricos-internal-layout-backdrop-image-blur,none);z-index:0}.LRIFJ:after,.LRIFJ:before{bottom:0;clip-path:inset(0);content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LRIFJ:after{background:var(--ricos-internal-layout-backdrop-overlay,transparent);z-index:1}.LmXEw{--ricos-internal-layout-display:grid;--ricos-internal-layout-horizontal-padding:0;display:var(--ricos-internal-layout-display,grid);flex-wrap:wrap;gap:var(--ricos-internal-layout-gap,20px);grid-template-columns:var(--ricos-internal-layout-grid-template,var(--ricos-internal-layout-column-template));justify-content:var(--ricos-internal-layout-justify-content,auto);margin:0 auto;position:relative;width:min(100%,var(--ricos-internal-layout-width,initial));z-index:2}.LmXEw.CvxCp ._8Xb4l,.LmXEw.P-WYy{background:var(--ricos-internal-layout-background-gradient,var(--ricos-internal-layout-background-color,transparent));border:var(--ricos-internal-layout-border-width,0) solid var(--ricos-internal-layout-border-color);border-radius:var(--ricos-internal-layout-border-radius,0)}.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:before{background-image:var(--ricos-internal-layout-background-image-src);background-position:var(--ricos-internal-layout-background-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-background-image-scaling);filter:var(--ricos-internal-layout-background-image-blur,none);z-index:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:after,.LmXEw.P-WYy:before{bottom:0;clip-path:inset(0 round var(--ricos-internal-layout-border-radius,0));content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.P-WYy:after{background:var(--ricos-internal-layout-background-overlay,transparent);z-index:1}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}}@container (width < 480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}.LmXEw.Ay9OM{--ricos-internal-layout-display:flex;--ricos-internal-layout-justify-content:center;--ricos-internal-layout-cell-min-width:100%;--ricos-internal-layout-cell-height:auto}*+.LmXEw{margin-top:20px}.LmXEw ._8Xb4l{display:flex;flex-direction:column;flex-grow:1;justify-content:var(--ricos-internal-layout-cell-vertical-alignment);max-width:var(--ricos-internal-layout-cell-min-width,auto);min-width:min(100%,var(--ricos-internal-layout-cell-min-width,0));outline:1px solid transparent;padding:var(--ricos-internal-layout-cell-padding-top,12px) var(--ricos-internal-layout-cell-padding-right,0) var(--ricos-internal-layout-cell-padding-bottom,12px) var(--ricos-internal-layout-cell-padding-left,0);position:relative;z-index:2}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}}@container (width < 480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}.LmXEw ._8Xb4l>*{z-index:1}.glob_fontElementMap,.zMFXn{font-family:var(--ricos-font-family,unset)}.LI-hR{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LI-hR{clear:both;margin:0}}}@container (width < 480px){.LI-hR{clear:both;margin:0}}.-MV-o,.DnKvS,.JLkq2,.L-PUE,.mabWC,.ymErU{font:inherit}.-MV-o:focus-visible,.DnKvS:focus-visible,.JLkq2:focus-visible,.L-PUE:focus-visible,.mabWC:focus-visible,.ymErU:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.JLkq2{color:var(--ricos-custom-h1-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}.JLkq2>*>span,.JLkq2>span span{background-color:var(--ricos-custom-h1-background-color,unset)}.JLkq2 a{font-size:inherit}.L-PUE{color:var(--ricos-custom-h2-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}.L-PUE>*>span,.L-PUE>span span{background-color:var(--ricos-custom-h2-background-color,unset)}.L-PUE a{font-size:inherit}.ymErU{color:var(--ricos-custom-h3-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}.ymErU>*>span,.ymErU>span span{background-color:var(--ricos-custom-h3-background-color,unset)}.ymErU a{font-size:inherit}.mabWC{color:var(--ricos-custom-h4-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}.mabWC>*>span,.mabWC>span span{background-color:var(--ricos-custom-h4-background-color,unset)}.mabWC a{font-size:inherit}.-MV-o{color:var(--ricos-custom-h5-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}.-MV-o>*>span,.-MV-o>span span{background-color:var(--ricos-custom-h5-background-color,unset)}.-MV-o a{font-size:inherit}.DnKvS{color:var(--ricos-custom-h6-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.DnKvS>*>span,.DnKvS>span span{background-color:var(--ricos-custom-h6-background-color,unset)}.DnKvS a{font-size:inherit}._7sCfP{display:block}.TPUvP{margin:15px 18px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}}@container (width < 480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgba(var(--ricos-fallback-color-tuple,0,0,0),.06));color:var(--ricos-custom-code-block-color,var(--ricos-text-color,#212121));font-family:Inconsolata,Menlo,Consolas,monospace;font-size:var(--ricos-custom-code-block-font-size,16px);line-height:var(--ricos-custom-code-block-line-height,26px);margin:var(--ricos-custom-code-block-margin,15px 18px);min-height:29px;padding:var(--ricos-custom-code-block-padding,2px 25px);-webkit-print-color-adjust:exact;print-color-adjust:exact;white-space:pre-wrap}@supports (color:rgb(from #000 r g b/0.1)){.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgb(from var(--ricos-fallback-color,#000000) r g b/.06))}}.TFibM .FNyc6{margin:1em 0}.-XiNm,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.pJkyn{display:flex;font-family:var(--ricos-custom-p-font-family,unset)}.eFTjz{border-inline-start-style:solid;border-inline-start-width:var(--ricos-custom-quote-border-width,3px);border-left-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));border-right-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));color:var(--ricos-custom-quote-color,unset);font-family:var(--ricos-custom-quote-font-family,unset);font-size:18px;font-size:var(--ricos-custom-quote-font-size,18px);font-style:normal;font-style:var(--ricos-custom-quote-font-style,normal);font-weight:var(--ricos-custom-quote-font-weight,unset);letter-spacing:var(--ricos-custom-quote-letter-spacing,unset);line-height:26px;line-height:var(--ricos-custom-quote-line-height,26px);margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,18px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,18px);max-width:100%;min-height:var(--ricos-custom-quote-min-height,unset);padding-bottom:var(--ricos-custom-quote-padding-bottom,6px);padding-top:var(--ricos-custom-quote-padding-top,6px);padding-inline-start:var(--ricos-custom-quote-padding-inline-start,18px);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-quote-text-decoration,unset);text-decoration:var(--ricos-custom-quote-text-decoration,unset)}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}}@container (width < 480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}</style> | |
| 239 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 240 | +<script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[8455,778]</script><script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["form-app-header","form-app-wix-ricos-viewer"]}</script><script async="" data-chunk="form-app-header" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.js"></script><script async="" data-chunk="form-app-wix-ricos-viewer" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-wix-ricos-viewer.chunk.min.js"></script> | |
| 241 | +<style id="css_masterPage">@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w10-light.woff2') format('woff2'); unicode-range: U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116;font-display: swap; | |
| 242 | +} | |
| 243 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w02-light.woff2') format('woff2'); unicode-range: U+000D, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+01FA-01FF, U+0218-021B, U+0237, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03C0, U+1E80-1E85, U+1EF2-1EF3, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 244 | +} | |
| 245 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2') format('woff2'); unicode-range: U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+03BC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 246 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 247 | +} | |
| 248 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 249 | +} | |
| 250 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 251 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 252 | +} | |
| 253 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 254 | +} | |
| 255 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 256 | +} | |
| 257 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 258 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 259 | +} | |
| 260 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 261 | +} | |
| 262 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 263 | +} | |
| 264 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 265 | +} | |
| 266 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 267 | +} | |
| 268 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 269 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 270 | +} | |
| 271 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 272 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 273 | +} | |
| 274 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 275 | +} | |
| 276 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 277 | +} | |
| 278 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 279 | +} | |
| 280 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 281 | +} | |
| 282 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 283 | +} | |
| 284 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 285 | +} | |
| 286 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 287 | +} | |
| 288 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 289 | +} | |
| 290 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 291 | +} | |
| 292 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 293 | +} | |
| 294 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 295 | +} | |
| 296 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 297 | +} | |
| 298 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 299 | +} | |
| 300 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 301 | +} | |
| 302 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 303 | +} | |
| 304 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 305 | +} | |
| 306 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 307 | +} | |
| 308 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 309 | +} | |
| 310 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 311 | +}@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXd0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 312 | +} | |
| 313 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w2aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 314 | +} | |
| 315 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXV0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 316 | +} | |
| 317 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w0aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 318 | +} | |
| 319 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXx0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 320 | +} | |
| 321 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 322 | +} | |
| 323 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 324 | +} | |
| 325 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0ppC8MLnbtg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 326 | +} | |
| 327 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXp-p7K4KLg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 328 | +}#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus, #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus ~ .wixSdkShowFocusOnSibling{--focus-ring-box-shadow:0 0 0 1px #ffffff, 0 0 0 3px #116dff;box-shadow:var(--focus-ring-box-shadow) !important;z-index:1;}.has-inner-focus-ring{--focus-ring-box-shadow:inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;}:root, :host, .spxThemeOverride{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;--color_0:255,255,255;--color_1:255,255,255;--color_2:0,0,0;--color_3:237,28,36;--color_4:0,136,203;--color_5:255,203,5;--color_6:114,114,114;--color_7:176,176,176;--color_8:255,255,255;--color_9:114,114,114;--color_10:176,176,176;--color_11:250,250,250;--color_12:153,153,153;--color_13:102,102,102;--color_14:51,51,51;--color_15:0,0,0;--color_16:183,195,220;--color_17:139,154,186;--color_18:75,99,151;--color_19:50,66,101;--color_20:25,33,50;--color_21:165,182,220;--color_22:124,143,186;--color_23:75,99,151;--color_24:0,36,116;--color_25:0,18,58;--color_26:186,204,218;--color_27:141,164,180;--color_28:80,117,143;--color_29:53,78,95;--color_30:27,39,48;--color_31:255,233,223;--color_32:255,191,161;--color_33:250,133,79;--color_34:234,96,32;--color_35:201,64,1;--color_36:250,250,250;--color_37:0,0,0;--color_38:153,153,153;--color_39:102,102,102;--color_40:51,51,51;--color_41:75,99,151;--color_42:75,99,151;--color_43:75,99,151;--color_44:75,99,151;--color_45:0,0,0;--color_46:51,51,51;--color_47:0,0,0;--color_48:75,99,151;--color_49:75,99,151;--color_50:250,250,250;--color_51:75,99,151;--color_52:75,99,151;--color_53:250,250,250;--color_54:102,102,102;--color_55:102,102,102;--color_56:250,250,250;--color_57:250,250,250;--color_58:75,99,151;--color_59:75,99,151;--color_60:250,250,250;--color_61:75,99,151;--color_62:75,99,151;--color_63:250,250,250;--color_64:102,102,102;--color_65:102,102,102;--wix-ads-height:0px;--sticky-offset:0px;--wix-ads-top-height:0px;--site-width:980px;--above-all-z-index:100000;--portals-z-index:100001;--wix-opt-in-direction:ltr;--wix-opt-in-direction-multiplier:1;--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--minViewportSize:320;--maxViewportSize:1920;--customScaleViewportLimit:clamp(var(--minViewportSize) * 1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize) * 1px));}.theme-vars, .max-width-container{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;}.max-width-container{--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;}.font_0{font:var(--font_0);color:rgb(var(--color_15));letter-spacing:0em;}.font_1{font:var(--font_1);color:rgb(var(--color_14));letter-spacing:0em;}.font_2{font:var(--font_2);color:rgb(var(--color_15));letter-spacing:0em;}.font_3{font:var(--font_3);color:rgb(var(--color_15));letter-spacing:0em;}.font_4{font:var(--font_4);color:rgb(var(--color_15));letter-spacing:0em;}.font_5{font:var(--font_5);color:rgb(var(--color_15));letter-spacing:0em;}.font_6{font:var(--font_6);color:rgb(var(--color_15));letter-spacing:0em;}.font_7{font:var(--font_7);color:rgb(var(--color_15));letter-spacing:0em;}.font_8{font:var(--font_8);color:rgb(var(--color_15));letter-spacing:0em;}.font_9{font:var(--font_9);color:rgb(var(--color_15));letter-spacing:0em;}.font_10{font:var(--font_10);color:rgb(var(--color_14));letter-spacing:0em;}.color_0{color:rgb(var(--color_0));}.color_1{color:rgb(var(--color_1));}.color_2{color:rgb(var(--color_2));}.color_3{color:rgb(var(--color_3));}.color_4{color:rgb(var(--color_4));}.color_5{color:rgb(var(--color_5));}.color_6{color:rgb(var(--color_6));}.color_7{color:rgb(var(--color_7));}.color_8{color:rgb(var(--color_8));}.color_9{color:rgb(var(--color_9));}.color_10{color:rgb(var(--color_10));}.color_11{color:rgb(var(--color_11));}.color_12{color:rgb(var(--color_12));}.color_13{color:rgb(var(--color_13));}.color_14{color:rgb(var(--color_14));}.color_15{color:rgb(var(--color_15));}.color_16{color:rgb(var(--color_16));}.color_17{color:rgb(var(--color_17));}.color_18{color:rgb(var(--color_18));}.color_19{color:rgb(var(--color_19));}.color_20{color:rgb(var(--color_20));}.color_21{color:rgb(var(--color_21));}.color_22{color:rgb(var(--color_22));}.color_23{color:rgb(var(--color_23));}.color_24{color:rgb(var(--color_24));}.color_25{color:rgb(var(--color_25));}.color_26{color:rgb(var(--color_26));}.color_27{color:rgb(var(--color_27));}.color_28{color:rgb(var(--color_28));}.color_29{color:rgb(var(--color_29));}.color_30{color:rgb(var(--color_30));}.color_31{color:rgb(var(--color_31));}.color_32{color:rgb(var(--color_32));}.color_33{color:rgb(var(--color_33));}.color_34{color:rgb(var(--color_34));}.color_35{color:rgb(var(--color_35));}.color_36{color:rgb(var(--color_36));}.color_37{color:rgb(var(--color_37));}.color_38{color:rgb(var(--color_38));}.color_39{color:rgb(var(--color_39));}.color_40{color:rgb(var(--color_40));}.color_41{color:rgb(var(--color_41));}.color_42{color:rgb(var(--color_42));}.color_43{color:rgb(var(--color_43));}.color_44{color:rgb(var(--color_44));}.color_45{color:rgb(var(--color_45));}.color_46{color:rgb(var(--color_46));}.color_47{color:rgb(var(--color_47));}.color_48{color:rgb(var(--color_48));}.color_49{color:rgb(var(--color_49));}.color_50{color:rgb(var(--color_50));}.color_51{color:rgb(var(--color_51));}.color_52{color:rgb(var(--color_52));}.color_53{color:rgb(var(--color_53));}.color_54{color:rgb(var(--color_54));}.color_55{color:rgb(var(--color_55));}.color_56{color:rgb(var(--color_56));}.color_57{color:rgb(var(--color_57));}.color_58{color:rgb(var(--color_58));}.color_59{color:rgb(var(--color_59));}.color_60{color:rgb(var(--color_60));}.color_61{color:rgb(var(--color_61));}.color_62{color:rgb(var(--color_62));}.color_63{color:rgb(var(--color_63));}.color_64{color:rgb(var(--color_64));}.color_65{color:rgb(var(--color_65));}.backcolor_0{background-color:rgb(var(--color_0));}.backcolor_1{background-color:rgb(var(--color_1));}.backcolor_2{background-color:rgb(var(--color_2));}.backcolor_3{background-color:rgb(var(--color_3));}.backcolor_4{background-color:rgb(var(--color_4));}.backcolor_5{background-color:rgb(var(--color_5));}.backcolor_6{background-color:rgb(var(--color_6));}.backcolor_7{background-color:rgb(var(--color_7));}.backcolor_8{background-color:rgb(var(--color_8));}.backcolor_9{background-color:rgb(var(--color_9));}.backcolor_10{background-color:rgb(var(--color_10));}.backcolor_11{background-color:rgb(var(--color_11));}.backcolor_12{background-color:rgb(var(--color_12));}.backcolor_13{background-color:rgb(var(--color_13));}.backcolor_14{background-color:rgb(var(--color_14));}.backcolor_15{background-color:rgb(var(--color_15));}.backcolor_16{background-color:rgb(var(--color_16));}.backcolor_17{background-color:rgb(var(--color_17));}.backcolor_18{background-color:rgb(var(--color_18));}.backcolor_19{background-color:rgb(var(--color_19));}.backcolor_20{background-color:rgb(var(--color_20));}.backcolor_21{background-color:rgb(var(--color_21));}.backcolor_22{background-color:rgb(var(--color_22));}.backcolor_23{background-color:rgb(var(--color_23));}.backcolor_24{background-color:rgb(var(--color_24));}.backcolor_25{background-color:rgb(var(--color_25));}.backcolor_26{background-color:rgb(var(--color_26));}.backcolor_27{background-color:rgb(var(--color_27));}.backcolor_28{background-color:rgb(var(--color_28));}.backcolor_29{background-color:rgb(var(--color_29));}.backcolor_30{background-color:rgb(var(--color_30));}.backcolor_31{background-color:rgb(var(--color_31));}.backcolor_32{background-color:rgb(var(--color_32));}.backcolor_33{background-color:rgb(var(--color_33));}.backcolor_34{background-color:rgb(var(--color_34));}.backcolor_35{background-color:rgb(var(--color_35));}.backcolor_36{background-color:rgb(var(--color_36));}.backcolor_37{background-color:rgb(var(--color_37));}.backcolor_38{background-color:rgb(var(--color_38));}.backcolor_39{background-color:rgb(var(--color_39));}.backcolor_40{background-color:rgb(var(--color_40));}.backcolor_41{background-color:rgb(var(--color_41));}.backcolor_42{background-color:rgb(var(--color_42));}.backcolor_43{background-color:rgb(var(--color_43));}.backcolor_44{background-color:rgb(var(--color_44));}.backcolor_45{background-color:rgb(var(--color_45));}.backcolor_46{background-color:rgb(var(--color_46));}.backcolor_47{background-color:rgb(var(--color_47));}.backcolor_48{background-color:rgb(var(--color_48));}.backcolor_49{background-color:rgb(var(--color_49));}.backcolor_50{background-color:rgb(var(--color_50));}.backcolor_51{background-color:rgb(var(--color_51));}.backcolor_52{background-color:rgb(var(--color_52));}.backcolor_53{background-color:rgb(var(--color_53));}.backcolor_54{background-color:rgb(var(--color_54));}.backcolor_55{background-color:rgb(var(--color_55));}.backcolor_56{background-color:rgb(var(--color_56));}.backcolor_57{background-color:rgb(var(--color_57));}.backcolor_58{background-color:rgb(var(--color_58));}.backcolor_59{background-color:rgb(var(--color_59));}.backcolor_60{background-color:rgb(var(--color_60));}.backcolor_61{background-color:rgb(var(--color_61));}.backcolor_62{background-color:rgb(var(--color_62));}.backcolor_63{background-color:rgb(var(--color_63));}.backcolor_64{background-color:rgb(var(--color_64));}.backcolor_65{background-color:rgb(var(--color_65));}.theme-vars{--variables-m28o2bcx:1440px;}#SITE_HEADER{--bg-overlay-color:transparent;--bg-gradient:none;}#SITE_PAGES{--transition-duration:0ms;}#SITE_FOOTER{--bg-overlay-color:transparent;--bg-gradient:none;}</style> | |
| 329 | +<style id="css_ebqqm">@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 330 | +} | |
| 331 | +@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 332 | +}@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 333 | +} | |
| 334 | +@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 335 | +}@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;font-display: swap; | |
| 336 | +} | |
| 337 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;font-display: swap; | |
| 338 | +} | |
| 339 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 340 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 341 | +} | |
| 342 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 343 | +} | |
| 344 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 345 | +}@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 346 | +} | |
| 347 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 348 | +} | |
| 349 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122;font-display: swap; | |
| 350 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 351 | +} | |
| 352 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 353 | +} | |
| 354 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 355 | +} | |
| 356 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 357 | +}@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 358 | +} | |
| 359 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 360 | +} | |
| 361 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 362 | +} | |
| 363 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 364 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 365 | +} | |
| 366 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 367 | +} | |
| 368 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 369 | +} | |
| 370 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 371 | +} | |
| 372 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 373 | +} | |
| 374 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 375 | +}@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 376 | +} | |
| 377 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 378 | +} | |
| 379 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 380 | +} | |
| 381 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 382 | +} | |
| 383 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 384 | +} | |
| 385 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 386 | +}@font-face {font-family: 'madefor-display-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/26656ec7-c27d-4bdc-a9f4-6b498bbfad69/madefor-display.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f7531dde-c39a-485c-a204-c09154e8d163/v1/madefor-display-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 387 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 388 | +} | |
| 389 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 390 | +}@font-face {font-family: 'madefor-text-bold'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/75da2848-97d9-41cf-accf-3f221b33b291/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 391 | +} | |
| 392 | +@font-face {font-family: 'madefor-text-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/e1e43510-79c8-4017-b833-3c8baaf5dcb6/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 393 | +}@font-face {font-family: 'madefor-text-mediumbold'; font-style: normal; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/dbfbb677-95bd-4b2a-87fb-2ba3101a5f68/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 394 | +} | |
| 395 | +@font-face {font-family: 'madefor-text-mediumbold'; font-style: italic; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/6d5055c2-7d2e-47e7-ba22-fb81f960dffb/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 396 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 397 | +} | |
| 398 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 399 | +} | |
| 400 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 401 | +} | |
| 402 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 403 | +} | |
| 404 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 405 | +} | |
| 406 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 407 | +} | |
| 408 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 409 | +} | |
| 410 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 411 | +} | |
| 412 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 413 | +} | |
| 414 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 415 | +} | |
| 416 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 417 | +} | |
| 418 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 419 | +} | |
| 420 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 421 | +} | |
| 422 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 423 | +} | |
| 424 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 425 | +} | |
| 426 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 427 | +} | |
| 428 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 429 | +} | |
| 430 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 431 | +} | |
| 432 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 433 | +} | |
| 434 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 435 | +}@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w05-reg.woff2') format('woff2'); unicode-range: U+0000, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+017F, U+018F, U+019D, U+01A0-01A1, U+01AF-01B0, U+01E6-01E7, U+01EA-01EB, U+01FA-01FF, U+0218-021B, U+0232-0233, U+0237, U+0259, U+0272, U+02B0, U+02BB-02BC, U+02C9, U+02CB, U+02D8-02D9, U+02DB, U+02DD, U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D7, U+0400-045F, U+0472-0475, U+048A-04FF, U+0510-0513, U+051C-051D, U+0524-0527, U+052E-052F, U+1E02-1E03, U+1E0A-1E0B, U+1E1E-1E1F, U+1E22-1E23, U+1E56-1E57, U+1E60-1E61, U+1E6A-1E6B, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200A, U+2015, U+201B, U+2032-2033, U+203D-203E, U+2070, U+2074-2079, U+207D-2089, U+208D-208E, U+20A1, U+20A3-20A4, U+20A6-20AB, U+20B4, U+20B8-20BA, U+20BC-20BD, U+2113, U+2116-2117, U+2120, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2190-2193, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22B2-22B3, U+22C5, U+2318, U+25A0, U+25B2, U+25BC, U+25CA, U+25CF, U+2605, U+2610-2611, U+2666, U+2713, U+2E18, U+E004-E005, U+F43A-F43B, U+F460-F473, U+F498-F49F, U+F4C6-F4C7, U+F4CC-F4CD, U+F4D2-F4D7, U+F50A-F50B, U+F50E-F533, U+F536-F539, U+F53C-F53F, U+F637, U+F6C3, U+F6DD, U+F6DF-F6F3, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 436 | +} | |
| 437 | +@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w01-reg.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+F656-F659;font-display: swap; | |
| 438 | +}#ebqqm{height:auto;--comp-display:unset;position:relative;}#ebqqm .ebqqm-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:clip;overflow-y:clip;}#ebqqm .ebqqm-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:auto auto auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#ebqqm:not(.ebqqm-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#ebqqm .ebqqm-container{grid-template-rows:auto auto;}}#ebqqm{--bg:var(--color_11);--alpha-bg:1;--static-spx:0.1 * var(--one-unit);}#PAGE_SECTIONSebqqm{--above-all-in-container:49;}#comp-m8omcigd2{z-index:50;--above-all-in-container:10000;}#comp-m8omcih716-pinned-layer{z-index:54;--above-all-in-container:10000;}#comp-m8omcih82-pinned-layer{z-index:55;--above-all-in-container:10000;}#comp-m8omcihb-pinned-layer{z-index:56;--above-all-in-container:10000;}#comp-m8oopad5-pinned-layer{z-index:57;--above-all-in-container:10000;}#comp-m9cxxt3r-pinned-layer{z-index:58;--above-all-in-container:10000;}#comp-mfl8zvjs-pinned-layer{z-index:59;--above-all-in-container:10000;}#comp-m8omdbdn{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbdn .comp-m8omdbdn-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:130px;padding-right:5%;padding-left:5%;padding-bottom:120px;row-gap:50px;column-gap:50px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(42px,max-content) minmax(90px,max-content) max-content max-content max-content;grid-template-columns:0.46613402505813634fr 0.5338659749418637fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbdn .comp-m8omdbdn-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content minmax(200px,max-content) max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbdn{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8oqdae2{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/2/6/3;position:relative;}#comp-m8oqdae2 .comp-m8oqdae2-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqdae2{grid-area:5/1/6/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqdae2{grid-area:5/1/6/2;}}#comp-m8oqdae2{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbe910{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.99795672678148%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:start;position:sticky;--force-auto:initial;top:var(--force-auto,calc(250px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:min(-0.5px, -0.0001698 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;--is-sticky:1;}.comp-m8omdbe910-container{box-sizing:border-box;row-gap:25px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbe910{justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));margin-left:0px;margin-right:max(0.5px, 0.0000013 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8omdbe910{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea7{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbea7-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbea7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea15{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{margin-bottom:5px;}}#comp-m8omdbea15{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{--fontSize:35spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15{--fontSize:25spx;}}#comp-m8omdbeb13{--l_display:unset;height:auto;min-width:0px;width:99.99898635118323%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbeb13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13{--fontSize:16px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13{--fontSize:14px;}}#comp-m8omdbec6{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}.comp-m8omdbec6-container{box-sizing:border-box;row-gap:15px;column-gap:30px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:0.9999535462010356fr 1.0000464537989644fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbec6-container{row-gap:25px;grid-template-rows:max-content max-content max-content max-content max-content auto max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbec6{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbec15{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbec15{justify-self:center;}}#comp-m8omdbec15{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeg9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeg9{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbeg9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeh9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeh9{justify-self:center;grid-area:3/1/4/2;}}#comp-m8omdbeh9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbei9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/2/3/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbei9{justify-self:center;grid-area:4/1/5/2;}}#comp-m8omdbei9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdben{min-height:200px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0022421 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:5/1/6/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdben{margin-bottom:0px;grid-area:7/1/8/2;}}#comp-m8omdben{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--alpha-brd:1;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:157,157,157;--alpha-brdh:1;--bgd:255,255,255;--alpha-bgd:1;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:225,225,225;--alpha-brdd:1;--brwf:1px;--bgf:255,255,255;--brdf:157,157,157;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--alpha-bgf:0;--alpha-bge:0;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdber7{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/1/4/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdber7{justify-self:center;grid-area:5/1/6/2;}}#comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeu13{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeu13{margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbeu13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbew{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbew{justify-self:end;margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbew{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--color:255,64,64;--alpha-color:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbex1{min-height:0px;--l_display:unset;height:42px;min-width:0px;width:175px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:6/1/7/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbex1{height:50px;width:166px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbex1{height:42px;width:100%;align-self:start;justify-self:center;margin-top:max(0.5px, 0.0511093 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:8/1/9/2;}}#comp-m8or8zjr{min-height:50px;--l_display:unset;height:50px;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/2/4/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8or8zjr{align-self:start;grid-area:6/1/7/2;}}#comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdr7{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/3;position:relative;}#comp-m8omdbdr7 .comp-m8omdbdr7-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}#comp-m8omdbdr7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82o{min-height:0px;--l_display:unset;height:auto;width:max-content;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8oqu82o-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82o{margin-bottom:max(0.5px, 0.0013542 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8oqu82o{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82u{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82u{margin-right:4.546875px;}}#comp-m8oqu82u{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu82z{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82z{--l_display:none;}}#comp-m8oqu82z{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu8301{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu8301{--l_display:none;}}#comp-m8oqu8301{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdy12{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:3/1/4/3;position:relative;}#comp-m8omdbdy12 .comp-m8omdbdy12-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdy12 .comp-m8omdbdy12-container{grid-template-rows:minmax(max-content,0%);}#comp-m8omdbdy12{grid-area:3/1/4/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdy12{grid-area:3/1/4/2;}}#comp-m8omdbdy12{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94r{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omf94r .comp-m8omf94r-overflow-wrapper{position:relative;display:flex;flex-direction:column;flex-grow:1;overflow-x:clip;overflow-y:clip;}#comp-m8omf94r .comp-m8omf94r-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.3644933 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,1281.0065419921875fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94r{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94t{min-height:0px;height:auto;min-width:0px;width:auto;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omf94t .comp-m8omf94t-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:hidden;}#comp-m8omf94t .comp-m8omf94t-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94t:not(.comp-m8omf94t-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omdbey11{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/1/5/2;position:relative;}#comp-m8omdbey11 .comp-m8omdbey11-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbey11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbez{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbez{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.6em;--letterSpacing:0em;--fontFamily:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez{--fontSize:16px;}}#comp-m8omdbf0{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;position:sticky;--force-auto:initial;top:var(--force-auto,calc(120px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:2/1/3/3;--is-sticky:1;}#comp-m8omdbf0 .comp-m8omdbf0-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf0{position:sticky;--force-auto:initial;top:var(--force-auto,calc(50px + var(--sticky-offset, 0px)));grid-area:2/1/3/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf0{position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));grid-area:2/1/3/2;}}#comp-m8omdbf0{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf1{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:calc((100% + 20px));max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}.comp-m8omdbf1-container{box-sizing:border-box;padding-top:20px;padding-right:20px;padding-left:20px;padding-bottom:20px;row-gap:0px;column-gap:max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.014375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:1.0000260323504566fr max-content max-content max-content max-content 1.0000260323504566fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:minmax(25.000003814697266px,max-content) minmax(25.000003814697266px,max-content);grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;}}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:max-content max-content max-content;grid-template-columns:1fr 1fr;}}#comp-m8omdbf1{--brw:0px;--brd:var(--color_13);--bg:var(--color_11);--rd:20px 20px 20px 20px;--shd:0.00px 1.00px 5px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf2{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbf2-container{box-sizing:border-box;padding-top:8px;padding-right:20px;padding-left:20px;padding-bottom:8px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,308.1247194824219fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf2{grid-area:1/1/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf2{width:100%;grid-area:1/1/2/2;}.comp-m8omdbf2-container{grid-template-columns:minmax(0px,114.55728587646485fr);}}#comp-m8omdbf2{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf211{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbf211{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--textAlign:center;--fontSize:20spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf39{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{justify-self:center;margin-right:0px;grid-area:1/3/2/5;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{justify-self:center;margin-right:max(0.5px, 0.0013627 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/1/3/3;}}#comp-m8omdbf39{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--fontFamily:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontSize:20spx;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}#comp-m8omdbf415{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}#comp-m8omdbf415 .comp-m8omdbf415-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf415{min-width:100%;margin-right:max(0.5px, 0.1341394 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/2/3/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf415 .comp-m8omdbf415-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf415{margin-right:0px;grid-area:3/1/4/2;}}#comp-m8omdbf415{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf510{--l_display:unset;height:auto;--aspect-ratio:1;width:30px;max-width:30px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf510{width:16.305280002590564%;justify-self:center;}}#comp-m8omdbf510{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf61{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf61-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf61{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbf61{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf68{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbf68{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68{--minFontSize:12px;--fontSize:14spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68{--minFontSize:14px;--fontSize:7.009spx;}}#comp-m8omdbf711{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbf711{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711{--minFontSize:12px;--fontSize:14spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711{--minFontSize:14px;--fontSize:7.009spx;--fontWeight:normal;}}#comp-m8omdbf82{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/4/2/5;position:relative;}#comp-m8omdbf82 .comp-m8omdbf82-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf82{min-width:100%;margin-left:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/4/3/6;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf82 .comp-m8omdbf82-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf82{margin-left:0px;margin-right:0px;grid-area:3/2/4/3;}}#comp-m8omdbf82{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf813{width:30px;height:auto;--aspect-ratio:0.9999999364217163;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf813{width:16.304364105482172%;--aspect-ratio:1;justify-self:center;}}#comp-m8omdbf813{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf97{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf97-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf97{grid-area:2/1/3/2;}}#comp-m8omdbf97{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf916{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{margin-right:10px;}}#comp-m8omdbf916{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfa13{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfa13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfb14{min-height:0px;--comp-display:flex;--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:max(0.5px, 7e-7 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/5/2/6;position:relative;}#comp-m8omdbfb14 .comp-m8omdbfb14-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfb14{width:87.03812863519576%;justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.001081 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.000012 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/5/3/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfb14{justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.0013267 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:2/2/3/3;}}#comp-m8omdbfb14{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc3{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbfc3-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc3{justify-self:end;}}#comp-m8omdbfc3{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc10{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbfc10{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfd11{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfd11{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfe{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/6/2/7;position:relative;}.comp-m8omdbfe-container{box-sizing:border-box;padding-top:10px;padding-right:30px;padding-left:30px;padding-bottom:10px;column-gap:20px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.009375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,105.28693225097658fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfe{margin-right:max(0.5px, 0.0006672 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/5/2/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfe{width:100%;margin-right:max(0.5px, 0.0013138 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}.comp-m8omdbfe-container{grid-template-columns:minmax(0px,94.56599675292969fr);}}#comp-m8omdbfe{--brw:1px;--brd:157,157,157;--bg:246,246,246;--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.1);--gradient:none;--alpha-brd:0.2;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfe11{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:max(0.5px, 0.0000055 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}.comp-m8omdbfe11-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbfe11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbff{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:1px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbff{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8ooawu0{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:5px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8ooawu0{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfg7{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0035088 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omdbfg7{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oobbzb{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}#comp-m8oobbzb{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oqa661{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:5/1/6/2;position:relative;}#comp-m8oqa661 .comp-m8oqa661-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqa661{grid-area:6/1/7/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqa661{grid-area:6/1/7/2;}}#comp-m8oqa661{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqbc3l{min-height:250px;--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8oqbc3l{--static-spx:1px;}#comp-m8omcigd2{width:auto;height:auto;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:2/1/3/2;position:relative;}.comp-m8omcigd2-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2:not(.comp-m8omcigd2-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2{--l_display:unset;}}#comp-m8omcigd2{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcigd2_r_comp-kbgakgyt{min-height:267.2430725097656px;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:7/1/8/2;position:relative;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:5%;padding-right:3%;padding-left:3%;padding-bottom:5%;row-gap:30px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);display:var(--l_display,var(--container-display));grid-template-rows:minmax(89.25276263439997px,auto) minmax(5.664037365600061px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt:not(.comp-m8omcigd2_r_comp-kbgakgyt-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;}}#comp-m8omcigd2_r_comp-kbgakgyt{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y11976{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{box-sizing:border-box;position:relative;pointer-events:none;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:0.78897289824462fr 0.5938730200850597fr 1.1149251916876468fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{row-gap:20px;grid-template-rows:minmax(max-content,36.4128993682897%) minmax(max-content,30.428289182936023%) minmax(max-content,33.15881144877427%);grid-template-columns:minmax(0px,1fr);}}#comp-m8omcigd2_r_comp-m2y11976{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y12dql{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y12dql{align-self:center;justify-self:start;margin-top:0px;grid-area:2/1/3/2;}}#comp-m8omcigd2_r_comp-m2y12dql{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1gxle{width:100%;height:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:55.0694580078125px;margin-left:0%;margin-bottom:0%;margin-right:0%;grid-area:1/3/2/4;position:relative;}.comp-m8omcigd2_r_comp-m2y1gxle-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y1gxle{align-self:center;margin-top:0px;grid-area:3/1/4/2;}}#comp-m8omcigd2_r_comp-m2y1gxle{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y1gkmp{--l_display:unset;height:auto;min-width:0px;width:53.70486122406853%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:63.50348472595215px;align-self:flex-start;order:1;position:relative;}#comp-m8omcigd2_r_comp-m2y1gkmp{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1awex{--l_display:unset;height:62.145843505859375px;min-width:333.7778015136719px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-top:0%;margin-right:0%;margin-left:0.005193163273693327%;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m8j7owsd{width:99.9999390940607%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcigd2_r_comp-m8j7owsd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcigd2_r_comp-m8j7owsd{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m8j7o6oq{width:105px;height:auto;--aspect-ratio:0.38645833333333335;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15.000030517578125px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:20px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:19.812px;}}#comp-m8omcigd2_r_comp-m8j7o6oq{--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y10ib8{--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m2y10ib8{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em montserrat,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 16px/1.6em montserrat,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:10px;--menuSpacing:0px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-mbweuill{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omcigd2_r_comp-mbweuill{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-kd5pdf7t{--l_display:unset;height:auto;min-width:0px;width:62.50000000000002%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:center;pointer-events:auto;margin-left:0.004035058593672147px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kd5pdf7t{width:100%;}}#comp-m8omcigd2_r_comp-kd5pdf7t{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textAlign:center;--fontSize:12px;--lineHeight:normal;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716{height:auto;width:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcih716-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716:not(.comp-m8omcih716-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih716{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcih716_r_comp-kd5px9hr{min-height:100vh;height:100vh;min-width:0px;width:300px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(0px,1fr);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr:not(.comp-m8omcih716_r_comp-kd5px9hr-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9hr{width:100vw;max-width:99999px;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{grid-template-columns:minmax(0px,390fr);}}#comp-m8omcih716_r_comp-kd5px9hr{--containerBackground:var(--color_11);--alpha-containerBackground:1;--bg:var(--color_15);--alpha-bg:0.8;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;width:60%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:100px;margin-bottom:200px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{width:46.15384615384615%;}}#comp-m8omcih716_r_comp-kd5px9kk{--bgs:var(--color_11);--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:var(--color_11);--brw:0px 0px 0px 0px;--brd:var(--color_15);--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_15);--alpha-txt:1;--arrowColor:var(--color_15);--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:var(--color_11);--txtsSub:var(--color_18);--alpha-txtsSub:1;--txts:var(--color_18);--alpha-txts:1;--bgexpanded:var(--color_11);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_15);--alpha-txtexpanded:1;--subMenuSpacing:25px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light {color_14};--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0.2;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}#comp-m8omcih716_r_comp-kkmqi5tc{height:20px;width:20px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;position:sticky;--force-auto:initial;top:var(--force-auto,calc(0px + var(--sticky-offset, 0px)));bottom:var(--force-auto,);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0%;margin-right:40px;margin-top:40px;margin-bottom:0px;grid-area:1/1/2/2;--is-sticky:1;}#comp-m8omcih716_r_comp-kkmqi5tc{--static-spx:0.1 * var(--one-unit);}#comp-m8omcih82{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih82-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih82{--static-spx:1px;}#comp-m8omcihb{width:auto;height:auto;--comp-display:unset;align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);grid-area:1/1/2/2;position:relative;}.comp-m8omcihb-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb:not(.comp-m8omcihb-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#masterPage:not(.landingPage){--top-offset:var(--header-height);}#masterPage.landingPage{--top-offset:0px;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb{--l_display:unset;}#masterPage:not(.landingPage){--top-offset:0px;}}#comp-m8omcihb{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcihb_r_comp-kbgajy18{min-height:31.493057250976562px;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-kbgajy18 .comp-m8omcihb_r_comp-kbgajy18-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:0%;padding-left:0%;padding-bottom:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(31.493042749023438px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-kbgajy18:not(.comp-m8omcihb_r_comp-kbgajy18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-kbgajy18{min-height:0px;--l_display:unset;align-self:start;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);}#comp-m8omcihb_r_comp-kbgajy18-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}}#comp-m8omcihb_r_comp-kbgajy18{--bg:var(--color_11);--bg-scrl:var(--color_19);--alpha-bg:0;--alpha-bg-scrl:0.5;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m6saac0q{height:27px;width:23px;--l_display:none;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:2.2%;margin-top:0px;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-m6saadbd{min-height:40px;--l_display:none;height:40px;width:120px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-top:0px;margin-right:70px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m6saadbd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd:not(.comp-m8omcihb_r_comp-m6saadbd-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd{--static-spx:1px;}#comp-m8omcihb_r_comp-mdeyh2rw{min-height:0px;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdeyh2rw-container{box-sizing:border-box;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(30px,auto) auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyh2rw{align-self:center;}.comp-m8omcihb_r_comp-mdeyh2rw-container{grid-template-rows:38px auto;}}#comp-m8omcihb_r_comp-mdeyh2rw{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:0.00px 1.00px 15px 1px rgba(0,0,0,0.33);--gradient:none;--alpha-brd:0;--alpha-bg:0;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xyvk9x{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:2/1/3/2;position:relative;}#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:15px;padding-right:4%;padding-left:4%;padding-bottom:15px;column-gap:2vw;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:auto 2fr auto max-content;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:20px;padding-left:20px;column-gap:20px;grid-template-columns:0.7455718081753153fr 1.4241559701215807fr 0.2028363141690787fr;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:15px;padding-left:15px;column-gap:12px;grid-template-columns:1.7156281834535556fr 0.19719864177627078fr 0.19719864177627078fr;}#comp-m8omcihb_r_comp-m2xyvk9x{margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;}}#comp-m8omcihb_r_comp-m2xyvk9x{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0.5;--backdrop-filter:blur(10px);--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xz2cwh{min-height:25px;--l_display:unset;height:auto;min-width:91px;width:20.58464803554209%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0.0014034987297066638%;margin-top:0%;margin-bottom:0%;grid-area:1/2/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xz2cwh{--l_display:none;min-width:95px;width:99.99991051557328%;justify-self:center;margin-left:0.05670408489563268%;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-m2xz2cwh{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:0;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:1;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1)scaleY(1)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1.02)scaleY(1.02)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-lxu2mi30{min-height:0px;--l_display:none;height:35px;min-width:0px;width:35px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:2.999267578125%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-lxu2mi30-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi30:not(.comp-m8omcihb_r_comp-lxu2mi30-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:35px;width:35px;margin-right:0%;grid-area:1/3/2/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:25px;width:30px;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-lxu2mi30{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxu2mi38{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c{min-height:300px;--l_display:unset;height:300px;min-width:0px;width:980px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:scroll;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c:not(.comp-m8omcihb_r_comp-lxu2mi3c-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}#comp-m8omcihb_r_comp-lxu2mi3d5{min-height:79px;--l_display:unset;height:auto;min-width:0px;width:40%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(79px,auto);grid-template-columns:minmax(0px,512fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3d5:not(.comp-m8omcihb_r_comp-lxu2mi3d5-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:50%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,339.7816875fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:100%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,390fr);}}#comp-m8omcihb_r_comp-lxu2mi3i1{min-height:0px;--l_display:unset;height:20px;min-width:0px;width:20px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:45.890625px;margin-top:34.5px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1{margin-right:0px;margin-top:0px;}}#comp-m8omcihb_r_comp-m5rceko6{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:333.23333740234375px;margin-left:0%;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m5rceko6-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:20vh;margin-left:0px;margin-bottom:20vh;margin-right:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:0vh;margin-left:0px;margin-bottom:1.834175071348669vh;margin-right:0px;}}#comp-m8omcihb_r_comp-m5rceko6{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdezy72f{min-height:0px;--l_display:none;height:auto;min-width:0px;width:52%;max-width:99999px;max-height:99999px;--comp-display:unset;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));align-self:flex-start;order:2;position:relative;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));column-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));flex-direction:row;justify-content:center;flex-wrap:wrap;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcihb_r_comp-mdezy72f:not(.comp-m8omcihb_r_comp-mdezy72f-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezy72f{margin-bottom:29.999984741210938px;order:1;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezy72f{--l_display:unset;margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:2;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{row-gap:5px;column-gap:0px;flex-direction:column;justify-content:flex-start;flex-wrap:nowrap;}}#comp-m8omcihb_r_comp-mdezy72f{--brw:0px;--brd:50,65,88;--bg:255,255,255;--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}.comp-m8omcihb_r_comp-mdezy72s{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;padding-top:5px;padding-right:0px;padding-left:0px;padding-bottom:5px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;flex-basis:auto;flex-grow:0;flex-shrink:0;position:relative;}.comp-m8omcihb_r_comp-mdezy72s{--brw:0px;--brd:var(--color_15);--bg:var(--color_12);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdezy72s{--alpha-bg:0;}}.comp-m8omcihb_r_comp-mdf0r6km{--l_display:none;height:auto;min-width:0px;width:18.125%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0042666 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:max(0.5px, 0.1398222 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--l_display:unset;width:max-content;align-self:center;justify-self:start;margin-right:0px;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0r6km{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--fontSize:12spx;}}.comp-m8omcihb_r_comp-mdf0tx18{min-height:110px;--l_display:none;height:auto;min-width:0px;width:185px;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;align-self:center;justify-self:center;pointer-events:auto;margin-top:max(0.5px, 0.0078133 * (var(--scaling-factor) - var(--scrollbar-width)));margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdf0tx18:not(.comp-m8omcihb_r_comp-mdf0tx18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{min-height:0px;--l_display:unset;height:100%;width:100%;align-self:start;justify-self:start;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0tx18{--font:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--color:#000000;--label-display:none;--letter-spacing:0em;--line-height:unset;--text-decoration:none;--direction:rtl;--text-align:center;--text-highlight:none;--text-transform:none;--text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--text-shadow:0px 0px 0px transparent;--background:rgba(255,255,255,1);--box-shadow:1px 2px 8px 1px rgba(0,0,0,0.1);--border-left:2px dashed rgba(199,199,199,1);--border-right:2px dashed rgba(199,199,199,1);--border-top:2px dashed rgba(199,199,199,1);--border-bottom:2px dashed rgba(199,199,199,1);--padding-bottom:8px;--padding-top:8px;--padding-left:8px;--padding-right:8px;--border-top-left-radius:6px;--border-top-right-radius:6px;--border-bottom-left-radius:6px;--border-bottom-right-radius:6px;--icon-display:initial;--icon-size:24px;--icon-color:rgba(0,0,0,1);--icon-rotation:0;--container-flex-direction:row-reverse;--container-justify-content:center;--container-align-items:center;--content-horizontal-alignment:center;--content-gap:0px;--label-overflow:wrap;--disabled-icon-rotation:0;--hover-border-right:2px solid rgba(141,181,255,1);--disabled-border-bottom:2px solid rgba(199,199,199,1);--disabled-border-top:2px solid rgba(199,199,199,1);--hover-border-left:2px solid rgba(141,181,255,1);--disabled-background:rgba(199,199,199,1);--disabled-border-right:2px solid rgba(199,199,199,1);--disabled-color:#000000;--hover-border-top:2px solid rgba(141,181,255,1);--hover-border-bottom:2px solid rgba(141,181,255,1);--disabled-border-left:2px solid rgba(199,199,199,1);--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{--background:rgba(255,255,255,0);--box-shadow:none;--border-left:0px dashed rgba(199,199,199,1);--border-right:0px dashed rgba(199,199,199,1);--border-top:0px dashed rgba(199,199,199,1);--border-bottom:0px dashed rgba(199,199,199,1);--icon-display:none;}}#comp-m8omcihb_r_comp-m5rceatr{min-height:25px;--l_display:unset;height:auto;min-width:95px;width:58.8235294117647%;max-width:200px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:20px;order:2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:3;}}#comp-m8omcihb_r_comp-m5rceatr{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:1;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:0.7;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxubhuix{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.8529411764706%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:29.999969482421875px;align-self:flex-end;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:29.999984741210938px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:10px;}}#comp-m8omcihb_r_comp-lxubhuix{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:0px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--fnt:normal normal 700 18px/1.6em montserrat,sans-serif;--fntSubMenu:normal normal normal 14px/1.6em montserrat,sans-serif;--menuSpacing:0px;}}#comp-m8omcihb_r_comp-mdezahz3{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezahz3{order:3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezahz3{order:4;}}#comp-m8omcihb_r_comp-mdezahz3{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m73v5p0x{width:23px;height:27px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:4.01666259765625px;grid-area:1/4/2/5;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m73v5p0x{margin-right:0px;margin-bottom:0px;grid-area:1/2/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m73v5p0x{width:20px;height:23.8203125px;margin-right:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.0000213 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-m8j7mq6v{min-height:0px;--l_display:unset;height:40.5703125px;min-width:0px;width:105px;max-width:99999px;max-height:99999px;--aspect-ratio:auto;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:min(-0.5px, 0 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0000062 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m8j7mq6v{margin-left:0px;margin-bottom:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m8j7mq6v{min-height:unset;height:auto;--aspect-ratio:0.3380208333333333;width:120px;}}#comp-m8omcihb_r_comp-m8j7mq6v{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m99166jr{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:85.59978065360544%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:max(0.5px, 0.0678332 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m99166jr{--l_display:none;width:auto;align-self:center;justify-self:stretch;margin-right:0%;margin-bottom:0%;}}#comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdez2caz{min-height:0px;--l_display:unset;height:80%;min-width:2px;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdez2caz{justify-self:end;margin-right:15px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdez2caz{--lnw:1px;--brd:var(--color_11);--mrg:1px;--alpha-brd:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdeyhsow{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:5%;padding-left:5%;padding-bottom:0px;column-gap:30px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:1fr 1fr auto;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{padding-top:5px;padding-bottom:5px;grid-template-columns:auto max-content;}}#comp-m8omcihb_r_comp-mdeyhsow{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdeylyv3{min-height:unset;--l_display:unset;height:auto;--aspect-ratio:0.4;min-width:0px;width:100%;max-width:99999px;max-height:99999px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{width:38.114694739409835%;grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--orientation:HORIZ;--spacing:10px;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:33.599spx;--spacing:10.001spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--spacing:10px;}}#comp-m8omcihb_r_comp-mdeyqfi8{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyqfi8{--l_display:none;align-self:end;margin-left:max(0.5px, 0.08 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0%;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdf18wki{--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--l_display:unset;width:max-content;align-self:center;justify-self:end;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdf18wki{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--textDecoration:none;--color:var(--color_11);--alpha-color:1;--fontSize:4.216spx;}}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{--alpha-txth:1;--bgh:43,104,156;--shd:0 1px 4px rgba(0, 0, 0, 0.6);--rd:20px;--alpha-brdh:1;--txth:255,255,255;--alpha-brd:1;--alpha-bg:1;--bg:61,155,233;--txt:255,255,255;--alpha-bgh:1;--brw:0px;--fnt:normal normal normal 14px/1.4em raleway;--brd:43,104,156;--boxShadowToggleOn-shd:none;--alpha-txt:1;--brdh:61,155,233;--static-spx:1px;}#comp-m8oopad5{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8oopad5-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8oopad5{--static-spx:1px;}#comp-m9cxxt3r{width:auto;height:auto;--comp-display:unset;align-self:end;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:10px;margin-bottom:0px;margin-left:0px;grid-area:1/1/2/2;position:relative;}.comp-m9cxxt3r-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m9cxxt3r:not(.comp-m9cxxt3r-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m9cxxt3r-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;bottom:0;top:unset;height:auto;}#comp-m9cxxt3r{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m9cxxt3r_r_comp-m9cxxr9c{height:auto;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m9cxxt3r{justify-self:end;align-self:end;position:absolute;grid-area:1 / 1 / 2 / 2;pointer-events:auto;}#comp-mfl8zvjs{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-mfl8zvjs-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-mfl8zvjs{--static-spx:1px;}</style> | |
| 439 | +<style id="stylableCss_ebqqm">/* END STYLABLE DIRECTIVE RULES */ | |
| 440 | + | |
| 441 | +#comp-m8omdbex1 .style-m8omdbey8__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border-radius: 10px;border: 0px solid #000000;background: #4B6397;padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px} | |
| 442 | + | |
| 443 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 444 | + | |
| 445 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover { | |
| 446 | + background: #999999; | |
| 447 | + border: 0px solid #000000; | |
| 448 | +} | |
| 449 | + | |
| 450 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__icon { | |
| 451 | + fill: #000000; | |
| 452 | + transform: rotate(317deg);} | |
| 453 | + | |
| 454 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__label { | |
| 455 | + color: #000000; | |
| 456 | +} | |
| 457 | + | |
| 458 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled{background: #E2E2E2} | |
| 459 | + | |
| 460 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__label{color: #8F8F8F} | |
| 461 | + | |
| 462 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 463 | + | |
| 464 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__container{transition: inherit;flex-direction: row;justify-content: center;align-items: center} | |
| 465 | + | |
| 466 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;display: initial;margin-left: 0px;margin-right: 5px; font-family: montserrat,sans-serif; font-size: calc(19 * var(--theme-spx-ratio)); font-weight: normal; font-style: normal;font-size: 16px;color: #FAFAFA} | |
| 467 | + | |
| 468 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;margin-right: 0px;width: 14px;height: 14px;margin-left: 5px;fill: #FAFAFA}@media screen and (min-width: 320px) and (max-width: 1000px){/* END STYLABLE DIRECTIVE RULES */ | |
| 469 | + | |
| 470 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 471 | + | |
| 472 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { font-size: calc(19 * var(--theme-spx-ratio)); | |
| 473 | + font-size: 16px; | |
| 474 | +}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 475 | + | |
| 476 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon { | |
| 477 | + width: 12px; | |
| 478 | + height: 12px; | |
| 479 | + margin-left: 4px; | |
| 480 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 481 | + | |
| 482 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 483 | + | |
| 484 | +#comp-m8omdbex1 .style-m8omdbey8__root{ | |
| 485 | + padding-right: 0px; | |
| 486 | +} | |
| 487 | + | |
| 488 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { | |
| 489 | + margin-right: 4px; font-size: calc(19 * var(--theme-spx-ratio)); | |
| 490 | + font-size: 16px; | |
| 491 | +}}/* END STYLABLE DIRECTIVE RULES */ | |
| 492 | + | |
| 493 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding: 0px;border: 0px solid #949494;border-radius: 0px;background: rgba(255, 255, 255, 0)} | |
| 494 | + | |
| 495 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 496 | + | |
| 497 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover { | |
| 498 | + background: rgba(255, 255, 255, 0); | |
| 499 | + border: 0px solid #000000; | |
| 500 | +} | |
| 501 | + | |
| 502 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__icon { | |
| 503 | + transform: rotate(0deg); | |
| 504 | + fill: #4B6397;} | |
| 505 | + | |
| 506 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__label { | |
| 507 | + color: #FFFFFF; | |
| 508 | +} | |
| 509 | + | |
| 510 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled{border: 0px solid #000000;background: #EEEEEE} | |
| 511 | + | |
| 512 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__label{ | |
| 513 | + color: #4F4F4F} | |
| 514 | + | |
| 515 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 516 | + | |
| 517 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 518 | + | |
| 519 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #000000; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;margin-right: 0px;margin-left: 0px;margin-top: 0px;margin-bottom: 0px;display: none} | |
| 520 | + | |
| 521 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;width: 60px;height: 60px;margin-left: 0px;margin-right: 0px;margin-bottom: 0px;margin-top: 0px;fill: #000000;display: initial}@media screen and (min-width: 320px) and (max-width: 1000px){ | |
| 522 | + | |
| 523 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 524 | + -st-extends: HamburgerOpenButton; | |
| 525 | + border: 0px solid #000000; | |
| 526 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 527 | + | |
| 528 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 529 | + | |
| 530 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 531 | + fill: #FAFAFA;}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 532 | + | |
| 533 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 534 | + -st-extends: HamburgerOpenButton; | |
| 535 | + border: 0px solid #000000; | |
| 536 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 537 | + | |
| 538 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 539 | + | |
| 540 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 541 | + fill: #FAFAFA;}}#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 542 | + | |
| 543 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 544 | + | |
| 545 | +#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-styleId__root { -st-extends: HamburgerOverlay; background-color: rgba(0, 0, 0, 0.8); }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 546 | + | |
| 547 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 548 | + | |
| 549 | +/* END STYLABLE DIRECTIVE RULES */}#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 550 | + | |
| 551 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 552 | + | |
| 553 | +#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root { -st-extends: HamburgerMenuContainer; background-color: #FFFFFF; }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 554 | + | |
| 555 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 556 | + | |
| 557 | +/* END STYLABLE DIRECTIVE RULES */}/* END STYLABLE DIRECTIVE RULES */ | |
| 558 | + | |
| 559 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding-right: 0px;border-radius: 300px;background: rgba(255, 255, 255, 0)} | |
| 560 | + | |
| 561 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 562 | + | |
| 563 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover { | |
| 564 | + background: #FFFFFF; | |
| 565 | + border: 0px solid #000000; | |
| 566 | + border-radius: 0px; | |
| 567 | +} | |
| 568 | + | |
| 569 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__icon { | |
| 570 | + fill: #000000; | |
| 571 | + transform: rotate(90deg);} | |
| 572 | + | |
| 573 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__label { | |
| 574 | + color: #000000; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled{ | |
| 578 | + background: #EEEEEE} | |
| 579 | + | |
| 580 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__label{ | |
| 581 | + color: #4F4F4F} | |
| 582 | + | |
| 583 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 584 | + | |
| 585 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 586 | + | |
| 587 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #FFFFFF; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;display: none;margin-left: 1px} | |
| 588 | + | |
| 589 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;transform: rotate(0deg);fill: #000000;width: 28px;height: 28px;margin-right: 1px}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1 {/* START STYLABLE DIRECTIVE RULES */} | |
| 590 | + | |
| 591 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 592 | + | |
| 593 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{ | |
| 594 | + -st-extends: HamburgerCloseButton; | |
| 595 | +}}</style> | |
| 596 | +<style id="compCssMappers_ebqqm">#ebqqm{--shc-mutated-brightness:125,125,125;justify-self:unset;}#comp-m8omdbdn{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;--inherit-transition:var(--transition, none);}#comp-m8oqdae2{--shc-mutated-brightness:125,125,125;}#comp-m8omdbe910{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea7{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea15{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0466045 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0664894 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}#comp-m8omdbeb13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:14px !important;}}#comp-m8omdbec6{--shc-mutated-brightness:77,77,77;}#comp-m8omdbec15{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeg9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeh9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbei9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdben{--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--align:start;--textPaddingTop:0.75em;--textPaddingStart:12px;--textPaddingEnd:10px;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdber7{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8omdber7{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbeu13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeu13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbew :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FF4040;background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FF4040);}#comp-m8or8zjr{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8or8zjr{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbdr7{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82o{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82u{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82u :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu82z{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82z :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu8301{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu8301 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8omdbdy12{--shc-mutated-brightness:125,125,125;}#comp-m8omf94r{--shc-mutated-brightness:77,77,77;}#comp-m8omdbey11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbez{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}#comp-m8omdbf0{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf1{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf2{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf211{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf211 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;text-align:center;}#comp-m8omdbf39{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf415{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf510{--opacity:1;}#comp-m8omdbf61{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf68{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf711{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf82{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf813{--fill:#000000;--opacity:1;}#comp-m8omdbf97{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf916{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfa13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfb14{--shc-mutated-brightness:77,77,77;}#comp-m8omdbfc3{--shc-mutated-brightness:125,125,125;}#comp-m8omdbfc10{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfd11{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfe{--shc-mutated-brightness:123,123,123;}#comp-m8omdbfe11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbff{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8ooawu0{--text-direction:var(--wix-opt-in-direction);}#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfg7{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oobbzb{--text-direction:var(--wix-opt-in-direction);}#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oqa661{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-kbgakgyt{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y11976{--shc-mutated-brightness:77,77,77;}#comp-m8omcigd2_r_comp-m2y12dql{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y12dql :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}#comp-m8omcigd2_r_comp-m2y1gxle{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m2y1gkmp{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y1gkmp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}.comp-m8omcigd2_r_comp-m2y1awex { | |
| 597 | + --wix-direction: ltr; | |
| 598 | +--inputBorderRadius: 10; | |
| 599 | +--columnSpacing: 10; | |
| 600 | +--horizontalPadding: 0; | |
| 601 | +--verticalPadding: 0; | |
| 602 | +--submitButtonBorderRadius: 10; | |
| 603 | +--rowSpacing: 5; | |
| 604 | +--borderWidth: 0; | |
| 605 | +--borderRadius: 0; | |
| 606 | +--shadowAngle: 135; | |
| 607 | +--shadowDistance: 0; | |
| 608 | +--shadowSize: 0; | |
| 609 | +--shadowBlur: 25; | |
| 610 | +--buttonsStyle: 2; | |
| 611 | +--buttonsBorderWidth: 0; | |
| 612 | +--buttonsBorderRadius: 0; | |
| 613 | +--submitButtonStyle: 2; | |
| 614 | +--submitButtonBorderWidth: 0; | |
| 615 | +--nextButtonStyle: 2; | |
| 616 | +--nextButtonBorderWidth: 0; | |
| 617 | +--nextButtonBorderRadius: 0; | |
| 618 | +--previousButtonStyle: 2; | |
| 619 | +--previousButtonBorderWidth: 1; | |
| 620 | +--previousButtonBorderRadius: 0; | |
| 621 | +--inputBorderStyle: 1; | |
| 622 | +--inputBorderWidth: 1; | |
| 623 | +--buttonsFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 624 | +--buttonsFontHover: normal normal normal 16px/16px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 625 | +--submitButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 626 | +--submitButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 627 | +--nextButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 628 | +--nextButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 629 | +--previousButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 630 | +--previousButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 631 | +--headerThreeFont: normal normal normal 34px/1.4em montserrat-black,sans-serif; | |
| 632 | +--headerFourFont: normal normal normal 30px/1.4em montserrat-black,sans-serif; | |
| 633 | +--headerFiveFont: normal normal normal 25px/1.4em montserrat-black,sans-serif; | |
| 634 | +--headerSixFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 635 | +--headerOneFontH1: normal normal bold 65px/1.4em montserrat,sans-serif; | |
| 636 | +--headerTwoFontH2: normal normal bold 38px/1.4em montserrat,sans-serif; | |
| 637 | +--paragraphFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 638 | +--thankYouMessageFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 639 | +--headerTwoColor: 0,0,0; | |
| 640 | +--headerTwoColor-rgb: 0,0,0; | |
| 641 | +--headerTwoColor-opacity: 1; | |
| 642 | +--headerOneColor: 0,0,0; | |
| 643 | +--headerOneColor-rgb: 0,0,0; | |
| 644 | +--headerOneColor-opacity: 1; | |
| 645 | +--submitButtonBackgroundColor: 0,36,116; | |
| 646 | +--submitButtonBackgroundColor-rgb: 0,36,116; | |
| 647 | +--submitButtonBackgroundColor-opacity: 1; | |
| 648 | +--submitButtonBackgroundColorHover: 0,0,0,0.7; | |
| 649 | +--submitButtonBackgroundColorHover-rgb: 0,0,0; | |
| 650 | +--submitButtonBackgroundColorHover-opacity: 0.7; | |
| 651 | +--formBackground: 250,250,250; | |
| 652 | +--formBackground-rgb: 250,250,250; | |
| 653 | +--formBackground-opacity: 1; | |
| 654 | +--borderColor: 0,0,0,0; | |
| 655 | +--borderColor-rgb: 0,0,0; | |
| 656 | +--borderColor-opacity: 0; | |
| 657 | +--shadowColor: 0,0,0,0.15; | |
| 658 | +--shadowColor-rgb: 0,0,0; | |
| 659 | +--shadowColor-opacity: 0.15; | |
| 660 | +--buttonsColor: 250,250,250; | |
| 661 | +--buttonsColor-rgb: 250,250,250; | |
| 662 | +--buttonsColor-opacity: 1; | |
| 663 | +--buttonsBackgroundColor: 75,99,151; | |
| 664 | +--buttonsBackgroundColor-rgb: 75,99,151; | |
| 665 | +--buttonsBackgroundColor-opacity: 1; | |
| 666 | +--buttonsBorderColor: 250,250,250,0; | |
| 667 | +--buttonsBorderColor-rgb: 250,250,250; | |
| 668 | +--buttonsBorderColor-opacity: 0; | |
| 669 | +--buttonsColorHover: 250,250,250; | |
| 670 | +--buttonsColorHover-rgb: 250,250,250; | |
| 671 | +--buttonsColorHover-opacity: 1; | |
| 672 | +--buttonsBackgroundColorHover: 75,99,151,0.7; | |
| 673 | +--buttonsBackgroundColorHover-rgb: 75,99,151; | |
| 674 | +--buttonsBackgroundColorHover-opacity: 0.7; | |
| 675 | +--submitButtonColor: 250,250,250; | |
| 676 | +--submitButtonColor-rgb: 250,250,250; | |
| 677 | +--submitButtonColor-opacity: 1; | |
| 678 | +--submitButtonBorderColor: 250,250,250,0; | |
| 679 | +--submitButtonBorderColor-rgb: 250,250,250; | |
| 680 | +--submitButtonBorderColor-opacity: 0; | |
| 681 | +--submitButtonColorHover: 250,250,250; | |
| 682 | +--submitButtonColorHover-rgb: 250,250,250; | |
| 683 | +--submitButtonColorHover-opacity: 1; | |
| 684 | +--submitButtonBorderColorHover: 250,250,250,0; | |
| 685 | +--submitButtonBorderColorHover-rgb: 250,250,250; | |
| 686 | +--submitButtonBorderColorHover-opacity: 0; | |
| 687 | +--nextButtonColor: 250,250,250; | |
| 688 | +--nextButtonColor-rgb: 250,250,250; | |
| 689 | +--nextButtonColor-opacity: 1; | |
| 690 | +--nextButtonBackgroundColor: 75,99,151; | |
| 691 | +--nextButtonBackgroundColor-rgb: 75,99,151; | |
| 692 | +--nextButtonBackgroundColor-opacity: 1; | |
| 693 | +--nextButtonBorderColor: 250,250,250,0; | |
| 694 | +--nextButtonBorderColor-rgb: 250,250,250; | |
| 695 | +--nextButtonBorderColor-opacity: 0; | |
| 696 | +--nextButtonColorHover: 250,250,250; | |
| 697 | +--nextButtonColorHover-rgb: 250,250,250; | |
| 698 | +--nextButtonColorHover-opacity: 1; | |
| 699 | +--nextButtonBackgroundColorHover: 75,99,151,0.7; | |
| 700 | +--nextButtonBackgroundColorHover-rgb: 75,99,151; | |
| 701 | +--nextButtonBackgroundColorHover-opacity: 0.7; | |
| 702 | +--nextButtonBorderColorHover: 250,250,250,0; | |
| 703 | +--nextButtonBorderColorHover-rgb: 250,250,250; | |
| 704 | +--nextButtonBorderColorHover-opacity: 0; | |
| 705 | +--previousButtonColor: 0,0,0; | |
| 706 | +--previousButtonColor-rgb: 0,0,0; | |
| 707 | +--previousButtonColor-opacity: 1; | |
| 708 | +--previousButtonBackgroundColor: 75,99,151,0; | |
| 709 | +--previousButtonBackgroundColor-rgb: 75,99,151; | |
| 710 | +--previousButtonBackgroundColor-opacity: 0; | |
| 711 | +--previousButtonBorderColor: 0,0,0; | |
| 712 | +--previousButtonBorderColor-rgb: 0,0,0; | |
| 713 | +--previousButtonBorderColor-opacity: 1; | |
| 714 | +--previousButtonColorHover: 250,250,250; | |
| 715 | +--previousButtonColorHover-rgb: 250,250,250; | |
| 716 | +--previousButtonColorHover-opacity: 1; | |
| 717 | +--previousButtonBackgroundColorHover: 75,99,151,0.7; | |
| 718 | +--previousButtonBackgroundColorHover-rgb: 75,99,151; | |
| 719 | +--previousButtonBackgroundColorHover-opacity: 0.7; | |
| 720 | +--previousButtonBorderColorHover: 250,250,250,0; | |
| 721 | +--previousButtonBorderColorHover-rgb: 250,250,250; | |
| 722 | +--previousButtonBorderColorHover-opacity: 0; | |
| 723 | +--headerThreeColor: 0,0,0; | |
| 724 | +--headerThreeColor-rgb: 0,0,0; | |
| 725 | +--headerThreeColor-opacity: 1; | |
| 726 | +--headerFourColor: 0,0,0; | |
| 727 | +--headerFourColor-rgb: 0,0,0; | |
| 728 | +--headerFourColor-opacity: 1; | |
| 729 | +--headerFiveColor: 0,0,0; | |
| 730 | +--headerFiveColor-rgb: 0,0,0; | |
| 731 | +--headerFiveColor-opacity: 1; | |
| 732 | +--headerSixColor: 0,0,0; | |
| 733 | +--headerSixColor-rgb: 0,0,0; | |
| 734 | +--headerSixColor-opacity: 1; | |
| 735 | +--paragraphColor: 0,0,0; | |
| 736 | +--paragraphColor-rgb: 0,0,0; | |
| 737 | +--paragraphColor-opacity: 1; | |
| 738 | +--inputBackgroundColor: 250,250,250; | |
| 739 | +--inputBackgroundColor-rgb: 250,250,250; | |
| 740 | +--inputBackgroundColor-opacity: 1; | |
| 741 | +--inputBackgroundColorHover: 250,250,250; | |
| 742 | +--inputBackgroundColorHover-rgb: 250,250,250; | |
| 743 | +--inputBackgroundColorHover-opacity: 1; | |
| 744 | +--inputBorderColor: 0,0,0,0.6; | |
| 745 | +--inputBorderColor-rgb: 0,0,0; | |
| 746 | +--inputBorderColor-opacity: 0.6; | |
| 747 | +--inputBorderColorHover: 0,0,0; | |
| 748 | +--inputBorderColorHover-rgb: 0,0,0; | |
| 749 | +--inputBorderColorHover-opacity: 1; | |
| 750 | +--inputLabelColor: 0,0,0; | |
| 751 | +--inputLabelColor-rgb: 0,0,0; | |
| 752 | +--inputLabelColor-opacity: 1; | |
| 753 | +--inputValueColor: 0,0,0; | |
| 754 | +--inputValueColor-rgb: 0,0,0; | |
| 755 | +--inputValueColor-opacity: 1; | |
| 756 | +--inputOptionColor: 0,0,0; | |
| 757 | +--inputOptionColor-rgb: 0,0,0; | |
| 758 | +--inputOptionColor-opacity: 1; | |
| 759 | +--inputNoteColor: 51,51,51; | |
| 760 | +--inputNoteColor-rgb: 51,51,51; | |
| 761 | +--inputNoteColor-opacity: 1; | |
| 762 | +--inputPlaceholderColor: 51,51,51; | |
| 763 | +--inputPlaceholderColor-rgb: 51,51,51; | |
| 764 | +--inputPlaceholderColor-opacity: 1; | |
| 765 | +--inputSelectionColor: 75,99,151; | |
| 766 | +--inputSelectionColor-rgb: 75,99,151; | |
| 767 | +--inputSelectionColor-opacity: 1; | |
| 768 | +--dropdownBackgroundColor: 250,250,250; | |
| 769 | +--dropdownBackgroundColor-rgb: 250,250,250; | |
| 770 | +--dropdownBackgroundColor-opacity: 1; | |
| 771 | +--dropdownOptionTextColor: 0,0,0; | |
| 772 | +--dropdownOptionTextColor-rgb: 0,0,0; | |
| 773 | +--dropdownOptionTextColor-opacity: 1; | |
| 774 | +--linkColor: 75,99,151; | |
| 775 | +--linkColor-rgb: 75,99,151; | |
| 776 | +--linkColor-opacity: 1; | |
| 777 | +--thankYouMessageColor: 0,0,0; | |
| 778 | +--thankYouMessageColor-rgb: 0,0,0; | |
| 779 | +--thankYouMessageColor-opacity: 1; | |
| 780 | +--inputErrorColor: 223,49,49; | |
| 781 | +--inputErrorColor-rgb: 223,49,49; | |
| 782 | +--inputErrorColor-opacity: 1; | |
| 783 | +--inputValueFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 784 | +--inputValueFont-style: normal; | |
| 785 | +--inputValueFont-variant: normal; | |
| 786 | +--inputValueFont-weight: normal; | |
| 787 | +--inputValueFont-size: 14px; | |
| 788 | +--inputValueFont-line-height: 17px; | |
| 789 | +--inputValueFont-family: montserrat,sans-serif; | |
| 790 | +--inputValueFont-text-decoration: none; | |
| 791 | +--inputNoteFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 792 | +--inputNoteFont-style: normal; | |
| 793 | +--inputNoteFont-variant: normal; | |
| 794 | +--inputNoteFont-weight: normal; | |
| 795 | +--inputNoteFont-size: 14px; | |
| 796 | +--inputNoteFont-line-height: 17px; | |
| 797 | +--inputNoteFont-family: montserrat,sans-serif; | |
| 798 | +--inputNoteFont-text-decoration: none; | |
| 799 | +--headerTwoFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 800 | +--headerTwoFont-style: normal; | |
| 801 | +--headerTwoFont-variant: normal; | |
| 802 | +--headerTwoFont-weight: normal; | |
| 803 | +--headerTwoFont-size: 19px; | |
| 804 | +--headerTwoFont-line-height: 1.4em; | |
| 805 | +--headerTwoFont-family: montserrat,sans-serif; | |
| 806 | +--headerTwoFont-text-decoration: none; | |
| 807 | +--headerOneFont: normal normal normal 16px/20px montserrat,sans-serif; | |
| 808 | +--headerOneFont-style: normal; | |
| 809 | +--headerOneFont-variant: normal; | |
| 810 | +--headerOneFont-weight: normal; | |
| 811 | +--headerOneFont-size: 16px; | |
| 812 | +--headerOneFont-line-height: 20px; | |
| 813 | +--headerOneFont-family: montserrat,sans-serif; | |
| 814 | +--headerOneFont-text-decoration: none; | |
| 815 | +--inputLabelFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 816 | +--inputLabelFont-style: normal; | |
| 817 | +--inputLabelFont-variant: normal; | |
| 818 | +--inputLabelFont-weight: normal; | |
| 819 | +--inputLabelFont-size: 14px; | |
| 820 | +--inputLabelFont-line-height: 17px; | |
| 821 | +--inputLabelFont-family: montserrat,sans-serif; | |
| 822 | +--inputLabelFont-text-decoration: none; | |
| 823 | +--buttonsFont-style: normal; | |
| 824 | +--buttonsFont-variant: normal; | |
| 825 | +--buttonsFont-weight: normal; | |
| 826 | +--buttonsFont-size: 16px; | |
| 827 | +--buttonsFont-line-height: 1.4em; | |
| 828 | +--buttonsFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 829 | +--buttonsFont-text-decoration: none; | |
| 830 | +--buttonsFontHover-style: normal; | |
| 831 | +--buttonsFontHover-variant: normal; | |
| 832 | +--buttonsFontHover-weight: normal; | |
| 833 | +--buttonsFontHover-size: 16px; | |
| 834 | +--buttonsFontHover-line-height: 16px; | |
| 835 | +--buttonsFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 836 | +--buttonsFontHover-text-decoration: none; | |
| 837 | +--submitButtonFont-style: normal; | |
| 838 | +--submitButtonFont-variant: normal; | |
| 839 | +--submitButtonFont-weight: normal; | |
| 840 | +--submitButtonFont-size: 16px; | |
| 841 | +--submitButtonFont-line-height: 1.4em; | |
| 842 | +--submitButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 843 | +--submitButtonFont-text-decoration: none; | |
| 844 | +--submitButtonFontHover-style: normal; | |
| 845 | +--submitButtonFontHover-variant: normal; | |
| 846 | +--submitButtonFontHover-weight: normal; | |
| 847 | +--submitButtonFontHover-size: 16px; | |
| 848 | +--submitButtonFontHover-line-height: 1.4em; | |
| 849 | +--submitButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 850 | +--submitButtonFontHover-text-decoration: none; | |
| 851 | +--nextButtonFont-style: normal; | |
| 852 | +--nextButtonFont-variant: normal; | |
| 853 | +--nextButtonFont-weight: normal; | |
| 854 | +--nextButtonFont-size: 16px; | |
| 855 | +--nextButtonFont-line-height: 1.4em; | |
| 856 | +--nextButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 857 | +--nextButtonFont-text-decoration: none; | |
| 858 | +--nextButtonFontHover-style: normal; | |
| 859 | +--nextButtonFontHover-variant: normal; | |
| 860 | +--nextButtonFontHover-weight: normal; | |
| 861 | +--nextButtonFontHover-size: 16px; | |
| 862 | +--nextButtonFontHover-line-height: 1.4em; | |
| 863 | +--nextButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 864 | +--nextButtonFontHover-text-decoration: none; | |
| 865 | +--previousButtonFont-style: normal; | |
| 866 | +--previousButtonFont-variant: normal; | |
| 867 | +--previousButtonFont-weight: normal; | |
| 868 | +--previousButtonFont-size: 16px; | |
| 869 | +--previousButtonFont-line-height: 1.4em; | |
| 870 | +--previousButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 871 | +--previousButtonFont-text-decoration: none; | |
| 872 | +--previousButtonFontHover-style: normal; | |
| 873 | +--previousButtonFontHover-variant: normal; | |
| 874 | +--previousButtonFontHover-weight: normal; | |
| 875 | +--previousButtonFontHover-size: 16px; | |
| 876 | +--previousButtonFontHover-line-height: 1.4em; | |
| 877 | +--previousButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 878 | +--previousButtonFontHover-text-decoration: none; | |
| 879 | +--headerThreeFont-style: normal; | |
| 880 | +--headerThreeFont-variant: normal; | |
| 881 | +--headerThreeFont-weight: normal; | |
| 882 | +--headerThreeFont-size: 34px; | |
| 883 | +--headerThreeFont-line-height: 1.4em; | |
| 884 | +--headerThreeFont-family: montserrat-black,sans-serif; | |
| 885 | +--headerThreeFont-text-decoration: none; | |
| 886 | +--headerFourFont-style: normal; | |
| 887 | +--headerFourFont-variant: normal; | |
| 888 | +--headerFourFont-weight: normal; | |
| 889 | +--headerFourFont-size: 30px; | |
| 890 | +--headerFourFont-line-height: 1.4em; | |
| 891 | +--headerFourFont-family: montserrat-black,sans-serif; | |
| 892 | +--headerFourFont-text-decoration: none; | |
| 893 | +--headerFiveFont-style: normal; | |
| 894 | +--headerFiveFont-variant: normal; | |
| 895 | +--headerFiveFont-weight: normal; | |
| 896 | +--headerFiveFont-size: 25px; | |
| 897 | +--headerFiveFont-line-height: 1.4em; | |
| 898 | +--headerFiveFont-family: montserrat-black,sans-serif; | |
| 899 | +--headerFiveFont-text-decoration: none; | |
| 900 | +--headerSixFont-style: normal; | |
| 901 | +--headerSixFont-variant: normal; | |
| 902 | +--headerSixFont-weight: normal; | |
| 903 | +--headerSixFont-size: 19px; | |
| 904 | +--headerSixFont-line-height: 1.4em; | |
| 905 | +--headerSixFont-family: montserrat,sans-serif; | |
| 906 | +--headerSixFont-text-decoration: none; | |
| 907 | +--headerOneFontH1-style: normal; | |
| 908 | +--headerOneFontH1-variant: normal; | |
| 909 | +--headerOneFontH1-weight: bold; | |
| 910 | +--headerOneFontH1-size: 65px; | |
| 911 | +--headerOneFontH1-line-height: 1.4em; | |
| 912 | +--headerOneFontH1-family: montserrat,sans-serif; | |
| 913 | +--headerOneFontH1-text-decoration: none; | |
| 914 | +--headerTwoFontH2-style: normal; | |
| 915 | +--headerTwoFontH2-variant: normal; | |
| 916 | +--headerTwoFontH2-weight: bold; | |
| 917 | +--headerTwoFontH2-size: 38px; | |
| 918 | +--headerTwoFontH2-line-height: 1.4em; | |
| 919 | +--headerTwoFontH2-family: montserrat,sans-serif; | |
| 920 | +--headerTwoFontH2-text-decoration: none; | |
| 921 | +--paragraphFont-style: normal; | |
| 922 | +--paragraphFont-variant: normal; | |
| 923 | +--paragraphFont-weight: normal; | |
| 924 | +--paragraphFont-size: 16px; | |
| 925 | +--paragraphFont-line-height: 1.4em; | |
| 926 | +--paragraphFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 927 | +--paragraphFont-text-decoration: none; | |
| 928 | +--thankYouMessageFont-style: normal; | |
| 929 | +--thankYouMessageFont-variant: normal; | |
| 930 | +--thankYouMessageFont-weight: normal; | |
| 931 | +--thankYouMessageFont-size: 16px; | |
| 932 | +--thankYouMessageFont-line-height: 1.4em; | |
| 933 | +--thankYouMessageFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 934 | +--thankYouMessageFont-text-decoration: none; | |
| 935 | +--inputBorderLeftWidth: 1; | |
| 936 | +--inputBorderRightWidth: 1; | |
| 937 | +--inputBorderTopWidth: 1; | |
| 938 | +--inputBorderBottomWidth: 1; | |
| 939 | + --wix-color-1: 250,250,250; | |
| 940 | +--wix-color-2: 153,153,153; | |
| 941 | +--wix-color-3: 102,102,102; | |
| 942 | +--wix-color-4: 51,51,51; | |
| 943 | +--wix-color-5: 0,0,0; | |
| 944 | +--wix-color-6: 183,195,220; | |
| 945 | +--wix-color-7: 139,154,186; | |
| 946 | +--wix-color-8: 75,99,151; | |
| 947 | +--wix-color-9: 50,66,101; | |
| 948 | +--wix-color-10: 25,33,50; | |
| 949 | +--wix-color-11: 165,182,220; | |
| 950 | +--wix-color-12: 124,143,186; | |
| 951 | +--wix-color-13: 75,99,151; | |
| 952 | +--wix-color-14: 0,36,116; | |
| 953 | +--wix-color-15: 0,18,58; | |
| 954 | +--wix-color-16: 186,204,218; | |
| 955 | +--wix-color-17: 141,164,180; | |
| 956 | +--wix-color-18: 80,117,143; | |
| 957 | +--wix-color-19: 53,78,95; | |
| 958 | +--wix-color-20: 27,39,48; | |
| 959 | +--wix-color-21: 255,233,223; | |
| 960 | +--wix-color-22: 255,191,161; | |
| 961 | +--wix-color-23: 250,133,79; | |
| 962 | +--wix-color-24: 234,96,32; | |
| 963 | +--wix-color-25: 201,64,1; | |
| 964 | +--wix-color-26: 250,250,250; | |
| 965 | +--wix-color-27: 0,0,0; | |
| 966 | +--wix-color-28: 153,153,153; | |
| 967 | +--wix-color-29: 102,102,102; | |
| 968 | +--wix-color-30: 51,51,51; | |
| 969 | +--wix-color-31: 75,99,151; | |
| 970 | +--wix-color-32: 75,99,151; | |
| 971 | +--wix-color-33: 75,99,151; | |
| 972 | +--wix-color-34: 75,99,151; | |
| 973 | +--wix-color-35: 0,0,0; | |
| 974 | +--wix-color-36: 51,51,51; | |
| 975 | +--wix-color-37: 0,0,0; | |
| 976 | +--wix-color-38: 75,99,151; | |
| 977 | +--wix-color-39: 75,99,151; | |
| 978 | +--wix-color-40: 250,250,250; | |
| 979 | +--wix-color-41: 75,99,151; | |
| 980 | +--wix-color-42: 75,99,151; | |
| 981 | +--wix-color-43: 250,250,250; | |
| 982 | +--wix-color-44: 102,102,102; | |
| 983 | +--wix-color-45: 102,102,102; | |
| 984 | +--wix-color-46: 250,250,250; | |
| 985 | +--wix-color-47: 250,250,250; | |
| 986 | +--wix-color-48: 75,99,151; | |
| 987 | +--wix-color-49: 75,99,151; | |
| 988 | +--wix-color-50: 250,250,250; | |
| 989 | +--wix-color-51: 75,99,151; | |
| 990 | +--wix-color-52: 75,99,151; | |
| 991 | +--wix-color-53: 250,250,250; | |
| 992 | +--wix-color-54: 102,102,102; | |
| 993 | +--wix-color-55: 102,102,102; | |
| 994 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 995 | +--wix-font-Title-style: normal; | |
| 996 | +--wix-font-Title-variant: normal; | |
| 997 | +--wix-font-Title-weight: bold; | |
| 998 | +--wix-font-Title-size: 65px; | |
| 999 | +--wix-font-Title-line-height: 1.2em; | |
| 1000 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1001 | +--wix-font-Title-text-decoration: none; | |
| 1002 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1003 | +--wix-font-Menu-style: normal; | |
| 1004 | +--wix-font-Menu-variant: normal; | |
| 1005 | +--wix-font-Menu-weight: normal; | |
| 1006 | +--wix-font-Menu-size: 16px; | |
| 1007 | +--wix-font-Menu-line-height: 1.4em; | |
| 1008 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1009 | +--wix-font-Menu-text-decoration: none; | |
| 1010 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1011 | +--wix-font-Page-title-style: normal; | |
| 1012 | +--wix-font-Page-title-variant: normal; | |
| 1013 | +--wix-font-Page-title-weight: bold; | |
| 1014 | +--wix-font-Page-title-size: 38px; | |
| 1015 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1016 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1017 | +--wix-font-Page-title-text-decoration: none; | |
| 1018 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1019 | +--wix-font-Heading-XL-style: normal; | |
| 1020 | +--wix-font-Heading-XL-variant: normal; | |
| 1021 | +--wix-font-Heading-XL-weight: normal; | |
| 1022 | +--wix-font-Heading-XL-size: 34px; | |
| 1023 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1024 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1025 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1026 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1027 | +--wix-font-Heading-L-style: normal; | |
| 1028 | +--wix-font-Heading-L-variant: normal; | |
| 1029 | +--wix-font-Heading-L-weight: normal; | |
| 1030 | +--wix-font-Heading-L-size: 30px; | |
| 1031 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1032 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1033 | +--wix-font-Heading-L-text-decoration: none; | |
| 1034 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1035 | +--wix-font-Heading-M-style: normal; | |
| 1036 | +--wix-font-Heading-M-variant: normal; | |
| 1037 | +--wix-font-Heading-M-weight: normal; | |
| 1038 | +--wix-font-Heading-M-size: 25px; | |
| 1039 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1040 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1041 | +--wix-font-Heading-M-text-decoration: none; | |
| 1042 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1043 | +--wix-font-Heading-S-style: normal; | |
| 1044 | +--wix-font-Heading-S-variant: normal; | |
| 1045 | +--wix-font-Heading-S-weight: normal; | |
| 1046 | +--wix-font-Heading-S-size: 19px; | |
| 1047 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1048 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1049 | +--wix-font-Heading-S-text-decoration: none; | |
| 1050 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1051 | +--wix-font-Body-L-style: normal; | |
| 1052 | +--wix-font-Body-L-variant: normal; | |
| 1053 | +--wix-font-Body-L-weight: normal; | |
| 1054 | +--wix-font-Body-L-size: 16px; | |
| 1055 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1056 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1057 | +--wix-font-Body-L-text-decoration: none; | |
| 1058 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1059 | +--wix-font-Body-M-style: normal; | |
| 1060 | +--wix-font-Body-M-variant: normal; | |
| 1061 | +--wix-font-Body-M-weight: normal; | |
| 1062 | +--wix-font-Body-M-size: 16px; | |
| 1063 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1064 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1065 | +--wix-font-Body-M-text-decoration: none; | |
| 1066 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1067 | +--wix-font-Body-S-style: normal; | |
| 1068 | +--wix-font-Body-S-variant: normal; | |
| 1069 | +--wix-font-Body-S-weight: normal; | |
| 1070 | +--wix-font-Body-S-size: 12px; | |
| 1071 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1072 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1073 | +--wix-font-Body-S-text-decoration: none; | |
| 1074 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1075 | +--wix-font-Body-XS-style: normal; | |
| 1076 | +--wix-font-Body-XS-variant: normal; | |
| 1077 | +--wix-font-Body-XS-weight: normal; | |
| 1078 | +--wix-font-Body-XS-size: 12px; | |
| 1079 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1080 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1081 | +--wix-font-Body-XS-text-decoration: none; | |
| 1082 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1083 | +--wix-font-LIGHT-style: normal; | |
| 1084 | +--wix-font-LIGHT-variant: normal; | |
| 1085 | +--wix-font-LIGHT-weight: normal; | |
| 1086 | +--wix-font-LIGHT-size: 12px; | |
| 1087 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1088 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1089 | +--wix-font-LIGHT-text-decoration: none; | |
| 1090 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1091 | +--wix-font-MEDIUM-style: normal; | |
| 1092 | +--wix-font-MEDIUM-variant: normal; | |
| 1093 | +--wix-font-MEDIUM-weight: normal; | |
| 1094 | +--wix-font-MEDIUM-size: 12px; | |
| 1095 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1096 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1097 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1098 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1099 | +--wix-font-STRONG-style: normal; | |
| 1100 | +--wix-font-STRONG-variant: normal; | |
| 1101 | +--wix-font-STRONG-weight: normal; | |
| 1102 | +--wix-font-STRONG-size: 12px; | |
| 1103 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1104 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1105 | +--wix-font-STRONG-text-decoration: none; | |
| 1106 | + } | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | +#comp-m8omcigd2_r_comp-m8j7owsd{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m8j7o6oq{--opacity:1;}#comp-m8omcigd2_r_comp-m2y10ib8{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:0px;--sub-padding-start:10px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcigd2_r_comp-mbweuill{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}#comp-m8omcigd2_r_comp-kd5pdf7t{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-kd5pdf7t :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:12px;text-align:center;letter-spacing:0em;line-height:normal;}#comp-m8omcih716_r_comp-kd5px9hr{--screen-width:100vw;}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;--direction:rtl;--item-height:56px;--text-align:center;--template-columns:calc(40px + 1em) 1fr calc(40px + 1em);--template-areas:". label arrow";--padding-start:0px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcih716_r_comp-kkmqi5tc{--undefined:[object Object];--fill-opacity:1;--stroke-width:0;--stroke:#ED1566;--stroke-opacity:1;--fill:#000000;}#comp-m8omcihb_r_comp-kbgajy18{--bg-overlay-color:transparent;--bg-gradient:none;--transition-delay:0s,0s;--transition-duration:0.3s,0.3s;--transition-timing-function:ease,linear;--scrolled-transform:translateY(-38px);--transition-property:background-color,transform;--inherit-transition:var(--transition, none);}.comp-m8omcihb_r_comp-m6saac0q { | |
| 1147 | + --wix-direction: ltr; | |
| 1148 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1149 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1150 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1151 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1152 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1153 | +--cartWidget_cartIcon: 75,99,151; | |
| 1154 | +--cartWidget_cartIcon-rgb: 75,99,151; | |
| 1155 | +--cartWidget_cartIcon-opacity: 1; | |
| 1156 | +--cartWidget_cartIconText: 75,99,151; | |
| 1157 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1158 | +--cartWidget_cartIconText-opacity: 1; | |
| 1159 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1160 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1161 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1162 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1163 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1164 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1165 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1166 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1167 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1168 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1169 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1170 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1171 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1172 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1173 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1174 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1175 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1176 | + --wix-color-1: 250,250,250; | |
| 1177 | +--wix-color-2: 153,153,153; | |
| 1178 | +--wix-color-3: 102,102,102; | |
| 1179 | +--wix-color-4: 51,51,51; | |
| 1180 | +--wix-color-5: 0,0,0; | |
| 1181 | +--wix-color-6: 183,195,220; | |
| 1182 | +--wix-color-7: 139,154,186; | |
| 1183 | +--wix-color-8: 75,99,151; | |
| 1184 | +--wix-color-9: 50,66,101; | |
| 1185 | +--wix-color-10: 25,33,50; | |
| 1186 | +--wix-color-11: 165,182,220; | |
| 1187 | +--wix-color-12: 124,143,186; | |
| 1188 | +--wix-color-13: 75,99,151; | |
| 1189 | +--wix-color-14: 0,36,116; | |
| 1190 | +--wix-color-15: 0,18,58; | |
| 1191 | +--wix-color-16: 186,204,218; | |
| 1192 | +--wix-color-17: 141,164,180; | |
| 1193 | +--wix-color-18: 80,117,143; | |
| 1194 | +--wix-color-19: 53,78,95; | |
| 1195 | +--wix-color-20: 27,39,48; | |
| 1196 | +--wix-color-21: 255,233,223; | |
| 1197 | +--wix-color-22: 255,191,161; | |
| 1198 | +--wix-color-23: 250,133,79; | |
| 1199 | +--wix-color-24: 234,96,32; | |
| 1200 | +--wix-color-25: 201,64,1; | |
| 1201 | +--wix-color-26: 250,250,250; | |
| 1202 | +--wix-color-27: 0,0,0; | |
| 1203 | +--wix-color-28: 153,153,153; | |
| 1204 | +--wix-color-29: 102,102,102; | |
| 1205 | +--wix-color-30: 51,51,51; | |
| 1206 | +--wix-color-31: 75,99,151; | |
| 1207 | +--wix-color-32: 75,99,151; | |
| 1208 | +--wix-color-33: 75,99,151; | |
| 1209 | +--wix-color-34: 75,99,151; | |
| 1210 | +--wix-color-35: 0,0,0; | |
| 1211 | +--wix-color-36: 51,51,51; | |
| 1212 | +--wix-color-37: 0,0,0; | |
| 1213 | +--wix-color-38: 75,99,151; | |
| 1214 | +--wix-color-39: 75,99,151; | |
| 1215 | +--wix-color-40: 250,250,250; | |
| 1216 | +--wix-color-41: 75,99,151; | |
| 1217 | +--wix-color-42: 75,99,151; | |
| 1218 | +--wix-color-43: 250,250,250; | |
| 1219 | +--wix-color-44: 102,102,102; | |
| 1220 | +--wix-color-45: 102,102,102; | |
| 1221 | +--wix-color-46: 250,250,250; | |
| 1222 | +--wix-color-47: 250,250,250; | |
| 1223 | +--wix-color-48: 75,99,151; | |
| 1224 | +--wix-color-49: 75,99,151; | |
| 1225 | +--wix-color-50: 250,250,250; | |
| 1226 | +--wix-color-51: 75,99,151; | |
| 1227 | +--wix-color-52: 75,99,151; | |
| 1228 | +--wix-color-53: 250,250,250; | |
| 1229 | +--wix-color-54: 102,102,102; | |
| 1230 | +--wix-color-55: 102,102,102; | |
| 1231 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1232 | +--wix-font-Title-style: normal; | |
| 1233 | +--wix-font-Title-variant: normal; | |
| 1234 | +--wix-font-Title-weight: bold; | |
| 1235 | +--wix-font-Title-size: 65px; | |
| 1236 | +--wix-font-Title-line-height: 1.2em; | |
| 1237 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1238 | +--wix-font-Title-text-decoration: none; | |
| 1239 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1240 | +--wix-font-Menu-style: normal; | |
| 1241 | +--wix-font-Menu-variant: normal; | |
| 1242 | +--wix-font-Menu-weight: normal; | |
| 1243 | +--wix-font-Menu-size: 16px; | |
| 1244 | +--wix-font-Menu-line-height: 1.4em; | |
| 1245 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1246 | +--wix-font-Menu-text-decoration: none; | |
| 1247 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1248 | +--wix-font-Page-title-style: normal; | |
| 1249 | +--wix-font-Page-title-variant: normal; | |
| 1250 | +--wix-font-Page-title-weight: bold; | |
| 1251 | +--wix-font-Page-title-size: 38px; | |
| 1252 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1253 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1254 | +--wix-font-Page-title-text-decoration: none; | |
| 1255 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1256 | +--wix-font-Heading-XL-style: normal; | |
| 1257 | +--wix-font-Heading-XL-variant: normal; | |
| 1258 | +--wix-font-Heading-XL-weight: normal; | |
| 1259 | +--wix-font-Heading-XL-size: 34px; | |
| 1260 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1261 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1262 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1263 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1264 | +--wix-font-Heading-L-style: normal; | |
| 1265 | +--wix-font-Heading-L-variant: normal; | |
| 1266 | +--wix-font-Heading-L-weight: normal; | |
| 1267 | +--wix-font-Heading-L-size: 30px; | |
| 1268 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1269 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1270 | +--wix-font-Heading-L-text-decoration: none; | |
| 1271 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1272 | +--wix-font-Heading-M-style: normal; | |
| 1273 | +--wix-font-Heading-M-variant: normal; | |
| 1274 | +--wix-font-Heading-M-weight: normal; | |
| 1275 | +--wix-font-Heading-M-size: 25px; | |
| 1276 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1277 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1278 | +--wix-font-Heading-M-text-decoration: none; | |
| 1279 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1280 | +--wix-font-Heading-S-style: normal; | |
| 1281 | +--wix-font-Heading-S-variant: normal; | |
| 1282 | +--wix-font-Heading-S-weight: normal; | |
| 1283 | +--wix-font-Heading-S-size: 19px; | |
| 1284 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1285 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1286 | +--wix-font-Heading-S-text-decoration: none; | |
| 1287 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1288 | +--wix-font-Body-L-style: normal; | |
| 1289 | +--wix-font-Body-L-variant: normal; | |
| 1290 | +--wix-font-Body-L-weight: normal; | |
| 1291 | +--wix-font-Body-L-size: 16px; | |
| 1292 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1293 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1294 | +--wix-font-Body-L-text-decoration: none; | |
| 1295 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1296 | +--wix-font-Body-M-style: normal; | |
| 1297 | +--wix-font-Body-M-variant: normal; | |
| 1298 | +--wix-font-Body-M-weight: normal; | |
| 1299 | +--wix-font-Body-M-size: 16px; | |
| 1300 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1301 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1302 | +--wix-font-Body-M-text-decoration: none; | |
| 1303 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1304 | +--wix-font-Body-S-style: normal; | |
| 1305 | +--wix-font-Body-S-variant: normal; | |
| 1306 | +--wix-font-Body-S-weight: normal; | |
| 1307 | +--wix-font-Body-S-size: 12px; | |
| 1308 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1309 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1310 | +--wix-font-Body-S-text-decoration: none; | |
| 1311 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1312 | +--wix-font-Body-XS-style: normal; | |
| 1313 | +--wix-font-Body-XS-variant: normal; | |
| 1314 | +--wix-font-Body-XS-weight: normal; | |
| 1315 | +--wix-font-Body-XS-size: 12px; | |
| 1316 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1317 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1318 | +--wix-font-Body-XS-text-decoration: none; | |
| 1319 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1320 | +--wix-font-LIGHT-style: normal; | |
| 1321 | +--wix-font-LIGHT-variant: normal; | |
| 1322 | +--wix-font-LIGHT-weight: normal; | |
| 1323 | +--wix-font-LIGHT-size: 12px; | |
| 1324 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1325 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1326 | +--wix-font-LIGHT-text-decoration: none; | |
| 1327 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1328 | +--wix-font-MEDIUM-style: normal; | |
| 1329 | +--wix-font-MEDIUM-variant: normal; | |
| 1330 | +--wix-font-MEDIUM-weight: normal; | |
| 1331 | +--wix-font-MEDIUM-size: 12px; | |
| 1332 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1333 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1334 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1335 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1336 | +--wix-font-STRONG-style: normal; | |
| 1337 | +--wix-font-STRONG-variant: normal; | |
| 1338 | +--wix-font-STRONG-weight: normal; | |
| 1339 | +--wix-font-STRONG-size: 12px; | |
| 1340 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1341 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1342 | +--wix-font-STRONG-text-decoration: none; | |
| 1343 | + }#comp-m8omcihb_r_comp-mdeyh2rw{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-m2xyvk9x{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-m2xz2cwh{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxu2mi38{height:inherit;width:auto;}#comp-m8omcihb_r_comp-m5rceko6{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-mdezy72f{--boxShadow:none;--backgroundColor:rgba(255,255,255,1);--borderColor:50,65,88;--borderWidth:0px;--borderRadius:0px;--alpha-borderColor:0;}.comp-m8omcihb_r_comp-mdezy72s{--shc-mutated-brightness:77,77,77;}.comp-m8omcihb_r_comp-mdf0r6km{--text-direction:var(--wix-opt-in-direction);}.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.032 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}.comp-m8omcihb_r_comp-mdf0tx18{--btn-direction:var(--wix-opt-in-direction, ltr);--direction:inherit;--overflow:visible;--label-text-overflow:initial;--label-white-space:pre-line;--btn-min-width:min-content;--container-justify-content:center;--container-align-items:center;--icon-rotation:0deg;--disabled-icon-rotation:0deg;--hover-icon-rotation:0deg;}#comp-m8omcihb_r_comp-m5rceatr{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxubhuix{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:10px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--padding-start:0px;}}#comp-m8omcihb_r_comp-mdezahz3{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}.comp-m8omcihb_r_comp-m73v5p0x { | |
| 1344 | + --wix-direction: ltr; | |
| 1345 | +--cartWidgetIcon: 1; | |
| 1346 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1347 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1348 | +--cartWidget_cartIcon: 183,195,220; | |
| 1349 | +--cartWidget_cartIcon-rgb: 183,195,220; | |
| 1350 | +--cartWidget_cartIcon-opacity: 1; | |
| 1351 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1352 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1353 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1354 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1355 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1356 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1357 | +--cartWidget_cartIconText: 75,99,151; | |
| 1358 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1359 | +--cartWidget_cartIconText-opacity: 1; | |
| 1360 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1361 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1362 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1363 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1364 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1365 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1366 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1367 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1368 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1369 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1370 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1371 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1372 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1373 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1374 | + --wix-color-1: 250,250,250; | |
| 1375 | +--wix-color-2: 153,153,153; | |
| 1376 | +--wix-color-3: 102,102,102; | |
| 1377 | +--wix-color-4: 51,51,51; | |
| 1378 | +--wix-color-5: 0,0,0; | |
| 1379 | +--wix-color-6: 183,195,220; | |
| 1380 | +--wix-color-7: 139,154,186; | |
| 1381 | +--wix-color-8: 75,99,151; | |
| 1382 | +--wix-color-9: 50,66,101; | |
| 1383 | +--wix-color-10: 25,33,50; | |
| 1384 | +--wix-color-11: 165,182,220; | |
| 1385 | +--wix-color-12: 124,143,186; | |
| 1386 | +--wix-color-13: 75,99,151; | |
| 1387 | +--wix-color-14: 0,36,116; | |
| 1388 | +--wix-color-15: 0,18,58; | |
| 1389 | +--wix-color-16: 186,204,218; | |
| 1390 | +--wix-color-17: 141,164,180; | |
| 1391 | +--wix-color-18: 80,117,143; | |
| 1392 | +--wix-color-19: 53,78,95; | |
| 1393 | +--wix-color-20: 27,39,48; | |
| 1394 | +--wix-color-21: 255,233,223; | |
| 1395 | +--wix-color-22: 255,191,161; | |
| 1396 | +--wix-color-23: 250,133,79; | |
| 1397 | +--wix-color-24: 234,96,32; | |
| 1398 | +--wix-color-25: 201,64,1; | |
| 1399 | +--wix-color-26: 250,250,250; | |
| 1400 | +--wix-color-27: 0,0,0; | |
| 1401 | +--wix-color-28: 153,153,153; | |
| 1402 | +--wix-color-29: 102,102,102; | |
| 1403 | +--wix-color-30: 51,51,51; | |
| 1404 | +--wix-color-31: 75,99,151; | |
| 1405 | +--wix-color-32: 75,99,151; | |
| 1406 | +--wix-color-33: 75,99,151; | |
| 1407 | +--wix-color-34: 75,99,151; | |
| 1408 | +--wix-color-35: 0,0,0; | |
| 1409 | +--wix-color-36: 51,51,51; | |
| 1410 | +--wix-color-37: 0,0,0; | |
| 1411 | +--wix-color-38: 75,99,151; | |
| 1412 | +--wix-color-39: 75,99,151; | |
| 1413 | +--wix-color-40: 250,250,250; | |
| 1414 | +--wix-color-41: 75,99,151; | |
| 1415 | +--wix-color-42: 75,99,151; | |
| 1416 | +--wix-color-43: 250,250,250; | |
| 1417 | +--wix-color-44: 102,102,102; | |
| 1418 | +--wix-color-45: 102,102,102; | |
| 1419 | +--wix-color-46: 250,250,250; | |
| 1420 | +--wix-color-47: 250,250,250; | |
| 1421 | +--wix-color-48: 75,99,151; | |
| 1422 | +--wix-color-49: 75,99,151; | |
| 1423 | +--wix-color-50: 250,250,250; | |
| 1424 | +--wix-color-51: 75,99,151; | |
| 1425 | +--wix-color-52: 75,99,151; | |
| 1426 | +--wix-color-53: 250,250,250; | |
| 1427 | +--wix-color-54: 102,102,102; | |
| 1428 | +--wix-color-55: 102,102,102; | |
| 1429 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1430 | +--wix-font-Title-style: normal; | |
| 1431 | +--wix-font-Title-variant: normal; | |
| 1432 | +--wix-font-Title-weight: bold; | |
| 1433 | +--wix-font-Title-size: 65px; | |
| 1434 | +--wix-font-Title-line-height: 1.2em; | |
| 1435 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1436 | +--wix-font-Title-text-decoration: none; | |
| 1437 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1438 | +--wix-font-Menu-style: normal; | |
| 1439 | +--wix-font-Menu-variant: normal; | |
| 1440 | +--wix-font-Menu-weight: normal; | |
| 1441 | +--wix-font-Menu-size: 16px; | |
| 1442 | +--wix-font-Menu-line-height: 1.4em; | |
| 1443 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1444 | +--wix-font-Menu-text-decoration: none; | |
| 1445 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1446 | +--wix-font-Page-title-style: normal; | |
| 1447 | +--wix-font-Page-title-variant: normal; | |
| 1448 | +--wix-font-Page-title-weight: bold; | |
| 1449 | +--wix-font-Page-title-size: 38px; | |
| 1450 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1451 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1452 | +--wix-font-Page-title-text-decoration: none; | |
| 1453 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1454 | +--wix-font-Heading-XL-style: normal; | |
| 1455 | +--wix-font-Heading-XL-variant: normal; | |
| 1456 | +--wix-font-Heading-XL-weight: normal; | |
| 1457 | +--wix-font-Heading-XL-size: 34px; | |
| 1458 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1459 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1460 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1461 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1462 | +--wix-font-Heading-L-style: normal; | |
| 1463 | +--wix-font-Heading-L-variant: normal; | |
| 1464 | +--wix-font-Heading-L-weight: normal; | |
| 1465 | +--wix-font-Heading-L-size: 30px; | |
| 1466 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1467 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1468 | +--wix-font-Heading-L-text-decoration: none; | |
| 1469 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1470 | +--wix-font-Heading-M-style: normal; | |
| 1471 | +--wix-font-Heading-M-variant: normal; | |
| 1472 | +--wix-font-Heading-M-weight: normal; | |
| 1473 | +--wix-font-Heading-M-size: 25px; | |
| 1474 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1475 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1476 | +--wix-font-Heading-M-text-decoration: none; | |
| 1477 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1478 | +--wix-font-Heading-S-style: normal; | |
| 1479 | +--wix-font-Heading-S-variant: normal; | |
| 1480 | +--wix-font-Heading-S-weight: normal; | |
| 1481 | +--wix-font-Heading-S-size: 19px; | |
| 1482 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1483 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1484 | +--wix-font-Heading-S-text-decoration: none; | |
| 1485 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1486 | +--wix-font-Body-L-style: normal; | |
| 1487 | +--wix-font-Body-L-variant: normal; | |
| 1488 | +--wix-font-Body-L-weight: normal; | |
| 1489 | +--wix-font-Body-L-size: 16px; | |
| 1490 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1491 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1492 | +--wix-font-Body-L-text-decoration: none; | |
| 1493 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1494 | +--wix-font-Body-M-style: normal; | |
| 1495 | +--wix-font-Body-M-variant: normal; | |
| 1496 | +--wix-font-Body-M-weight: normal; | |
| 1497 | +--wix-font-Body-M-size: 16px; | |
| 1498 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1499 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1500 | +--wix-font-Body-M-text-decoration: none; | |
| 1501 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1502 | +--wix-font-Body-S-style: normal; | |
| 1503 | +--wix-font-Body-S-variant: normal; | |
| 1504 | +--wix-font-Body-S-weight: normal; | |
| 1505 | +--wix-font-Body-S-size: 12px; | |
| 1506 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1507 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1508 | +--wix-font-Body-S-text-decoration: none; | |
| 1509 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1510 | +--wix-font-Body-XS-style: normal; | |
| 1511 | +--wix-font-Body-XS-variant: normal; | |
| 1512 | +--wix-font-Body-XS-weight: normal; | |
| 1513 | +--wix-font-Body-XS-size: 12px; | |
| 1514 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1515 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1516 | +--wix-font-Body-XS-text-decoration: none; | |
| 1517 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1518 | +--wix-font-LIGHT-style: normal; | |
| 1519 | +--wix-font-LIGHT-variant: normal; | |
| 1520 | +--wix-font-LIGHT-weight: normal; | |
| 1521 | +--wix-font-LIGHT-size: 12px; | |
| 1522 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1523 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1524 | +--wix-font-LIGHT-text-decoration: none; | |
| 1525 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1526 | +--wix-font-MEDIUM-style: normal; | |
| 1527 | +--wix-font-MEDIUM-variant: normal; | |
| 1528 | +--wix-font-MEDIUM-weight: normal; | |
| 1529 | +--wix-font-MEDIUM-size: 12px; | |
| 1530 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1531 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1532 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1533 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1534 | +--wix-font-STRONG-style: normal; | |
| 1535 | +--wix-font-STRONG-variant: normal; | |
| 1536 | +--wix-font-STRONG-weight: normal; | |
| 1537 | +--wix-font-STRONG-size: 12px; | |
| 1538 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1539 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1540 | +--wix-font-STRONG-text-decoration: none; | |
| 1541 | + }#comp-m8omcihb_r_comp-m8j7mq6v{--opacity:1;}#comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdeyhsow{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-block:0;--item-margin-inline:0px 10px;--item-display:inline-block;--direction:var(--wix-opt-in-direction, ltr);--flex-direction:row;height:20px;width:calc(2 * (20px + 10px) - 10px);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));--item-margin-inline:0px max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)));height:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));width:calc(2 * (max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width))) + max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)))) - max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width))));}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-inline:0px 10px;height:20px;width:calc(2 * (20px + 10px) - 10px);}}#comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdf18wki{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FAFAFA !important;font-size:max(14px, min(16px, max(0.5px, 0.0112427 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;text-decoration:none !important;}#comp-m8omcihb_r_comp-mdf18wki [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FAFAFA) !important;}}</style> | |
| 1542 | + | |
| 1543 | +</head> | |
| 1544 | +<body class='responsive' > | |
| 1545 | +<script type="text/javascript"> | |
| 1546 | + var bodyCacheable = true; | |
| 1547 | + | |
| 1548 | + var exclusionReason = {"shouldRender":true,"forced":false}; | |
| 1549 | + var ssrInfo = {"cacheExclusionReason":"","renderBodyTime":2722,"renderTimeStamp":1786257331224} | |
| 1550 | +</script> | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + <!--pageHtmlEmbeds.bodyStart start--> | |
| 1559 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart start"></script> | |
| 1560 | + | |
| 1561 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart end"></script> | |
| 1562 | + <!--pageHtmlEmbeds.bodyStart end--> | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | +<script id="wix-first-paint"> | |
| 1568 | + if (window.ResizeObserver && | |
| 1569 | + (!window.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || PerformanceObserver.supportedEntryTypes.indexOf('paint') === -1)) { | |
| 1570 | + new ResizeObserver(function (entries, observer) { | |
| 1571 | + entries.some(function (entry) { | |
| 1572 | + var contentRect = entry.contentRect; | |
| 1573 | + if (contentRect.width > 0 && contentRect.height > 0) { | |
| 1574 | + requestAnimationFrame(function (now) { | |
| 1575 | + window.wixFirstPaint = now; | |
| 1576 | + dispatchEvent(new CustomEvent('wixFirstPaint')); | |
| 1577 | + }); | |
| 1578 | + observer.disconnect(); | |
| 1579 | + return true; | |
| 1580 | + } | |
| 1581 | + }); | |
| 1582 | + }).observe(document.body); | |
| 1583 | + } | |
| 1584 | +</script> | |
| 1585 | + | |
| 1586 | + | |
| 1587 | +<script id="scroll-bar-width-calculation"> | |
| 1588 | + const div = document.createElement('div') | |
| 1589 | + div.style.overflowY = 'scroll' | |
| 1590 | + div.style.width = '50px' | |
| 1591 | + div.style.height = '50px' | |
| 1592 | + div.style.visibility = 'hidden' | |
| 1593 | + document.body.appendChild(div) | |
| 1594 | + const scrollbarWidth= div.offsetWidth - div.clientWidth | |
| 1595 | + document.body.removeChild(div) | |
| 1596 | + if(scrollbarWidth > 0){ | |
| 1597 | + document.body.style.setProperty('--scrollbar-width', `${scrollbarWidth}px`) | |
| 1598 | + } | |
| 1599 | +</script> | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + <style id=wix-custom-css>/* Users Custom CSS code */ | |
| 1606 | + } | |
| 1607 | +</style> | |
| 1608 | + | |
| 1609 | + | |
| 1610 | + | |
| 1611 | + <!-- domStoreHtml --> | |
| 1612 | + <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> | |
| 1613 | + | |
| 1614 | + | |
| 1615 | +<div id="SITE_CONTAINER"><style id="STYLE_OVERRIDES_ID">#comp-m8omdbeu13{visibility:hidden !important;} #comp-m8omdbew{visibility:hidden !important;} #comp-m8omdbf211{--corvid-color:green;} #comp-m8omdbf2{--container-corvid-background-color:#D1FFBD;}</style><div id="main_MF" class="main_MF"><div id="SCROLL_TO_TOP" class="qe3oTb ignore-focus SCROLL_TO_TOP" role="region" tabindex="-1" aria-label="top of page"><span class="TvbeET">top of page</span></div><div id="site-root" class="site-root"><div id="masterPage" class="masterPage css-editing-scope"><div id="SITE_PAGES" class="Y3K28_ SITE_PAGES"><div id="ebqqm" class="ETqrjz theme-vars ebqqm"><div class="g0IvTF wixui-page" data-testid="page-bg"></div><div><div class="ebqqm-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="ebqqm-container"><div id="comp-m8omcihb-pinned-layer" class="comp-m8omcihb-pinned-layer QED8q1"><header id="comp-m8omcihb" class="comp-m8omcihb S829f_ comp-m8omcihb-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcihb_r_comp-kbgajy18" tabindex="-1" data-block-level-container="Section" class="Lnr3dj comp-m8omcihb_r_comp-kbgajy18 Lnr3dj w2JesW wixui-header fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcihb_r_comp-kbgajy18" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcihb_r_comp-kbgajy18" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcihb_r_comp-kbgajy18" data-motion-part="BG_MEDIA comp-m8omcihb_r_comp-kbgajy18" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-kbgajy18-container"><div id="comp-m8omcihb_r_comp-m6saac0q" class="QrIus comp-m8omcihb_r_comp-m6saac0q"><div class="comp-m8omcihb_r_comp-m6saac0q"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m6saadbd" class="comp-m8omcihb_r_comp-m6saadbd" style="visibility:hidden;overflow:hidden;width:0;min-width:0;height:0;min-height:0;pointer-events:none;margin:0;position:absolute"></div><div id="comp-m8omcihb_r_comp-mdeyh2rw" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyh2rw-container comp-m8omcihb_r_comp-mdeyh2rw wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-m2xyvk9x" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m2xyvk9x wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-m2xyvk9x-container"><div class="comp-m8omcihb_r_comp-m2xz2cwh lIkFMb" id="comp-m8omcihb_r_comp-m2xz2cwh" aria-disabled="false"><a data-testid="linkElement" href="http://www.sflogements.com" target="_self" rel="noreferrer noopener" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><div id="comp-m8omcihb_r_comp-lxu2mi30" class="comp-m8omcihb_r_comp-lxu2mi30-container wiZmhC"><nav aria-label="Site" class="HamburgerOpenButton3537389287__nav"><div id="comp-m8omcihb_r_comp-lxu2mi38" class="HamburgerOpenButton3537389287__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38" data-semantic-classname="hamburger-open-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38-styleId__root wixui-hamburger-open-button" data-testid="buttonContent" aria-expanded="false" aria-haspopup="dialog" aria-label="Menu"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-open-button__label" data-testid="stylablebutton-label">Menu</span><span class="StylableButton2545352419__icon wixui-hamburger-open-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1616 | +<svg data-bbox="60 70 80 60" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1617 | + <g> | |
| 1618 | + <path d="M64 78h72a4 4 0 0 0 0-8H64a4 4 0 0 0 0 8z"></path> | |
| 1619 | + <path d="M136 96H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1620 | + <path d="M136 122H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1621 | + </g> | |
| 1622 | +</svg> | |
| 1623 | +</span></span></span></button></div></nav><div id="comp-m8omcihb_r_comp-lxu2mi3c" class="HamburgerOverlay547129737--showBackgroundOverlay HamburgerOverlay547129737__root OrbgmN" role="dialog" aria-modal="true" aria-label="Navigation sur le site" data-visible="false" data-hook="hamburger-overlay-root" tabindex="-1" data-part="hamburger-overlay" data-animation-name="none"><div data-hook="hamburger-overlay-dialog" aria-hidden="true" class="HamburgerOverlay547129737__overlay comp-m8omcihb_r_comp-lxu2mi3c-styleId__root wixui-hamburger-overlay"></div><div class="comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3c-container"><div id="comp-m8omcihb_r_comp-lxu2mi3d5" tabindex="-1" class="comp-m8omcihb_r_comp-lxu2mi3d5 ZBf0K1 fy6eJk" data-animation-name="none"><div aria-hidden="true" class="HamburgerMenuContainer502174924__root comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root wixui-hamburger-menu-container"></div><div class="comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3d5-container"><div id="comp-m8omcihb_r_comp-lxu2mi3i1" class="HamburgerCloseButton872037521__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1" data-semantic-classname="hamburger-close-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root wixui-hamburger-close-button" data-testid="buttonContent" aria-label="Close"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-close-button__label" data-testid="stylablebutton-label">Close</span><span class="StylableButton2545352419__icon wixui-hamburger-close-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1624 | +<svg data-bbox="33 33 133.333 133.333" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1625 | + <g> | |
| 1626 | + <path d="M166.333 38.892 160.442 33 99.667 93.775 38.892 33 33 38.892l60.775 60.775L33 160.442l5.892 5.891 60.775-60.775 60.775 60.775 5.891-5.891-60.775-60.775 60.775-60.775Z" fill-rule="evenodd"></path> | |
| 1627 | + </g> | |
| 1628 | +</svg> | |
| 1629 | +</span></span></span></button></div><div id="comp-m8omcihb_r_comp-m5rceko6" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m5rceko6-container comp-m8omcihb_r_comp-m5rceko6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-mdezy72f" class="ArRNfA comp-m8omcihb_r_comp-mdezy72f wixui-repeater"><div data-testid="responsive-container-content" role="list" class="comp-m8omcihb_r_comp-mdezy72f-container"><div id="comp-m8omcihb_r_comp-mdezy72s__item1" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item1 wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item1" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item1 wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">À Propos</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item1" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item1" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/entreprise" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="À Propos"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1630 | + <g> | |
| 1631 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1632 | + </g> | |
| 1633 | +</svg> | |
| 1634 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Obtenir un devis</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Obtenir un devis"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1635 | + <g> | |
| 1636 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1637 | + </g> | |
| 1638 | +</svg> | |
| 1639 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Blog</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/blog" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Blog"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1640 | + <g> | |
| 1641 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1642 | + </g> | |
| 1643 | +</svg> | |
| 1644 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Contact</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Contact"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1645 | + <g> | |
| 1646 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1647 | + </g> | |
| 1648 | +</svg> | |
| 1649 | +</span></span></span></a></div></div></div></div><div class="comp-m8omcihb_r_comp-m5rceatr lIkFMb" id="comp-m8omcihb_r_comp-m5rceatr" aria-disabled="false"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><nav id="comp-m8omcihb_r_comp-lxubhuix" aria-label="Site" class="d2V6sy comp-m8omcihb_r_comp-lxubhuix wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcihb_r_comp-lxubhuix-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcihb_r_comp-lxubhuix-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcihb_r_comp-mdezahz3"></div></div></div></div></div></div></div></div></div><div id="comp-m8omcihb_r_comp-m73v5p0x" class="QrIus comp-m8omcihb_r_comp-m73v5p0x"><div class="comp-m8omcihb_r_comp-m73v5p0x"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m8j7mq6v" class="comp-m8omcihb_r_comp-m8j7mq6v wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcihb_r_comp-m8j7mq6v" class="iL7Pq5 gx51wo"> | |
| 1650 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omcihb_r_comp-m8j7mq6v svg [data-color="1"] {fill: #FAFAFA;}</style></defs> | |
| 1651 | + <g> | |
| 1652 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 1653 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 1654 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 1655 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 1656 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 1657 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 1658 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 1659 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 1660 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 1661 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 1662 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 1663 | + </g> | |
| 1664 | +</svg> | |
| 1665 | +</div></a></div><div id="comp-m8omcihb_r_comp-m99166jr" class="comp-m8omcihb_r_comp-m99166jr-container comp-m8omcihb_r_comp-m99166jr" data-prehydration=""><div id="comp-m8omcihb_r_comp-m99166jr-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/forfaits" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion d'immeubles à revenus</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion de copropriété</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdez2caz" class="n8bAtI comp-m8omcihb_r_comp-mdez2caz"><div class="zACo20 wixui-vertical-line"></div></div></div></div><div id="comp-m8omcihb_r_comp-mdeyhsow" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyhsow wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-mdeyhsow-container"><div id="comp-m8omcihb_r_comp-mdeylyv3" class="comp-m8omcihb_r_comp-mdeylyv3 eAOB3n"><ul class="tDHQQD" aria-label="Barre de réseaux sociaux"><li id="dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.instagram.com/sf.habitations/" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Instagram"><wow-image id="img_0_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":201,"uri":"11062b_cef3b719166a4815b446d4dcfcb6120d~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Instagram"/></wow-image></a></li><li id="dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.facebook.com/profile.php?id=61555968238150" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Facebook"><wow-image id="img_1_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":200,"uri":"11062b_ef6a6ac194704911951645990055c2ce~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Facebook"/></wow-image></a></li></ul></div><div id="comp-m8omcihb_r_comp-mdeyqfi8" class="comp-m8omcihb_r_comp-mdeyqfi8-container comp-m8omcihb_r_comp-mdeyqfi8" data-prehydration=""><div id="comp-m8omcihb_r_comp-mdeyqfi8-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/entreprise" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">À Propos</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/blog" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Blog</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Obtenir un devis</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Contact</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdf18wki" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf18wki wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="tel: 450.499.7978" class="wixui-rich-text__text"> 450.499.7978</a></p></div></div></div></div><div id="comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID" style="display:none"></div></div></section></header></div><main id="PAGE_SECTIONSebqqm" class="PAGE_SECTIONSebqqm ooGRUo" data-main-content-parent="true"><section id="comp-m8omdbdn" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omdbdn wixui-section fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omdbdn" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omdbdn" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omdbdn" data-motion-part="BG_MEDIA comp-m8omdbdn" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdn-container max-width-container"><div id="comp-m8oqdae2" role="" class="HFEOE3 NaeT1r comp-m8oqdae2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqdae2-container"><div id="comp-m8omdbe910" role="" class="HFEOE3 NaeT1r comp-m8omdbe910-container comp-m8omdbe910 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea7" role="" class="HFEOE3 NaeT1r comp-m8omdbea7-container comp-m8omdbea7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea15" class="N8MGzv _v6ohL PO9MfV comp-m8omdbea15 wixui-rich-text" data-testid="richTextElement"><h3 class="font_3 wixui-rich-text__text"><span class="wixui-rich-text__text">Cette unité vous intéresse?</span></h3></div><div id="comp-m8omdbeb13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeb13 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">Veuillez remplir le formulaire ci-dessous pour réserver l'unité ou être notifié lorsque celle-ci devient disponible.</span></p></div></div><div id="comp-m8omdbec6" role="" class="HFEOE3 NaeT1r comp-m8omdbec6-container comp-m8omdbec6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbec15" class="Yz8ZCc comp-m8omdbec15 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbec15" class="QyrExM wixui-text-input__label">Prénom</label><div class="nuFEsg"><input name="prénom" id="input_comp-m8omdbec15" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="John" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeg9" class="Yz8ZCc comp-m8omdbeg9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeg9" class="QyrExM wixui-text-input__label">Nom de Famille</label><div class="nuFEsg"><input name="nom-de famille" id="input_comp-m8omdbeg9" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="Doe" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeh9" class="Yz8ZCc comp-m8omdbeh9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeh9" class="QyrExM wixui-text-input__label">Téléphone</label><div class="nuFEsg"><input name="phone" id="input_comp-m8omdbeh9" class="nbaJII has-custom-focus wixui-text-input__input" type="tel" placeholder="450.499.7978" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbei9" class="Yz8ZCc comp-m8omdbei9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbei9" class="QyrExM wixui-text-input__label">Courriel</label><div class="nuFEsg"><input name="email" id="input_comp-m8omdbei9" class="nbaJII has-custom-focus wixui-text-input__input" type="email" placeholder="johndoe@gmail.com" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdben" class="YbkIHV comp-m8omdben wixui-text-box bCYfl0"><label for="textarea_comp-m8omdben" class="P3lL3X wixui-text-box__label">Message</label><textarea id="textarea_comp-m8omdben" class="XXgBXC has-custom-focus wixui-text-box__input" rows="1" placeholder="Posez-nous vos questions" aria-required="false" aria-invalid="false"></textarea></div><div id="comp-m8omdber7" class="Y_w4j4 uvl2Tw comp-m8omdber7 wixui-dropdown VYqX7C DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8omdber7">Unité</label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8omdber7" data-testid="select-trigger" required="" aria-required="true" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir l'unité</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div><div id="comp-m8omdbeu13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeu13 wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Nous avons reçu votre demande. Nous vous contacterons sous-peu.</p></div></div><div id="comp-m8omdbew" class="N8MGzv _v6ohL PO9MfV comp-m8omdbew wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Une erreur s'est produite. Veuillez réessayer.</p></div></div><div id="comp-m8omdbex1" class="comp-m8omdbex1" data-semantic-classname="button"><button type="button" class="StylableButton2545352419__root style-m8omdbey8__root wixui-button" data-testid="buttonContent" aria-label="Envoyer"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-button__label" data-testid="stylablebutton-label">Envoyer</span><span class="StylableButton2545352419__icon wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1666 | +<svg data-bbox="28 20 144 160" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1667 | + <g> | |
| 1668 | + <path d="M172 172.105l-.065-83.094a7.89 7.89 0 0 0-2.635-5.88l-64.103-57.226a7.88 7.88 0 0 0-10.499.001L30.634 83.128A7.891 7.891 0 0 0 28 89.013v83.098A7.887 7.887 0 0 0 35.884 180h34a7.887 7.887 0 0 0 7.884-7.889v-44.828a7.887 7.887 0 0 1 7.884-7.889h28.667a7.887 7.887 0 0 1 7.884 7.889v44.828a7.887 7.887 0 0 0 7.884 7.889h34.029c4.357 0 7.887-3.536 7.884-7.895z"></path> | |
| 1669 | + <path d="M132.069 31.41l31.357 28.145V31.41c0-6.302-5.105-11.41-11.403-11.41h-8.551c-6.298 0-11.403 5.108-11.403 11.41z"></path> | |
| 1670 | + </g> | |
| 1671 | +</svg> | |
| 1672 | +</span></span></span></button></div><div id="comp-m8or8zjr" class="Y_w4j4 uvl2Tw comp-m8or8zjr wixui-dropdown DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8or8zjr"></label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8or8zjr" data-testid="select-trigger" required="" aria-required="true" aria-label="Choisir une option" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir une option</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div></div></div></div></div><div id="comp-m8omdbdr7" role="" class="HFEOE3 NaeT1r comp-m8omdbdr7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdr7-container"><div id="comp-m8oqu82o" role="" class="HFEOE3 NaeT1r comp-m8oqu82o-container comp-m8oqu82o wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8oqu82u" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82u wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="https://www.leshabitationssf.com" target="_self" class="wixui-rich-text__text">Toutes les Propriétés</a></p></div><div id="comp-m8oqu82z" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82z wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oqu8301" class="N8MGzv _v6ohL PO9MfV comp-m8oqu8301 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">GRAND 5 1/2 À LOUER </p></div></div></div></div><div id="comp-m8omdbdy12" role="" class="HFEOE3 NaeT1r comp-m8omdbdy12 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdy12-container"><div id="comp-m8omf94r" role="" class="HFEOE3 NaeT1r comp-m8omf94r wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div class="comp-m8omf94r-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omf94r-container"><div id="comp-m8omf94t" class=" comp-m8omf94t"><div class="comp-m8omf94t"><style>.comp-m8omf94t { | |
| 1673 | + --wix-color-1: 250,250,250; | |
| 1674 | +--wix-color-2: 153,153,153; | |
| 1675 | +--wix-color-3: 102,102,102; | |
| 1676 | +--wix-color-4: 51,51,51; | |
| 1677 | +--wix-color-5: 0,0,0; | |
| 1678 | +--wix-color-6: 183,195,220; | |
| 1679 | +--wix-color-7: 139,154,186; | |
| 1680 | +--wix-color-8: 75,99,151; | |
| 1681 | +--wix-color-9: 50,66,101; | |
| 1682 | +--wix-color-10: 25,33,50; | |
| 1683 | +--wix-color-11: 165,182,220; | |
| 1684 | +--wix-color-12: 124,143,186; | |
| 1685 | +--wix-color-13: 75,99,151; | |
| 1686 | +--wix-color-14: 0,36,116; | |
| 1687 | +--wix-color-15: 0,18,58; | |
| 1688 | +--wix-color-16: 186,204,218; | |
| 1689 | +--wix-color-17: 141,164,180; | |
| 1690 | +--wix-color-18: 80,117,143; | |
| 1691 | +--wix-color-19: 53,78,95; | |
| 1692 | +--wix-color-20: 27,39,48; | |
| 1693 | +--wix-color-21: 255,233,223; | |
| 1694 | +--wix-color-22: 255,191,161; | |
| 1695 | +--wix-color-23: 250,133,79; | |
| 1696 | +--wix-color-24: 234,96,32; | |
| 1697 | +--wix-color-25: 201,64,1; | |
| 1698 | +--wix-color-26: 250,250,250; | |
| 1699 | +--wix-color-27: 0,0,0; | |
| 1700 | +--wix-color-28: 153,153,153; | |
| 1701 | +--wix-color-29: 102,102,102; | |
| 1702 | +--wix-color-30: 51,51,51; | |
| 1703 | +--wix-color-31: 75,99,151; | |
| 1704 | +--wix-color-32: 75,99,151; | |
| 1705 | +--wix-color-33: 75,99,151; | |
| 1706 | +--wix-color-34: 75,99,151; | |
| 1707 | +--wix-color-35: 0,0,0; | |
| 1708 | +--wix-color-36: 51,51,51; | |
| 1709 | +--wix-color-37: 0,0,0; | |
| 1710 | +--wix-color-38: 75,99,151; | |
| 1711 | +--wix-color-39: 75,99,151; | |
| 1712 | +--wix-color-40: 250,250,250; | |
| 1713 | +--wix-color-41: 75,99,151; | |
| 1714 | +--wix-color-42: 75,99,151; | |
| 1715 | +--wix-color-43: 250,250,250; | |
| 1716 | +--wix-color-44: 102,102,102; | |
| 1717 | +--wix-color-45: 102,102,102; | |
| 1718 | +--wix-color-46: 250,250,250; | |
| 1719 | +--wix-color-47: 250,250,250; | |
| 1720 | +--wix-color-48: 75,99,151; | |
| 1721 | +--wix-color-49: 75,99,151; | |
| 1722 | +--wix-color-50: 250,250,250; | |
| 1723 | +--wix-color-51: 75,99,151; | |
| 1724 | +--wix-color-52: 75,99,151; | |
| 1725 | +--wix-color-53: 250,250,250; | |
| 1726 | +--wix-color-54: 102,102,102; | |
| 1727 | +--wix-color-55: 102,102,102; | |
| 1728 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1729 | +--wix-font-Title-style: normal; | |
| 1730 | +--wix-font-Title-variant: normal; | |
| 1731 | +--wix-font-Title-weight: bold; | |
| 1732 | +--wix-font-Title-size: 65px; | |
| 1733 | +--wix-font-Title-line-height: 1.2em; | |
| 1734 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1735 | +--wix-font-Title-text-decoration: none; | |
| 1736 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1737 | +--wix-font-Menu-style: normal; | |
| 1738 | +--wix-font-Menu-variant: normal; | |
| 1739 | +--wix-font-Menu-weight: normal; | |
| 1740 | +--wix-font-Menu-size: 16px; | |
| 1741 | +--wix-font-Menu-line-height: 1.4em; | |
| 1742 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1743 | +--wix-font-Menu-text-decoration: none; | |
| 1744 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1745 | +--wix-font-Page-title-style: normal; | |
| 1746 | +--wix-font-Page-title-variant: normal; | |
| 1747 | +--wix-font-Page-title-weight: bold; | |
| 1748 | +--wix-font-Page-title-size: 38px; | |
| 1749 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1750 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1751 | +--wix-font-Page-title-text-decoration: none; | |
| 1752 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1753 | +--wix-font-Heading-XL-style: normal; | |
| 1754 | +--wix-font-Heading-XL-variant: normal; | |
| 1755 | +--wix-font-Heading-XL-weight: normal; | |
| 1756 | +--wix-font-Heading-XL-size: 34px; | |
| 1757 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1758 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1759 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1760 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1761 | +--wix-font-Heading-L-style: normal; | |
| 1762 | +--wix-font-Heading-L-variant: normal; | |
| 1763 | +--wix-font-Heading-L-weight: normal; | |
| 1764 | +--wix-font-Heading-L-size: 30px; | |
| 1765 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1766 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1767 | +--wix-font-Heading-L-text-decoration: none; | |
| 1768 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1769 | +--wix-font-Heading-M-style: normal; | |
| 1770 | +--wix-font-Heading-M-variant: normal; | |
| 1771 | +--wix-font-Heading-M-weight: normal; | |
| 1772 | +--wix-font-Heading-M-size: 25px; | |
| 1773 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1774 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1775 | +--wix-font-Heading-M-text-decoration: none; | |
| 1776 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1777 | +--wix-font-Heading-S-style: normal; | |
| 1778 | +--wix-font-Heading-S-variant: normal; | |
| 1779 | +--wix-font-Heading-S-weight: normal; | |
| 1780 | +--wix-font-Heading-S-size: 19px; | |
| 1781 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1782 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1783 | +--wix-font-Heading-S-text-decoration: none; | |
| 1784 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1785 | +--wix-font-Body-L-style: normal; | |
| 1786 | +--wix-font-Body-L-variant: normal; | |
| 1787 | +--wix-font-Body-L-weight: normal; | |
| 1788 | +--wix-font-Body-L-size: 16px; | |
| 1789 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1790 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1791 | +--wix-font-Body-L-text-decoration: none; | |
| 1792 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1793 | +--wix-font-Body-M-style: normal; | |
| 1794 | +--wix-font-Body-M-variant: normal; | |
| 1795 | +--wix-font-Body-M-weight: normal; | |
| 1796 | +--wix-font-Body-M-size: 16px; | |
| 1797 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1798 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1799 | +--wix-font-Body-M-text-decoration: none; | |
| 1800 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1801 | +--wix-font-Body-S-style: normal; | |
| 1802 | +--wix-font-Body-S-variant: normal; | |
| 1803 | +--wix-font-Body-S-weight: normal; | |
| 1804 | +--wix-font-Body-S-size: 12px; | |
| 1805 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1806 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1807 | +--wix-font-Body-S-text-decoration: none; | |
| 1808 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1809 | +--wix-font-Body-XS-style: normal; | |
| 1810 | +--wix-font-Body-XS-variant: normal; | |
| 1811 | +--wix-font-Body-XS-weight: normal; | |
| 1812 | +--wix-font-Body-XS-size: 12px; | |
| 1813 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1814 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1815 | +--wix-font-Body-XS-text-decoration: none; | |
| 1816 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1817 | +--wix-font-LIGHT-style: normal; | |
| 1818 | +--wix-font-LIGHT-variant: normal; | |
| 1819 | +--wix-font-LIGHT-weight: normal; | |
| 1820 | +--wix-font-LIGHT-size: 12px; | |
| 1821 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1822 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1823 | +--wix-font-LIGHT-text-decoration: none; | |
| 1824 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1825 | +--wix-font-MEDIUM-style: normal; | |
| 1826 | +--wix-font-MEDIUM-variant: normal; | |
| 1827 | +--wix-font-MEDIUM-weight: normal; | |
| 1828 | +--wix-font-MEDIUM-size: 12px; | |
| 1829 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1830 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1831 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1832 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1833 | +--wix-font-STRONG-style: normal; | |
| 1834 | +--wix-font-STRONG-variant: normal; | |
| 1835 | +--wix-font-STRONG-weight: normal; | |
| 1836 | +--wix-font-STRONG-size: 12px; | |
| 1837 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1838 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1839 | +--wix-font-STRONG-text-decoration: none; | |
| 1840 | + --wix-direction: ltr; | |
| 1841 | +--newItemsDetails: 1; | |
| 1842 | +--galleryImageRatio: 2; | |
| 1843 | +--galleryThumbnailsAlignment: 3; | |
| 1844 | +--titlePlacementHorizontallyCompatible: 1; | |
| 1845 | +--overlayGradientDegrees: 180; | |
| 1846 | +--slideshowInfoSize: 120; | |
| 1847 | +--gridStyle: 1; | |
| 1848 | +--previewHover: 0; | |
| 1849 | +--arrowsSize: 50; | |
| 1850 | +--itemBorderRadius: 0; | |
| 1851 | +--arrowsType: 4; | |
| 1852 | +--customButtonBorderRadius: 0; | |
| 1853 | +--m_fixedGalleryRatio: 2; | |
| 1854 | +--isVertical: 1; | |
| 1855 | +--titleDescriptionSpace: 2; | |
| 1856 | +--gallerySize: 50; | |
| 1857 | +--te-padding-slider: 50; | |
| 1858 | +--m_designedPresetId: -1; | |
| 1859 | +--newItemsLocation: 0; | |
| 1860 | +--scrollDirection: 0; | |
| 1861 | +--overlayAnimation: 0; | |
| 1862 | +--collageDensity: 100; | |
| 1863 | +--calculateTextBoxHeightMode: 0; | |
| 1864 | +--slideshowLoop: 1; | |
| 1865 | +--externalCustomButtonBorderWidth: 1; | |
| 1866 | +--m_thumbnailSize: 80; | |
| 1867 | +--loveCounter: 0; | |
| 1868 | +--galleryLayout: 3; | |
| 1869 | +--titlePlacement: 1; | |
| 1870 | +--m_galleryLayout: 3; | |
| 1871 | +--scrollAnimation: 0; | |
| 1872 | +--numberOfImagesPerRow: 4; | |
| 1873 | +--fixedGalleryRatio: 0; | |
| 1874 | +--galleryVerticalAlign: 2; | |
| 1875 | +--imageHoverAnimation: 0; | |
| 1876 | +--m_allowFixedGalleryRatio: 1; | |
| 1877 | +--arrowsVerticalPosition: 1; | |
| 1878 | +--galleryHorizontalAlign: 0; | |
| 1879 | +--thumbnailSpacings: 10; | |
| 1880 | +--imageResize: 0; | |
| 1881 | +--designedPresetId: -1; | |
| 1882 | +--imageMargin: 10; | |
| 1883 | +--allowFixedGalleryRatio: 0; | |
| 1884 | +--arrowsContainerType: 2; | |
| 1885 | +--m_galleryThumbnailsAlignment: 0; | |
| 1886 | +--arrowsContainerBorderRadius: 50; | |
| 1887 | +--textBoxHeight: 199; | |
| 1888 | +--scrollDuration: 1; | |
| 1889 | +--textFont: normal normal normal 20px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1890 | +--m_itemIconColorSlideshow: 0,0,0; | |
| 1891 | +--m_itemIconColorSlideshow-rgb: 0,0,0; | |
| 1892 | +--m_itemIconColorSlideshow-opacity: 1; | |
| 1893 | +--m_itemDescriptionFontColor: 255,255,255; | |
| 1894 | +--m_itemDescriptionFontColor-rgb: 255,255,255; | |
| 1895 | +--m_itemDescriptionFontColor-opacity: 1; | |
| 1896 | +--m_itemBorderColor: 0,0,0; | |
| 1897 | +--m_itemBorderColor-rgb: 0,0,0; | |
| 1898 | +--m_itemBorderColor-opacity: 1; | |
| 1899 | +--itemIconColor: 255,255,255; | |
| 1900 | +--itemIconColor-rgb: 255,255,255; | |
| 1901 | +--itemIconColor-opacity: 1; | |
| 1902 | +--titleColorExpand: 0,0,0; | |
| 1903 | +--titleColorExpand-rgb: 0,0,0; | |
| 1904 | +--titleColorExpand-opacity: 1; | |
| 1905 | +--loadMoreButtonFontColor: 0,0,0; | |
| 1906 | +--loadMoreButtonFontColor-rgb: 0,0,0; | |
| 1907 | +--loadMoreButtonFontColor-opacity: 1; | |
| 1908 | +--itemDescriptionFontColor: 255,255,255; | |
| 1909 | +--itemDescriptionFontColor-rgb: 255,255,255; | |
| 1910 | +--itemDescriptionFontColor-opacity: 1; | |
| 1911 | +--m_customButtonFontColor: 255,255,255; | |
| 1912 | +--m_customButtonFontColor-rgb: 255,255,255; | |
| 1913 | +--m_customButtonFontColor-opacity: 1; | |
| 1914 | +--m_overlayGradientColor1: 0,0,0; | |
| 1915 | +--m_overlayGradientColor1-rgb: 0,0,0; | |
| 1916 | +--m_overlayGradientColor1-opacity: 1; | |
| 1917 | +--m_arrowsColor: 0,0,0; | |
| 1918 | +--m_arrowsColor-rgb: 0,0,0; | |
| 1919 | +--m_arrowsColor-opacity: 1; | |
| 1920 | +--arrowsContainerBackgroundColor: 255,255,255,0.5; | |
| 1921 | +--arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1922 | +--arrowsContainerBackgroundColor-opacity: 0.5; | |
| 1923 | +--m_externalCustomButtonColor: 26,106,255; | |
| 1924 | +--m_externalCustomButtonColor-rgb: 26,106,255; | |
| 1925 | +--m_externalCustomButtonColor-opacity: 1; | |
| 1926 | +--customButtonBorderColor: 255,255,255; | |
| 1927 | +--customButtonBorderColor-rgb: 255,255,255; | |
| 1928 | +--customButtonBorderColor-opacity: 1; | |
| 1929 | +--m_customButtonFontColorForHover: 0,0,0; | |
| 1930 | +--m_customButtonFontColorForHover-rgb: 0,0,0; | |
| 1931 | +--m_customButtonFontColorForHover-opacity: 1; | |
| 1932 | +--m_itemOpacity: 0,0,0,0.3; | |
| 1933 | +--m_itemOpacity-rgb: 0,0,0; | |
| 1934 | +--m_itemOpacity-opacity: 0.3; | |
| 1935 | +--textBoxFillColor: 238,238,238; | |
| 1936 | +--textBoxFillColor-rgb: 238,238,238; | |
| 1937 | +--textBoxFillColor-opacity: 1; | |
| 1938 | +--backgroundGradientColor2: 26,106,255; | |
| 1939 | +--backgroundGradientColor2-rgb: 26,106,255; | |
| 1940 | +--backgroundGradientColor2-opacity: 1; | |
| 1941 | +--itemOpacity: 0,0,0,0; | |
| 1942 | +--itemOpacity-rgb: 0,0,0; | |
| 1943 | +--itemOpacity-opacity: 0; | |
| 1944 | +--loadMoreButtonColor: 255,255,255; | |
| 1945 | +--loadMoreButtonColor-rgb: 255,255,255; | |
| 1946 | +--loadMoreButtonColor-opacity: 1; | |
| 1947 | +--m_itemFontColor: 255,255,255; | |
| 1948 | +--m_itemFontColor-rgb: 255,255,255; | |
| 1949 | +--m_itemFontColor-opacity: 1; | |
| 1950 | +--m_arrowsContainerBackgroundColor: 255,255,255; | |
| 1951 | +--m_arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1952 | +--m_arrowsContainerBackgroundColor-opacity: 1; | |
| 1953 | +--loadMoreButtonBorderColor: 0,0,0; | |
| 1954 | +--loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1955 | +--loadMoreButtonBorderColor-opacity: 1; | |
| 1956 | +--m_itemShadowOpacityAndColor: 0,0,0; | |
| 1957 | +--m_itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1958 | +--m_itemShadowOpacityAndColor-opacity: 1; | |
| 1959 | +--customButtonFontColor: 255,255,255; | |
| 1960 | +--customButtonFontColor-rgb: 255,255,255; | |
| 1961 | +--customButtonFontColor-opacity: 1; | |
| 1962 | +--imageLoadingColor: 238,238,238; | |
| 1963 | +--imageLoadingColor-rgb: 238,238,238; | |
| 1964 | +--imageLoadingColor-opacity: 1; | |
| 1965 | +--m_itemFontColorSlideshow: 0,0,0; | |
| 1966 | +--m_itemFontColorSlideshow-rgb: 0,0,0; | |
| 1967 | +--m_itemFontColorSlideshow-opacity: 1; | |
| 1968 | +--externalCustomButtonBorderColor: 0,0,0; | |
| 1969 | +--externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 1970 | +--externalCustomButtonBorderColor-opacity: 1; | |
| 1971 | +--itemShadowOpacityAndColor: 0,0,0; | |
| 1972 | +--itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1973 | +--itemShadowOpacityAndColor-opacity: 1; | |
| 1974 | +--externalCustomButtonColor: 26,106,255; | |
| 1975 | +--externalCustomButtonColor-rgb: 26,106,255; | |
| 1976 | +--externalCustomButtonColor-opacity: 1; | |
| 1977 | +--itemFontColorSlideshow: 0,0,0; | |
| 1978 | +--itemFontColorSlideshow-rgb: 0,0,0; | |
| 1979 | +--itemFontColorSlideshow-opacity: 1; | |
| 1980 | +--itemFontColor: 255,255,255; | |
| 1981 | +--itemFontColor-rgb: 255,255,255; | |
| 1982 | +--itemFontColor-opacity: 1; | |
| 1983 | +--m_oneColorAnimationColor: 255,255,255; | |
| 1984 | +--m_oneColorAnimationColor-rgb: 255,255,255; | |
| 1985 | +--m_oneColorAnimationColor-opacity: 1; | |
| 1986 | +--arrowsColor: 25,33,50; | |
| 1987 | +--arrowsColor-rgb: 25,33,50; | |
| 1988 | +--arrowsColor-opacity: 1; | |
| 1989 | +--m_itemIconColor: 255,255,255; | |
| 1990 | +--m_itemIconColor-rgb: 255,255,255; | |
| 1991 | +--m_itemIconColor-opacity: 1; | |
| 1992 | +--itemBorderColor: 0,0,0; | |
| 1993 | +--itemBorderColor-rgb: 0,0,0; | |
| 1994 | +--itemBorderColor-opacity: 1; | |
| 1995 | +--m_loadMoreButtonBorderColor: 0,0,0; | |
| 1996 | +--m_loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1997 | +--m_loadMoreButtonBorderColor-opacity: 1; | |
| 1998 | +--m_loadMoreButtonColor: 255,255,255; | |
| 1999 | +--m_loadMoreButtonColor-rgb: 255,255,255; | |
| 2000 | +--m_loadMoreButtonColor-opacity: 1; | |
| 2001 | +--backgroundGradientColor1: 255,255,255; | |
| 2002 | +--backgroundGradientColor1-rgb: 255,255,255; | |
| 2003 | +--backgroundGradientColor1-opacity: 1; | |
| 2004 | +--m_customButtonBorderColor: 255,255,255; | |
| 2005 | +--m_customButtonBorderColor-rgb: 255,255,255; | |
| 2006 | +--m_customButtonBorderColor-opacity: 1; | |
| 2007 | +--itemIconColorSlideshow: 0,0,0; | |
| 2008 | +--itemIconColorSlideshow-rgb: 0,0,0; | |
| 2009 | +--itemIconColorSlideshow-opacity: 1; | |
| 2010 | +--foreColor: 238,238,238; | |
| 2011 | +--foreColor-rgb: 238,238,238; | |
| 2012 | +--foreColor-opacity: 1; | |
| 2013 | +--m_itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2014 | +--m_itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2015 | +--m_itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2016 | +--bgColorExpand: 255,255,255; | |
| 2017 | +--bgColorExpand-rgb: 255,255,255; | |
| 2018 | +--bgColorExpand-opacity: 1; | |
| 2019 | +--textBoxBorderColor: 0,0,0; | |
| 2020 | +--textBoxBorderColor-rgb: 0,0,0; | |
| 2021 | +--textBoxBorderColor-opacity: 1; | |
| 2022 | +--customButtonFontColorForHover: 0,0,0; | |
| 2023 | +--customButtonFontColorForHover-rgb: 0,0,0; | |
| 2024 | +--customButtonFontColorForHover-opacity: 1; | |
| 2025 | +--m_loadMoreButtonFontColor: 0,0,0; | |
| 2026 | +--m_loadMoreButtonFontColor-rgb: 0,0,0; | |
| 2027 | +--m_loadMoreButtonFontColor-opacity: 1; | |
| 2028 | +--customButtonColor: 255,255,255; | |
| 2029 | +--customButtonColor-rgb: 255,255,255; | |
| 2030 | +--customButtonColor-opacity: 1; | |
| 2031 | +--descriptionColorExpand: 0,0,0; | |
| 2032 | +--descriptionColorExpand-rgb: 0,0,0; | |
| 2033 | +--descriptionColorExpand-opacity: 1; | |
| 2034 | +--actionsColorExpand: 0,0,0; | |
| 2035 | +--actionsColorExpand-rgb: 0,0,0; | |
| 2036 | +--actionsColorExpand-opacity: 1; | |
| 2037 | +--oneColorAnimationColor: 255,255,255; | |
| 2038 | +--oneColorAnimationColor-rgb: 255,255,255; | |
| 2039 | +--oneColorAnimationColor-opacity: 1; | |
| 2040 | +--backColor: 238,238,238; | |
| 2041 | +--backColor-rgb: 238,238,238; | |
| 2042 | +--backColor-opacity: 1; | |
| 2043 | +--itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2044 | +--itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2045 | +--itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2046 | +--m_externalCustomButtonBorderColor: 0,0,0; | |
| 2047 | +--m_externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 2048 | +--m_externalCustomButtonBorderColor-opacity: 1; | |
| 2049 | +--te-background-color-picker: 149,185,255; | |
| 2050 | +--te-background-color-picker-rgb: 149,185,255; | |
| 2051 | +--te-background-color-picker-opacity: 1; | |
| 2052 | +--m_customButtonColor: 255,255,255; | |
| 2053 | +--m_customButtonColor-rgb: 255,255,255; | |
| 2054 | +--m_customButtonColor-opacity: 1; | |
| 2055 | +--overlayGradientColor2: 0,0,0; | |
| 2056 | +--overlayGradientColor2-rgb: 0,0,0; | |
| 2057 | +--overlayGradientColor2-opacity: 1; | |
| 2058 | +--m_overlayGradientColor2: 0,0,0; | |
| 2059 | +--m_overlayGradientColor2-rgb: 0,0,0; | |
| 2060 | +--m_overlayGradientColor2-opacity: 1; | |
| 2061 | +--overlayGradientColor1: 0,0,0; | |
| 2062 | +--overlayGradientColor1-rgb: 0,0,0; | |
| 2063 | +--overlayGradientColor1-opacity: 1; | |
| 2064 | +--backgroundColor: 102,102,102; | |
| 2065 | +--backgroundColor-rgb: 102,102,102; | |
| 2066 | +--backgroundColor-opacity: 1; | |
| 2067 | +--textColor: 0,0,0; | |
| 2068 | +--textColor-rgb: 0,0,0; | |
| 2069 | +--textColor-opacity: 1; | |
| 2070 | +--m_customButtonFontForHover: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2071 | +--m_customButtonFontForHover-style: normal; | |
| 2072 | +--m_customButtonFontForHover-variant: normal; | |
| 2073 | +--m_customButtonFontForHover-weight: normal; | |
| 2074 | +--m_customButtonFontForHover-size: 15px; | |
| 2075 | +--m_customButtonFontForHover-line-height: 18px; | |
| 2076 | +--m_customButtonFontForHover-family: proxima-n-w01-reg,sans-serif; | |
| 2077 | +--m_customButtonFontForHover-text-decoration: none; | |
| 2078 | +--m_customButtonFont: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2079 | +--m_customButtonFont-style: normal; | |
| 2080 | +--m_customButtonFont-variant: normal; | |
| 2081 | +--m_customButtonFont-weight: normal; | |
| 2082 | +--m_customButtonFont-size: 15px; | |
| 2083 | +--m_customButtonFont-line-height: 18px; | |
| 2084 | +--m_customButtonFont-family: proxima-n-w01-reg,sans-serif; | |
| 2085 | +--m_customButtonFont-text-decoration: none; | |
| 2086 | +--m_itemFont: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2087 | +--m_itemFont-style: normal; | |
| 2088 | +--m_itemFont-variant: normal; | |
| 2089 | +--m_itemFont-weight: normal; | |
| 2090 | +--m_itemFont-size: 22px; | |
| 2091 | +--m_itemFont-line-height: 27px; | |
| 2092 | +--m_itemFont-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2093 | +--m_itemFont-text-decoration: none; | |
| 2094 | +--m_itemFontSlideshow: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2095 | +--m_itemFontSlideshow-style: normal; | |
| 2096 | +--m_itemFontSlideshow-variant: normal; | |
| 2097 | +--m_itemFontSlideshow-weight: normal; | |
| 2098 | +--m_itemFontSlideshow-size: 22px; | |
| 2099 | +--m_itemFontSlideshow-line-height: 27px; | |
| 2100 | +--m_itemFontSlideshow-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2101 | +--m_itemFontSlideshow-text-decoration: none; | |
| 2102 | +--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2103 | +--customButtonFontForHover-style: normal; | |
| 2104 | +--customButtonFontForHover-variant: normal; | |
| 2105 | +--customButtonFontForHover-weight: normal; | |
| 2106 | +--customButtonFontForHover-size: 16px; | |
| 2107 | +--customButtonFontForHover-line-height: 1.6em; | |
| 2108 | +--customButtonFontForHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2109 | +--customButtonFontForHover-text-decoration: none; | |
| 2110 | +--text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2111 | +--text-editor-font-style: normal; | |
| 2112 | +--text-editor-font-variant: normal; | |
| 2113 | +--text-editor-font-weight: normal; | |
| 2114 | +--text-editor-font-size: 40px; | |
| 2115 | +--text-editor-font-line-height: 50px; | |
| 2116 | +--text-editor-font-family: avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2117 | +--text-editor-font-text-decoration: none; | |
| 2118 | +--m_loadMoreButtonFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2119 | +--m_loadMoreButtonFont-style: normal; | |
| 2120 | +--m_loadMoreButtonFont-variant: normal; | |
| 2121 | +--m_loadMoreButtonFont-weight: normal; | |
| 2122 | +--m_loadMoreButtonFont-size: 15px; | |
| 2123 | +--m_loadMoreButtonFont-line-height: 18px; | |
| 2124 | +--m_loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2125 | +--m_loadMoreButtonFont-text-decoration: none; | |
| 2126 | +--itemDescriptionFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2127 | +--itemDescriptionFont-style: normal; | |
| 2128 | +--itemDescriptionFont-variant: normal; | |
| 2129 | +--itemDescriptionFont-weight: normal; | |
| 2130 | +--itemDescriptionFont-size: 16px; | |
| 2131 | +--itemDescriptionFont-line-height: 1.6em; | |
| 2132 | +--itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2133 | +--itemDescriptionFont-text-decoration: none; | |
| 2134 | +--text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2135 | +--text-editor-font-1499774301866-style: normal; | |
| 2136 | +--text-editor-font-1499774301866-variant: normal; | |
| 2137 | +--text-editor-font-1499774301866-weight: normal; | |
| 2138 | +--text-editor-font-1499774301866-size: 40px; | |
| 2139 | +--text-editor-font-1499774301866-line-height: 50px; | |
| 2140 | +--text-editor-font-1499774301866-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2141 | +--text-editor-font-1499774301866-text-decoration: none; | |
| 2142 | +--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2143 | +--customButtonFont-style: normal; | |
| 2144 | +--customButtonFont-variant: normal; | |
| 2145 | +--customButtonFont-weight: normal; | |
| 2146 | +--customButtonFont-size: 16px; | |
| 2147 | +--customButtonFont-line-height: 1.6em; | |
| 2148 | +--customButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2149 | +--customButtonFont-text-decoration: none; | |
| 2150 | +--text-editor-font-1499927482082: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2151 | +--text-editor-font-1499927482082-style: normal; | |
| 2152 | +--text-editor-font-1499927482082-variant: normal; | |
| 2153 | +--text-editor-font-1499927482082-weight: normal; | |
| 2154 | +--text-editor-font-1499927482082-size: 40px; | |
| 2155 | +--text-editor-font-1499927482082-line-height: 50px; | |
| 2156 | +--text-editor-font-1499927482082-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2157 | +--text-editor-font-1499927482082-text-decoration: none; | |
| 2158 | +--m_itemDescriptionFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2159 | +--m_itemDescriptionFont-style: normal; | |
| 2160 | +--m_itemDescriptionFont-variant: normal; | |
| 2161 | +--m_itemDescriptionFont-weight: normal; | |
| 2162 | +--m_itemDescriptionFont-size: 15px; | |
| 2163 | +--m_itemDescriptionFont-line-height: 18px; | |
| 2164 | +--m_itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2165 | +--m_itemDescriptionFont-text-decoration: none; | |
| 2166 | +--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2167 | +--loadMoreButtonFont-style: normal; | |
| 2168 | +--loadMoreButtonFont-variant: normal; | |
| 2169 | +--loadMoreButtonFont-weight: normal; | |
| 2170 | +--loadMoreButtonFont-size: 16px; | |
| 2171 | +--loadMoreButtonFont-line-height: 1.6em; | |
| 2172 | +--loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2173 | +--loadMoreButtonFont-text-decoration: none; | |
| 2174 | +--itemFontSlideshow: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2175 | +--itemFontSlideshow-style: normal; | |
| 2176 | +--itemFontSlideshow-variant: normal; | |
| 2177 | +--itemFontSlideshow-weight: normal; | |
| 2178 | +--itemFontSlideshow-size: 19px; | |
| 2179 | +--itemFontSlideshow-line-height: 1.4em; | |
| 2180 | +--itemFontSlideshow-family: montserrat,sans-serif; | |
| 2181 | +--itemFontSlideshow-text-decoration: none; | |
| 2182 | +--titleFontExpand: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2183 | +--titleFontExpand-style: normal; | |
| 2184 | +--titleFontExpand-variant: normal; | |
| 2185 | +--titleFontExpand-weight: normal; | |
| 2186 | +--titleFontExpand-size: 19px; | |
| 2187 | +--titleFontExpand-line-height: 1.4em; | |
| 2188 | +--titleFontExpand-family: montserrat,sans-serif; | |
| 2189 | +--titleFontExpand-text-decoration: none; | |
| 2190 | +--m_itemDescriptionFontSlideshow: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2191 | +--m_itemDescriptionFontSlideshow-style: normal; | |
| 2192 | +--m_itemDescriptionFontSlideshow-variant: normal; | |
| 2193 | +--m_itemDescriptionFontSlideshow-weight: normal; | |
| 2194 | +--m_itemDescriptionFontSlideshow-size: 15px; | |
| 2195 | +--m_itemDescriptionFontSlideshow-line-height: 18px; | |
| 2196 | +--m_itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2197 | +--m_itemDescriptionFontSlideshow-text-decoration: none; | |
| 2198 | +--itemDescriptionFontSlideshow: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2199 | +--itemDescriptionFontSlideshow-style: normal; | |
| 2200 | +--itemDescriptionFontSlideshow-variant: normal; | |
| 2201 | +--itemDescriptionFontSlideshow-weight: normal; | |
| 2202 | +--itemDescriptionFontSlideshow-size: 16px; | |
| 2203 | +--itemDescriptionFontSlideshow-line-height: 1.6em; | |
| 2204 | +--itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2205 | +--itemDescriptionFontSlideshow-text-decoration: none; | |
| 2206 | +--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2207 | +--descriptionFontExpand-style: normal; | |
| 2208 | +--descriptionFontExpand-variant: normal; | |
| 2209 | +--descriptionFontExpand-weight: normal; | |
| 2210 | +--descriptionFontExpand-size: 16px; | |
| 2211 | +--descriptionFontExpand-line-height: 1.6em; | |
| 2212 | +--descriptionFontExpand-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2213 | +--descriptionFontExpand-text-decoration: none; | |
| 2214 | +--itemFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2215 | +--itemFont-style: normal; | |
| 2216 | +--itemFont-variant: normal; | |
| 2217 | +--itemFont-weight: normal; | |
| 2218 | +--itemFont-size: 19px; | |
| 2219 | +--itemFont-line-height: 1.4em; | |
| 2220 | +--itemFont-family: montserrat,sans-serif; | |
| 2221 | +--itemFont-text-decoration: none; | |
| 2222 | +--textFont-style: normal; | |
| 2223 | +--textFont-variant: normal; | |
| 2224 | +--textFont-weight: normal; | |
| 2225 | +--textFont-size: 20px; | |
| 2226 | +--textFont-line-height: 1.4em; | |
| 2227 | +--textFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2228 | +--textFont-text-decoration: none; | |
| 2229 | + }</style><style> | |
| 2230 | + | |
| 2231 | + .s__3mb942.oUUTDbO--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2232 | + | |
| 2233 | + .sfxZxsX{--wbu-color-blue-0:#0F2CCF;--wbu-color-blue-100:#2F5DFF;--wbu-color-blue-200:#597DFF;--wbu-color-blue-300:#ACBEFF;--wbu-color-blue-400:#D5DFFF;--wbu-color-blue-500:#EAEFFF;--wbu-color-blue-600:#F5F7FF;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#A8A6A5;--wbu-color-black-500:#E0DFDF;--wbu-color-black-600:#F1F0EF;--wbu-color-red-0:#9C2426;--wbu-color-red-100:#DF3336;--wbu-color-red-200:#E55C5E;--wbu-color-red-300:#ED8F90;--wbu-color-red-400:#F4B8B9;--wbu-color-red-500:#F9D6D7;--wbu-color-red-600:#FCEBEB;--wbu-color-green-0:#0D4F3D;--wbu-color-green-100:#4B916D;--wbu-color-green-200:#97C693;--wbu-color-green-300:#BDE2A7;--wbu-color-green-400:#DAF3C0;--wbu-color-green-500:#EFFAE5;--wbu-color-green-600:#F1F5ED;--wbu-color-yellow-0:#D49341;--wbu-color-yellow-100:#F9AD4D;--wbu-color-yellow-200:#FABD71;--wbu-color-yellow-300:#FCD29D;--wbu-color-yellow-400:#FDEAD2;--wbu-color-yellow-500:#FEF3E5;--wbu-color-yellow-600:#FEF6ED;--wbu-color-orange-0:#AE3E09;--wbu-color-orange-100:#FF8044;--wbu-color-orange-200:#FE9361;--wbu-color-orange-300:#FDA77F;--wbu-color-orange-400:#FBCFBB;--wbu-color-orange-500:#FBE3D9;--wbu-color-orange-600:#FDF1EC;--wbu-color-purple-0:#5000AA;--wbu-color-purple-100:#7200F3;--wbu-color-purple-200:#8B2DF5;--wbu-color-purple-300:#BE89F9;--wbu-color-purple-400:#D7B7FB;--wbu-color-purple-500:#F1E5FE;--wbu-color-purple-600:#F8F2FF;--wbu-color-ai-0:#4D3DD0;--wbu-color-ai-100:#5A48F5;--wbu-color-ai-200:#7B6DF7;--wbu-color-ai-300:#A59BFA;--wbu-color-ai-400:#D6D1FC;--wbu-color-ai-500:#E7E4FE;--wbu-color-ai-600:#EEECFE;--wbu-heading-font-stack:'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3', 'hiragino kaku gothic pro', sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600} | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + .sDDrUS7.oINNVeg--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2237 | + | |
| 2238 | + | |
| 2239 | + | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | + | |
| 2244 | + | |
| 2245 | + | |
| 2246 | +/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2247 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/GalleryWrapperWixStyles.scss ***! | |
| 2248 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .nav-arrows-container .custom-nav-arrows svg{width:100%;height:100%}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2249 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/FullscreenWrapperWixStyles.scss ***! | |
| 2250 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ | |
| 2251 | + | |
| 2252 | + .fullscreen-focus-lock { | |
| 2253 | + height: 100%; | |
| 2254 | +} | |
| 2255 | + | |
| 2256 | +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2257 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/GalleryWrapper.global.scss ***! | |
| 2258 | + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-gallery-stop-scroll-for-fullscreen{overflow-y:hidden}div.pro-gallery-parent-container .show-more-container i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container button.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more:hover{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{background:none !important;font-size:26px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{font-size:15px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i{font-size:26px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{font-size:15px}/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2259 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/FullscreenWrapper.global.scss ***! | |
| 2260 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{opacity:.3} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-cart-icon{background:inherit !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love-store.pro-gallery-loved{color:#e03939 !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love.pro-gallery-loved{color:#e03939 !important}/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2261 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/SocialShareWrapper.global.scss ***! | |
| 2262 | + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .social-share-wrapper{position:fixed;top:0;bottom:0;left:0;right:0;z-index:200005} .social-share-wrapper .mobile-social-share-screen{position:absolute;top:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0)} .social-share-wrapper .mobile-social-share-screen.mobile-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:background-color .3s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-background{height:calc(100% - 150px);touch-action:none} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab{position:absolute;bottom:0px;width:100%;height:150px;box-sizing:border-box;background-color:#fff;margin-bottom:-150px;display:flex;justify-content:center;align-items:center;transition:all .4s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab.mobile-social-share-tab-visible{margin-bottom:0px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:220px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list .social-share-icon{height:16px;width:16px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container{height:32px;margin-top:20px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-input{width:200px;font-size:11px;padding:2px 4px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button{width:40px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{height:16px;width:16px} .social-share-wrapper .desktop-social-share-screen{position:fixed;top:0;left:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center} .social-share-wrapper .desktop-social-share-screen.desktop-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-background{position:fixed;height:100%;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup{position:relative;width:580px;height:250px;box-sizing:border-box;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:-100px;opacity:0;transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup.desktop-social-share-popup-visible{margin-bottom:0px;opacity:1} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button{position:absolute;top:24px;right:24px;cursor:pointer} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:280px} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list .social-share-icon{height:24px;width:24px;transition:color .2s ease} .social-share-wrapper .social-share-item{position:relative} .social-share-wrapper .social-share-item .social-share-button{opacity:1;transition:opacity .2s ease;cursor:pointer} .social-share-wrapper .social-share-item .social-share-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-item .social-share-button:hover{opacity:.65} .social-share-wrapper .social-share-item .social-share-button:active{opacity:1} .social-share-wrapper .social-share-copylink-container{display:flex;margin-top:25px;height:40px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-input{border:1px solid #000;padding:2px 8px;height:100%;width:260px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button{width:50px;height:100%;background-color:#000;color:#fff;cursor:pointer;transition:background-color .1s ease} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover{background-color:rgba(0,0,0,.65)} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{margin-top:2px}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2263 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../../core-packages/pro-gallery-old/dist/statics/main.css ***! | |
| 2264 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover) .gallery-item-content .gallery-item{transition:opacity .4s ease !important}div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{opacity:0}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .hover-info-element{transition:transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(1.1)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(1.11)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover) .hover-info-element,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover) .hover-info-element{transform:scale(0.9009)}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .4s linear !important}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{filter:blur(6px)}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover):hover .gallery-item-content{filter:grayscale(1)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover){transition:background-color .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover){transition:transform .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover{background-color:rgba(0,0,0,0) !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(0.985)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(0.985)}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover):hover .gallery-item-content{filter:invert(1)}div.pro-gallery .gallery-item-container.color-in-on-hover .gallery-item-content{filter:grayscale(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.color-in-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.color-in-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:grayscale(0)}div.pro-gallery .gallery-item-container.darkened-on-hover .gallery-item-content{filter:brightness(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.darkened-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.darkened-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:brightness(0.7)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover .gallery-item-hover-inner{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover):before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover:before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner{opacity:1}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover):before{opacity:0}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:0 !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(0)} .animation-slide{transition:width .4s ease,height .4s ease,top .4s ease,left .4s ease} .item-with-secondary-media-container .secondary-media-item.hide{opacity:0} .item-with-secondary-media-container .secondary-media-item.show{opacity:1} *[data-collapsed=true] .pro-gallery-parent-container .gallery-item, *[data-hidden=true] .pro-gallery-parent-container .gallery-item{background-image:none !important}html.pro-gallery{width:100%;height:auto}body.pro-gallery{transition:opacity 2s ease} #gallery-loader{position:fixed;top:50%} .show-more-container{text-align:center;line-height:138px} .show-more-container i.show-more{color:#5d5d61;font-size:40px;cursor:pointer;margin-top:-3px} .show-more-container button.show-more{display:inline-block;padding:11px 29px;border-radius:0;border:2px solid #5d5d61;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:12px;color:#5d5d61;background:rgba(0,0,0,0);cursor:pointer} .show-more-container button.show-more:hover{background:rgba(0,0,0,.1)} .more-items-loader{display:block;width:100%;text-align:center;line-height:50px;font-size:30px;color:#116dff} .version-header{color:#e03939;text-align:left;font-family:"Consolas",monospace;font-size:13px;position:absolute;top:0;left:0;width:320px;height:100px;line-height:30px;background:hsla(0,0%,100%,.8);z-index:100} .auto-slideshow-button{margin-top:19px;padding:5px;height:28px;width:20px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9} .auto-slideshow-counter{margin-top:24px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;opacity:.9;font-size:15px;line-height:normal}@keyframes fadeIn{from{opacity:0}to{opacity:1}} .mouse-cursor{display:flex;width:100%;position:absolute} .nav-arrows-container{left:auto;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9;align-items:center;background:rgba(0,0,0,0);border:none;justify-content:center} .nav-arrows-container.follow-mouse-cursor{position:relative;cursor:none} .nav-arrows-container:hover{opacity:1} .nav-arrows-container.drop-shadow svg{filter:drop-shadow(0px 1px 0.15px #B2B2B2)} .nav-arrows-container .slideshow-arrow{flex-shrink:0} .nav-arrows-container:focus:not(:focus-visible){--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important} .arrow-portal-container span{animation:fadeIn .1s ease-in-out;position:fixed;transition:top 50ms,left 50ms;display:flex;align-items:center;justify-content:center}div.gallery-slideshow div.pro-gallery,div.gallery-slideshow .gallery-column{box-sizing:content-box !important}div.gallery-slideshow .gallery-group,div.gallery-slideshow .gallery-item-container,div.gallery-slideshow .gallery-item-wrapper{overflow:visible !important}div.gallery-slideshow.streched .gallery-slideshow-info{padding-left:50px !important;padding-right:50px !important}@media(max-width: 500px){div.gallery-slideshow div.pro-gallery .gallery-slideshow-info{padding-left:20px;padding-right:20px}}div.gallery-slideshow div.pro-gallery .gallery-item-container .gallery-slideshow-info{position:absolute;padding-top:0px;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15} .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 60px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 10px 50px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px}div.pro-gallery{width:100%;height:100%;overflow:hidden;backface-visibility:hidden;position:relative}div.pro-gallery .gallery-column{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden}div.pro-gallery .gallery-column .gallery-left-padding{display:inline-block;height:100%}div.pro-gallery .gallery-column .gallery-top-padding{display:block;width:100%}div.pro-gallery .gallery-group{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden;box-sizing:border-box;padding:0;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px}div.pro-gallery .gallery-group.debug.gallery-group-gone{background:#cdcdd0}div.pro-gallery .gallery-group.debug.gallery-group-visible{background:#c1f0c1}div.pro-gallery .gallery-group.debug.gallery-group-hidden{background:#f99}div.pro-gallery .gallery-item-container{position:absolute;display:inline-block;vertical-align:top;border:none;padding:0;border-radius:0;box-sizing:border-box;overflow:hidden;transform-style:preserve-3d;backface-visibility:hidden;outline:none;text-decoration:none;color:inherit;will-change:top,left,width,height;box-sizing:border-box;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px;cursor:default;scroll-snap-align:center}div.pro-gallery .gallery-item-container .item-action{width:1px;height:1px;overflow:hidden;position:absolute;pointer-events:none;z-index:-1}div.pro-gallery .gallery-item-container .item-action:focus{--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info{cursor:pointer}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info button{text-decoration:underline;cursor:pointer}div.pro-gallery .gallery-item-container.visible{transform:translate3d(0, 0, 0)}div.pro-gallery .gallery-item-container.clickable{cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper{position:relative;width:100%;height:100%;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item{position:absolute;z-index:1;width:100%;height:100%;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .gallery-item{-o-object-fit:cover;object-fit:cover}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .text-item>div{width:100% !important;height:100% !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper.transparent,div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit{background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-preload{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit .gallery-item{background:rgba(0,0,0,0);-o-object-fit:contain;object-fit:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;overflow:hidden;border-radius:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item{box-sizing:border-box;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;white-space:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item .te-pro-gallery-text-item{line-height:normal !important;letter-spacing:normal !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item>div{background:initial !important;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item p,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item div,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h3,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h6,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item i{margin:0;padding:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item .pro-circle-preloader{top:50%;left:50%;height:30px;width:15px;z-index:-1;opacity:.4}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item img.gallery--placeholder-item{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded{background-color:rgba(0,0,0,0);opacity:1 !important;animation:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded.image-item:after{display:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded~.pro-circle-preloader{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.error{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded{background-size:cover;background-repeat:no-repeat;background-position:center center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded.grid-fit{background-size:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video{overflow:hidden;text-align:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video iframe{left:0;top:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing i{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playedOnce~.image-item{pointer-events:none;opacity:0;transition:opacity .2s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{display:inline-block;text-rendering:auto;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;position:absolute;z-index:11;top:50%;left:50%;height:60px;text-align:center;margin:-30px 0 0 -30px;background:#080808;color:#fff;border-radius:50px;opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle{opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-background,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-background{font-size:26px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:hover{opacity:.9}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:before,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:before{font-size:2.3em;opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info{position:absolute;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info>div{height:100%;width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{white-space:initial;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;border-radius:0;z-index:15;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-hover-inner{height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover.no-hover-bg:before{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;z-index:-1}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery.one-row{white-space:nowrap;float:left}div.pro-gallery.one-row .gallery-column{width:100%;float:none;white-space:nowrap}div.pro-gallery.one-row .gallery-column .gallery-group{display:inline-block;float:none}div.pro-gallery.one-row.slider .gallery-column{overflow-x:scroll}div.pro-gallery.one-row.slider .gallery-column.scroll-snap{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}div.pro-gallery.one-row .gallery-horizontal-scroll-inner{position:relative;will-change:transform}div.pro-gallery.thumbnails-gallery{overflow:hidden;float:left}div.pro-gallery.thumbnails-gallery .galleryColumn{position:relative;overflow:visible}div.pro-gallery.thumbnails-gallery .thumbnailItem{position:absolute;background-color:#fff;background-size:cover;background-position:center;overflow-y:inherit;border-radius:0px;cursor:pointer}div.pro-gallery.thumbnails-gallery .thumbnailItem.pro-gallery-highlight::after{content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;background-color:hsla(0,0%,100%,.6)}@media(max-width: 500px){div.pro-gallery.thumbnails-gallery{overflow:visible}}div.pro-gallery *:focus{box-shadow:none}div.pro-gallery.accessible i:focus,div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus{box-shadow:inset 0 0 0 1px #fff,inset 0 0 1px 4px #116dff}div.pro-gallery.accessible i:focus:not(:focus-visible),div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus:not(:focus-visible){box-shadow:none !important}div.pro-gallery.accessible .gallery-item-hover i:focus,div.pro-gallery.accessible .gallery-item-hover button:focus{box-shadow:none}div.pro-gallery.accessible .gallery-item-container:has(.item-action:focus)::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit;z-index:15}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before{box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit}div.pro-gallery .hide-scrollbars{-ms-overflow-style:none;overflow:-moz-scrollbars-none;scrollbar-width:none}div.pro-gallery .hide-scrollbars::-webkit-scrollbar,div.pro-gallery .hide-scrollbars ::-webkit-scrollbar{width:0 !important;height:0 !important}div.pro-gallery .rtl{direction:rtl}div.pro-gallery .ltr{direction:ltr} .sr-only.out-of-view-component{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:circle(0%);border:0} .screen-logs{word-wrap:break-word;background:#fff;width:280px;font-size:10px} .fade{display:block;transition:opacity 600ms ease} .fade-visible{opacity:1} .fade-hidden{opacity:0} .deck-before{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(-100%)} .deck-before-rtl{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(100%)} .deck-current{display:block;z-index:0;transition:transform 600ms ease;transform:translateX(0)} .deck-current .override{transition:transform 600ms ease,opacity .1s ease 200ms !important} .deck-after{display:block;transition:opacity .2s ease 600ms;z-index:-1;opacity:0} .deck-after .override{transition:opacity .1s ease 0s !important} .disabled-transition{transition:none !important}@keyframes changing_background{0%{background-color:rgba(241,241,241,.2)}50%{background-color:rgba(241,241,241,.8)}100%{background-color:rgba(241,241,241,.2)}} .pro-gallery-parent-container.gallery-slideshow [data-hook=group-view]::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .pro-gallery-parent-container:not(.gallery-slideshow) [data-hook=group-view] .item-link-wrapper::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .gallery-item-container{scroll-snap-align:none !important} .gallery-slideshow .gallery-item-container:not(.clickable) a{cursor:default}/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2265 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGallery.global.scss ***! | |
| 2266 | + \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2267 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../pro-gallery-info-element/dist/statics/app.css ***! | |
| 2268 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2269 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/infoElement.scss ***! | |
| 2270 | + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .slideshow-info-element-inner .info-element-text>div{width:100%} .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info{box-sizing:border-box;padding-top:24px;height:100%;width:100%;padding-top:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-item-common-info.gallery-item-bottom-info .info-element-text>div{width:100%} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description>span{white-space:normal} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-member.hide{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.populated-item{margin-bottom:24px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center{justify-content:center} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text>div{width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element{display:flex;flex-direction:column;justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social{margin:0;height:auto;position:static;display:flex;flex-direction:row} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows{width:auto;margin:0px -10px 0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top{background:linear-gradient(rgba(0, 0, 0, 0.2) 0, transparent 140px)} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center{justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button{position:static !important;margin:0;padding:0 20px;font-size:19px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share{margin-top:-3px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{white-space:normal} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px 0 0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{display:flex;justify-content:center;opacity:0;/*! autoprefixer: ignore next */-webkit-box-pack:center;transition:opacity .4s ease;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper .buy-icon{margin-right:7px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;opacity:0;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;white-space:nowrap;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px;display:flex;flex-direction:column;margin:0;box-sizing:border-box;height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.short-item{padding-top:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.narrow-item{padding-left:5px;padding-right:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text>div{width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.push-down{padding-top:60px;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{line-height:32px;font-size:21px;padding:0;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0;white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements{width:100%;height:24px !important;display:flex;flex-direction:row}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-love{margin-right:auto}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-button{padding-left:10px;padding-right:10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-absolute{position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social{outline:none;width:100%;height:100%;overflow:visible;z-index:16;transition:opacity .4s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item{display:flex;align-items:flex-end;justify-content:space-around;height:90%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item .info-element-social-button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item .info-element-social-button{position:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.with-arrows{width:86%;margin:0 7%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button{outline:none;bottom:30px;position:absolute;margin:0;display:inline-block;font-size:19px;color:#fff;cursor:pointer;opacity:0;padding:10px;margin:-10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.visible{opacity:1 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments{left:26px;top:26px;bottom:initial;font-size:15px;border:none;background:#2b5672;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love{left:30px;bottom:30px;font-size:15px;border:none;background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love i{outline:none;float:left;display:inline-block;line-height:14px;border:none;background:rgba(0,0,0,0);font-size:18px;padding:1px 5px;text-decoration:none;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;line-height:15px;font-size:15px;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-share{bottom:26px;left:auto;right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-dots{left:auto;right:22px;top:26px;height:30px;width:20px;display:flex;justify-content:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download{bottom:25px;left:auto;right:68px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download.pull-right{right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments{left:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments span{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-share{right:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-download{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-dots{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button{bottom:auto;left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-comments{top:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-share{top:auto;right:auto;bottom:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-download{top:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-dots{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box{position:absolute;top:0;left:50%;width:100%;height:100%;max-width:300px;min-width:200px;overflow:visible;z-index:16;font-size:12px;opacity:0;transform:translateX(-50%);margin-top:1px;margin-left:-3px;transition:opacity .4s ease;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i{display:inline-block;font-size:15px;color:#fff;cursor:pointer;position:absolute;top:50%;width:22px;text-align:center;transform:translateY(-50%);background:rgba(0,0,0,0);border:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i:hover{opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-1{margin-left:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-2{font-size:13px;margin-top:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-4{margin-left:-1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-5{font-size:13px;margin-top:1px;margin-left:-3px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item{top:50%;left:0;max-width:none;min-width:0;max-height:300px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i{left:50%;margin-left:-10px;margin-top:8px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-2{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-5{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{/*! autoprefixer: ignore next */overflow:hidden;/*! autoprefixer: ignore next */display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description{/*! autoprefixer: ignore next */overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description>span{white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery.thumbnails-gallery .gallery-item-container .info-element-custom-button-wrapper{display:none !important}/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2271 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/InfoElement.global.scss ***! | |
| 2272 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2273 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/Tooltip.global.scss ***! | |
| 2274 | + \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ :root{--tooltip-text-color: white;--tooltip-background-color: black;--tooltip-margin: 30px;--tooltip-arrow-size: 6px} .tooltip-wrapper{position:absolute;top:0;z-index:100;background-color:var(--tooltip-background-color);color:var(--tooltip-text-color);box-shadow:0px 0px 4px 0px rgba(0,0,0,.1);border:1px solid var(--tooltip-text-color)} .tooltip-body{padding:4px;font-size:14px;font-family:Helvetica} .tooltip-body::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:var(--tooltip-arrow-size);margin-left:calc(var(--tooltip-arrow-size)*-1)} .tooltip-body.arrow{top:calc(var(--tooltip-margin)*-1)} .tooltip-body.arrow::before{top:100%;border-top-color:var(--tooltip-background-color)}/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2275 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGalleryRenderIndicator.global.scss ***! | |
| 2276 | + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pg-render-indicator{position:absolute;bottom:15.5px;left:15.5px;border:1px solid #717171;padding:5px 10px 5px 5px;font-size:16px;z-index:2147483648;cursor:default;line-height:20px} .pg-render-indicator table{table-layout:fixed} .pg-render-indicator.rendered{background-color:#7fff00} .pg-render-indicator.not-rendered{background-color:red} .pg-render-indicator .log-column{max-height:450px;max-width:500px;overflow:auto;background-color:#fff} .pg-render-indicator .show-on-hover{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;top:-9999px;left:-9999px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important} .pg-render-indicator div.worker-log-text{word-wrap:break-word;max-width:500px;min-width:100px} .pg-render-indicator:hover{max-width:90%;max-height:90%} .pg-render-indicator:hover .show-on-hover{clip:auto !important;clip-path:none;display:block;height:auto;line-height:normal;text-decoration:none;width:auto;position:static} | |
| 2277 | + | |
| 2278 | + .pro-fullscreen-wrapper, .pro-fullscreen-wrapper-loading{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:100005} | |
| 2279 | + .pro-gallery-empty{top:0;left:0;height:100%;width:100%;background-color:hsla(0,0%,100%,.9)} .pro-gallery-empty .pro-gallery-empty-content{height:334px;width:100%;overflow:hidden} .pro-gallery-empty .pro-gallery-empty-image{margin:66px auto 35px;width:262px;height:132px;background-image:url(media/emptystate.85a4add5.svg);background-size:contain} .pro-gallery-empty .pro-gallery-empty-title{color:#4eb7f5;font-family:"HelveticaNeueW01-55Roma","HelveticaNeueW02-55Roma","HelveticaNeueW10-55Roma",sans-serif;font-size:20px;line-height:25px;text-align:center;margin-bottom:10px} .pro-gallery-empty .pro-gallery-empty-info{color:#4eb7f5;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:14px;line-height:20px;text-align:center} | |
| 2280 | +</style><style> | |
| 2281 | +.comp-m8omf94t div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content{background-color:#000000}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:rgba(0, 0, 0, 0.9);font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:1px;border-color:#000000;border-radius:0px}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:#000000;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:undefinedpx;border-color:#000000;border-radius:undefinedpx}.comp-m8omf94t .nav-arrows-container .slideshow-arrow,.comp-m8omf94t .nav-arrows-container .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .pro-gallery.inline-styles .auto-slideshow-counter{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:1px;border-radius:0px;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:1px;border-radius:0px}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0.3) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:undefinedpx;border-radius:undefinedpx;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:undefinedpx;border-radius:undefinedpx}.comp-m8omf94t .te-pro-gallery-text-item{font:normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FAFAFA}.comp-m8omf94t .pro-fullscreen-wrapper .pro-fullscreen-text-item{--fullscreen-text-item-bg: #000000;background-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1{--titleColorExpand: #000000;--titleFontExpand: normal normal normal 25px/1.3em montserrat-black,sans-serif;color:#000000;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{--descriptionColorExpand: #000000;border-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background{--bgColorExpand: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon{--descriptionColorExpand: #000000;--bgColorExpand: #FAFAFA;color:#000000;background:#FFFFFF} | |
| 2282 | +</style><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div id="gallery-wrapper-comp-m8omf94t" style="overflow:hidden;height:100%;width:100%"><style>div.comp-m8omf94t:not(.fullscreen-comp-wrapper) { | |
| 2283 | + height: 100%; | |
| 2284 | + width: 100%; | |
| 2285 | + position: relative; | |
| 2286 | + } | |
| 2287 | + div.comp-m8omf94t:not(.fullscreen-comp-wrapper) #gallery-wrapper-comp-m8omf94t { | |
| 2288 | + position: absolute; | |
| 2289 | + top: 0; | |
| 2290 | + left: 0; | |
| 2291 | + }</style><div id="pro-gallery-comp-m8omf94t" class="pro-gallery"><div data-key="pro-gallery-inner-container" class="pro-gallery-prerender" tabindex="-1"><div data-hook="css-scroll-indicator" data-scroll-base="0" data-scroll-top="0" class="pgscl-0 pgscl_m8omf94t_0-40960 pgscl_m8omf94t_0-20480 pgscl_m8omf94t_0-10240 pgscl_m8omf94t_0-5120 pgscl_m8omf94t_0-2560 pgscl_m8omf94t_0-1280 pgscl_m8omf94t_0-640 pgscl_m8omf94t_0-320 pgscl_m8omf94t_0-160 pgscl_m8omf94t_0-80 pgscl_m8omf94t_0-40 pgscl_m8omf94t_0-20 pgscl_m8omf94t_0-10" style="display:none"></div><div class="pro-gallery-parent-container gallery-thumbnails" style="margin:0;width:1450px;height:700px" role="region"><div id="pro-gallery-container-comp-m8omf94t" class="pro-gallery inline-styles one-row hide-scrollbars slider ltr " style="width:100%;height:700px;display:flex;justify-content:space-between"><div data-hook="gallery-column" id="gallery-horizontal-scroll-comp-m8omf94t" class="gallery-horizontal-scroll gallery-column hide-scrollbars ltr scroll-snap " style="width:100%;height:700px;overflow-y:visible"><div class="gallery-horizontal-scroll-inner"><div data-hook="group-view" style="--group-top:0px;--group-left:0px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="item-link-wrapper" data-idx="0" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_67fb272f886d47d98067de2c0f161e5fmv2jpeg_0" data-hash="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" data-id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" data-idx="0" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:0;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="false"><div data-idx="0" id="item-action-5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="item-action" tabindex="0" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_5760,h_3068,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_6778,h_3610,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="0" src="https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:1315px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="item-link-wrapper" data-idx="1" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2jpeg_1" data-hash="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" data-id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" data-idx="1" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:1315px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="1" id="item-action-5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="1" src="https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:2630px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="item-link-wrapper" data-idx="2" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_90fa4a970ffd48e2926422d17a39f112mv2jpeg_2" data-hash="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" data-id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" data-idx="2" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:2630px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="2" id="item-action-5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="2" src="https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:3945px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="item-link-wrapper" data-idx="3" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_87175195240f4c85b404e0f9fb4c4a86mv2jpeg_3" data-hash="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" data-id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" data-idx="3" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:3945px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="3" id="item-action-5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="3" src="https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:5260px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="item-link-wrapper" data-idx="4" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2jpeg_4" data-hash="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" data-id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" data-idx="4" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:5260px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="4" id="item-action-5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="4" src="https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:6575px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="item-link-wrapper" data-idx="5" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2jpeg_5" data-hash="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" data-id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" data-idx="5" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:6575px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="5" id="item-action-5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="5" src="https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:7890px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="item-link-wrapper" data-idx="6" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2jpeg_6" data-hash="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" data-id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" data-idx="6" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:7890px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="6" id="item-action-5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="6" src="https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:9205px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="item-link-wrapper" data-idx="7" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2jpeg_7" data-hash="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" data-id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" data-idx="7" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:9205px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="7" id="item-action-5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="7" src="https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:10520px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="item-link-wrapper" data-idx="8" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_322fbebb536842b6b7174a1048ec4fb2mv2jpeg_8" data-hash="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" data-id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" data-idx="8" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:10520px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="8" id="item-action-5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="8" src="https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:11835px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="item-link-wrapper" data-idx="9" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2jpeg_9" data-hash="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" data-id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" data-idx="9" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:11835px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="9" id="item-action-5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="9" src="https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:13150px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="item-link-wrapper" data-idx="10" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_5e12aca763c24657a866bfca37b3488dmv2jpeg_10" data-hash="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" data-id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" data-idx="10" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:13150px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="10" id="item-action-5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="10" src="https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:14465px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="item-link-wrapper" data-idx="11" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_2d830beea02249538f8f333ad5b95ea0mv2jpeg_11" data-hash="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" data-id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" data-idx="11" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:14465px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="11" id="item-action-5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="11" src="https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:15780px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="item-link-wrapper" data-idx="12" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_6ae037647e494f5d8ab0770afe26167amv2jpeg_12" data-hash="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" data-id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" data-idx="12" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:15780px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="12" id="item-action-5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="12" src="https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:17095px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="item-link-wrapper" data-idx="13" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2jpeg_13" data-hash="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" data-id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" data-idx="13" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:17095px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="13" id="item-action-5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="13" src="https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:18410px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="item-link-wrapper" data-idx="14" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_cb984c822b094ae68a8afdd737041f2emv2jpeg_14" data-hash="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" data-id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" data-idx="14" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:18410px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="14" id="item-action-5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="14" src="https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:19725px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="item-link-wrapper" data-idx="15" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_433e3892624740988fd0b5a44e38fd5amv2jpeg_15" data-hash="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" data-id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" data-idx="15" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:19725px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="15" id="item-action-5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="15" src="https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:21040px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="item-link-wrapper" data-idx="16" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_67fb272f886d47d98067de2c0f161e5fmv2jpeg_16" data-hash="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" data-id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" data-idx="16" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:21040px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="16" id="item-action-5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_5760,h_3068,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_6778,h_3610,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="16" src="https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:22355px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="item-link-wrapper" data-idx="17" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2jpeg_17" data-hash="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" data-id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" data-idx="17" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:22355px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="17" id="item-action-5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="17" src="https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:23670px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="item-link-wrapper" data-idx="18" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_90fa4a970ffd48e2926422d17a39f112mv2jpeg_18" data-hash="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" data-id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" data-idx="18" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:23670px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="18" id="item-action-5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="18" src="https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:24985px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="item-link-wrapper" data-idx="19" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_87175195240f4c85b404e0f9fb4c4a86mv2jpeg_19" data-hash="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" data-id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" data-idx="19" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:24985px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="19" id="item-action-5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="19" src="https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:26300px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="item-link-wrapper" data-idx="20" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2jpeg_20" data-hash="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" data-id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" data-idx="20" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:26300px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="20" id="item-action-5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="20" src="https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:27615px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="item-link-wrapper" data-idx="21" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2jpeg_21" data-hash="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" data-id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" data-idx="21" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:27615px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="21" id="item-action-5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="21" src="https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:28930px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="item-link-wrapper" data-idx="22" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2jpeg_22" data-hash="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" data-id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" data-idx="22" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:28930px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="22" id="item-action-5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="22" src="https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:30245px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="item-link-wrapper" data-idx="23" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2jpeg_23" data-hash="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" data-id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" data-idx="23" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:30245px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="23" id="item-action-5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="23" src="https://static.wixstatic.com/media/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:31560px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="item-link-wrapper" data-idx="24" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_322fbebb536842b6b7174a1048ec4fb2mv2jpeg_24" data-hash="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" data-id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" data-idx="24" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:31560px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="24" id="item-action-5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_322fbebb536842b6b7174a1048ec4fb2mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="24" src="https://static.wixstatic.com/media/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:32875px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="item-link-wrapper" data-idx="25" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2jpeg_25" data-hash="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" data-id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" data-idx="25" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:32875px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="25" id="item-action-5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_c393bea32809400aa5ee61cbaebf4bf2mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="25" src="https://static.wixstatic.com/media/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:34190px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="item-link-wrapper" data-idx="26" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_5e12aca763c24657a866bfca37b3488dmv2jpeg_26" data-hash="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" data-id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" data-idx="26" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:34190px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="26" id="item-action-5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_5e12aca763c24657a866bfca37b3488dmv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="26" src="https://static.wixstatic.com/media/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:35505px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="item-link-wrapper" data-idx="27" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_2d830beea02249538f8f333ad5b95ea0mv2jpeg_27" data-hash="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" data-id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" data-idx="27" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:35505px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="27" id="item-action-5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_2d830beea02249538f8f333ad5b95ea0mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="27" src="https://static.wixstatic.com/media/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:36820px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="item-link-wrapper" data-idx="28" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_6ae037647e494f5d8ab0770afe26167amv2jpeg_28" data-hash="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" data-id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" data-idx="28" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:36820px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="28" id="item-action-5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_6ae037647e494f5d8ab0770afe26167amv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="28" src="https://static.wixstatic.com/media/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:38135px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="item-link-wrapper" data-idx="29" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2jpeg_29" data-hash="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" data-id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" data-idx="29" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:38135px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="29" id="item-action-5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_3ab8b29eda5d472da0c0e47ceef1e759mv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="29" src="https://static.wixstatic.com/media/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:39450px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="item-link-wrapper" data-idx="30" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_cb984c822b094ae68a8afdd737041f2emv2jpeg_30" data-hash="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" data-id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" data-idx="30" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:39450px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="30" id="item-action-5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_cb984c822b094ae68a8afdd737041f2emv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="30" src="https://static.wixstatic.com/media/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:40765px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="item-link-wrapper" data-idx="31" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_433e3892624740988fd0b5a44e38fd5amv2jpeg_31" data-hash="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" data-id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" data-idx="31" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:40765px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="31" id="item-action-5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 1x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 2x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 3x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 4x, https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg 5x" type="image/jpeg"/><img id="5ae170_433e3892624740988fd0b5a44e38fd5amv2.jpeg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="31" src="https://static.wixstatic.com/media/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div></div></div></div><div class="pro-gallery inline-styles thumbnails-gallery ltr " style="width:130px;height:700px;margin-left:5px;margin-right:0" data-hook="gallery-thumbnails"><div data-hook="gallery-thumbnails-column" class="galleryColumn" style="overflow:visible;width:130px;height:700px;top:0"><div class="thumbnailItem pro-gallery-highlight" data-key="5ae170_67fb272f886d47d98067de2c0f161e5fmv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg);top:0"></div><div class="thumbnailItem" data-key="5ae170_78b627ba3c814ddb92ef6bfb9091c5b3mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg);top:130px"></div><div class="thumbnailItem" data-key="5ae170_90fa4a970ffd48e2926422d17a39f112mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg);top:260px"></div><div class="thumbnailItem" data-key="5ae170_87175195240f4c85b404e0f9fb4c4a86mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg);top:390px"></div><div class="thumbnailItem" data-key="5ae170_d0f0c1dfb60f43b4b53cf7248c522798mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg);top:520px"></div><div class="thumbnailItem" data-key="5ae170_f8d82508042146fcb999dbbe2f6bbb66mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg);top:650px"></div><div class="thumbnailItem" data-key="5ae170_6af7c73ac47b49faa65efd00fa0bb031mv2.jpeg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg);top:780px"></div></div></div></div><div data-key="items-styles" style="display:none"><style>#pro-gallery-comp-m8omf94t .gallery-item-container, #pro-gallery-comp-m8omf94t .thumbnails-gallery { opacity: 0 }</style></div></div></div><div id="layout-fixer-comp-m8omf94ttrue" style="display:none"><link href="" rel="stylesheet" id="layout-fixer-style-comp-m8omf94t"/><script>try { | |
| 2292 | + window.requestAnimationFrame(function() { | |
| 2293 | + setTimeout(() => { | |
| 2294 | + | |
| 2295 | + | |
| 2296 | + var ele = document.getElementById('pro-gallery-comp-m8omf94t'); | |
| 2297 | + var pgMeasures = ele.getBoundingClientRect(); | |
| 2298 | + var options = (() => "layoutParams_cropRatio:100%/100%|layoutParams_structure_galleryRatio_value:0|layoutParams_repeatingGroupTypes:|layoutParams_gallerySpacing:0|groupTypes:1|numberOfImagesPerRow:4|collageAmount:0.8|textsVerticalPadding:0|textsHorizontalPadding:0|calculateTextBoxHeightMode:MANUAL|targetItemSize:50|cubeRatio:100%/100%|externalInfoHeight:0|externalInfoWidth:0|isRTL:false|isVertical:false|minItemSize:120|groupSize:1|chooseBestGroup:true|cubeImages:true|cubeType:fill|smartCrop:false|collageDensity:1|imageMargin:0|hasThumbnails:true|galleryThumbnailsAlignment:right|gridStyle:1|titlePlacement:SHOW_ON_HOVER|arrowsSize:50|slideshowInfoSize:120|imageInfoType:NO_BACKGROUND|textBoxHeight:0|scrollDirection:1|galleryLayout:3|gallerySizeType:smart|gallerySize:50|cropOnlyFill:false|numberOfImagesPerCol:1|groupsPerStrip:0|scatter:0|enableInfiniteScroll:true|thumbnailSpacings:5|arrowsPosition:0|thumbnailSize:120|calculateTextBoxWidthMode:PERCENT|textBoxWidthPercent:50|useMaxDimensions:false|rotatingGroupTypes:|fixedColumns:0|rotatingCropRatios:|gallerySizePx:0|placeGroupsLtr:false")(ele); | |
| 2299 | + var width = pgMeasures.width; | |
| 2300 | + var height = pgMeasures.height; | |
| 2301 | + | |
| 2302 | + var isIOS = /iPad|iPhone|iPod/.test(navigator?.userAgent); | |
| 2303 | + if(isIOS) { | |
| 2304 | + width = width; | |
| 2305 | + width = width; | |
| 2306 | + height = height; | |
| 2307 | + height = height; | |
| 2308 | + } else { | |
| 2309 | + width = width; | |
| 2310 | + width = width; | |
| 2311 | + height = height; | |
| 2312 | + height = height; | |
| 2313 | + } | |
| 2314 | + | |
| 2315 | + pgMeasures = { top: pgMeasures.top, width, height }; | |
| 2316 | + | |
| 2317 | + var isVertical = options.includes('layoutParams_structure_scrollDirection:"VERTICAL"'); | |
| 2318 | + var layoutFixerUrl = '/_serverless/pro-gallery-css-v4-server/layoutCss?ver=2&id=comp-m8omf94t&items=3586_4284_5712|3711_3024_4032|3517_3024_4032|3476_3024_4032|3608_3024_4032|3670_3024_4032|3785_3024_4032|3761_3024_4032|3598_3024_4032|3782_3024_4032|3614_3024_4032|3605_3024_4032|3569_3024_4032|3802_3024_4032|3664_3024_4032|3480_3024_4032|3586_4284_5712|3711_3024_4032|3517_3024_4032|3476_3024_4032&container=' + pgMeasures.top + '_' + pgMeasures.width + '_' + pgMeasures.height + '_' + window.innerHeight + '&options=' + options; | |
| 2319 | + document.getElementById('layout-fixer-style-comp-m8omf94t').setAttribute('href', encodeURI(layoutFixerUrl)); | |
| 2320 | + | |
| 2321 | + }, 0); | |
| 2322 | + }); | |
| 2323 | + } catch (e) { | |
| 2324 | + console.warn('Cannot set layoutFixer css', e); | |
| 2325 | + }</script></div></div></div></div></div></div></div></div></div></div><div id="comp-m8omdbey11" role="" class="HFEOE3 NaeT1r comp-m8omdbey11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbey11-container"><div id="comp-m8omdbez" class="N8MGzv _v6ohL PO9MfV comp-m8omdbez wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">Beau 5 ½ style condo avec entrée indépendante – St-Charles-Borromée</p> | |
| 2326 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2327 | +<p class="font_8 wixui-rich-text__text">Ce grand 5 ½ de style condo offre un cadre de vie lumineux, confortable et pratique.</p> | |
| 2328 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2329 | +<p class="font_8 wixui-rich-text__text">642 boul. assomption ouest, Saint-Charles-Borromée</p> | |
| 2330 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2331 | +<p class="font_8 wixui-rich-text__text">Disponible le 1er septembre 2025 </p> | |
| 2332 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2333 | +<p class="font_8 wixui-rich-text__text">À proximité immédiate de l’hôpital, des écoles, des supermarchés et des parcs, l’emplacement est idéal pour les familles ou les professionnels.</p> | |
| 2334 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2335 | +<p class="font_8 wixui-rich-text__text">Vous profiterez d’une grande fenestration laissant entrer une abondance de lumière naturelle, ainsi que d’un balcon intime pour vos moments de détente.</p> | |
| 2336 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2337 | +<p class="font_8 wixui-rich-text__text">Caractéristiques du logement :</p> | |
| 2338 | +<p class="font_8 wixui-rich-text__text"> • 1 stationnement extérieur déneigé</p> | |
| 2339 | +<p class="font_8 wixui-rich-text__text"> • Entrée laveuse-sécheuse dans la salle de bain</p> | |
| 2340 | +<p class="font_8 wixui-rich-text__text"> • Air climatisé mural</p> | |
| 2341 | +<p class="font_8 wixui-rich-text__text"> • Échangeur d’air</p> | |
| 2342 | +<p class="font_8 wixui-rich-text__text"> • Beaucoup d’espace de rangement</p> | |
| 2343 | +<p class="font_8 wixui-rich-text__text"> • Entrée indépendante</p> | |
| 2344 | +<p class="font_8 wixui-rich-text__text"> • Non-fumeur</p> | |
| 2345 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2346 | +<p class="font_8 wixui-rich-text__text">Possibilité d'ajouter un garage à votre location</p> | |
| 2347 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2348 | +<p class="font_8 wixui-rich-text__text">1600$/mois</p> | |
| 2349 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2350 | +<p class="font_8 wixui-rich-text__text">Chats acceptés</p> | |
| 2351 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2352 | +<p class="font_8 wixui-rich-text__text">Enquête de crédit obligatoire.</p> | |
| 2353 | +<p class="font_8 wixui-rich-text__text"><br class="wixui-rich-text__text"></p> | |
| 2354 | +<p class="font_8 wixui-rich-text__text">450-499-7978</p> | |
| 2355 | +<p class="font_8 wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@leshabitationssf.com" class="wixui-rich-text__text">info@leshabitationssf.com</a></p></div></div></div><div id="comp-m8omdbf0" role="" class="HFEOE3 NaeT1r comp-m8omdbf0 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf0-container"><div id="comp-m8omdbf1" role="" class="HFEOE3 NaeT1r comp-m8omdbf1-container comp-m8omdbf1 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf2" role="" class="HFEOE3 NaeT1r comp-m8omdbf2-container comp-m8omdbf2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf211" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf211 wixui-rich-text N5mCVp" data-testid="richTextElement"><h6 class="font_6 wixui-rich-text__text"><span class="wixui-rich-text__text">Disponible</span></h6></div></div><div id="comp-m8omdbf39" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf39 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">APPARTEMENT</span></p></div><div id="comp-m8omdbf415" role="" class="HFEOE3 NaeT1r comp-m8omdbf415 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf415-container"><div id="comp-m8omdbf510" class="comp-m8omdbf510 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf510" class="iL7Pq5 gx51wo"> | |
| 2356 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="20 45 160 110" viewBox="20 45 160 110" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omdbf510 svg [data-color="1"] {fill: #000000;}</style></defs> | |
| 2357 | + <g> | |
| 2358 | + <path d="M33.968 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395.001 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2359 | + <path d="M166.032 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07 0 2.118-1.705 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2360 | + <path d="M155.873 52.674H44.127c-2.104 0-3.81-1.718-3.81-3.837S42.022 45 44.127 45h111.746c2.104 0 3.81 1.718 3.81 3.837 0 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2361 | + <path d="M33.968 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2362 | + <path d="M166.032 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2363 | + <path d="M166.032 103.837H33.968c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h132.064c2.104 0 3.81 1.718 3.81 3.837s-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2364 | + <path d="M23.81 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c-.001 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2365 | + <path d="M176.19 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c0 2.12-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2366 | + <path d="M23.81 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395 0 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2367 | + <path d="M176.19 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07.001 2.118-1.704 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2368 | + <path d="M176.19 144.767H23.81c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h152.38c2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2369 | + <path d="M33.968 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v10.233c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2370 | + <path d="M166.032 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837v10.233c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2371 | + <path d="M51.746 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2372 | + <path d="M92.381 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2373 | + <path d="M92.381 73.14H51.746c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2374 | + <path d="M107.619 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2375 | + <path d="M148.254 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2376 | + <path d="M148.254 73.14h-40.635c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2377 | + </g> | |
| 2378 | +</svg> | |
| 2379 | +</div></div><div id="comp-m8omdbf61" role="" class="HFEOE3 NaeT1r comp-m8omdbf61-container comp-m8omdbf61 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf68" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf68 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">3</span></p></div><div id="comp-m8omdbf711" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf711 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Chambre(s)</span></p></div></div></div></div><div id="comp-m8omdbf82" role="" class="HFEOE3 NaeT1r comp-m8omdbf82 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf82-container"><div id="comp-m8omdbf813" class="comp-m8omdbf813 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf813" class="iL7Pq5 gx51wo"><svg preserveAspectRatio="xMidYMid meet" data-bbox="21 36.054 160 127.946" xmlns="http://www.w3.org/2000/svg" viewBox="21 36.054 160 127.946" height="200" width="200" data-type="tint" role="presentation" aria-hidden="true" aria-label=""> | |
| 2380 | + <g> | |
| 2381 | + <path d="M30.796 91.95V65.162c0-8.036 3.116-15.34 8.199-20.755 5.477-5.835 13.237-8.132 21.842-8.132h9.143v.372a27.803 27.803 0 0 1 28.808 11.735l2.733 4.065-45.975 31.107-2.749-4.088c-6.886-10.241-6.112-23.402 1.012-32.643-2.898.706-5.522 2.018-7.682 4.319a20.385 20.385 0 0 0-5.535 14.02V91.95H181v40.938c0 13.565-10.964 24.562-24.49 24.562h-1.632V164h-9.796v-6.55H56.918V164h-9.796v-6.55H45.49c-13.526 0-24.49-10.997-24.49-24.563V91.95h9.796zm0 9.825v31.112c0 8.14 6.579 14.738 14.694 14.738h111.02c8.115 0 14.694-6.598 14.694-14.737v-31.113H30.796zm34.936-52.838c-6.81 4.608-9.457 13.107-6.994 20.595L87.37 50.158c-5.99-5.103-14.829-5.83-21.639-1.221z" fill="#111111" fill-rule="evenodd"></path> | |
| 2382 | + </g> | |
| 2383 | +</svg> | |
| 2384 | +</div></div><div id="comp-m8omdbf97" role="" class="HFEOE3 NaeT1r comp-m8omdbf97-container comp-m8omdbf97 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf916" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf916 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1</span></p></div><div id="comp-m8omdbfa13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfa13 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Salle(s) de bain</span></p></div></div></div></div><div id="comp-m8omdbfb14" role="" class="HFEOE3 NaeT1r comp-m8omdbfb14 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbfb14-container"><div id="comp-m8omdbfc3" role="" class="HFEOE3 NaeT1r comp-m8omdbfc3-container comp-m8omdbfc3 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfc10" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfc10 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><span class="wixGuard">​</span></span></p></div><div id="comp-m8omdbfd11" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfd11 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Pieds²</span></p></div></div></div></div><div id="comp-m8omdbfe" role="" class="HFEOE3 NaeT1r comp-m8omdbfe-container comp-m8omdbfe wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfe11" role="" class="HFEOE3 NaeT1r comp-m8omdbfe11-container comp-m8omdbfe11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbff" class="N8MGzv _v6ohL PO9MfV comp-m8omdbff wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1600</span></p></div><div id="comp-m8ooawu0" class="N8MGzv _v6ohL PO9MfV comp-m8ooawu0 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">$</span></p></div><div id="comp-m8omdbfg7" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfg7 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oobbzb" class="N8MGzv _v6ohL PO9MfV comp-m8oobbzb wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">MOIS</span></p></div></div></div></div></div></div><div id="comp-m8oqa661" role="" class="HFEOE3 NaeT1r comp-m8oqa661 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqa661-container"><div id="comp-m8oqbc3l" class="DDi8v8 comp-m8oqbc3l wixui-google-map"></div></div></div></div></section></main><footer id="comp-m8omcigd2" class="comp-m8omcigd2 S829f_ comp-m8omcigd2-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcigd2_r_comp-kbgakgyt" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omcigd2_r_comp-kbgakgyt wixui-footer fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcigd2_r_comp-kbgakgyt" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcigd2_r_comp-kbgakgyt" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcigd2_r_comp-kbgakgyt" data-motion-part="BG_MEDIA comp-m8omcigd2_r_comp-kbgakgyt" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-kbgakgyt-container max-width-container"><div id="comp-m8omcigd2_r_comp-m2y11976" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y11976 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-m2y11976-container"><div id="comp-m8omcigd2_r_comp-m2y12dql" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y12dql wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Tél : 450.499.7978</span></p> | |
| 2385 | + | |
| 2386 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2387 | + | |
| 2388 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2389 | + | |
| 2390 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">E-mail:</span></p> | |
| 2391 | + | |
| 2392 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@sfhabitations.com" class="wixui-rich-text__text">info@sfhabitations.com</a></span></p> | |
| 2393 | + | |
| 2394 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2395 | + | |
| 2396 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2397 | + | |
| 2398 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Secteur de Lanaudière, Laurentides, Montréal</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1gxle" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y1gxle-container comp-m8omcigd2_r_comp-m2y1gxle wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m2y1gkmp" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y1gkmp wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">S'ABONNER</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1awex" class="QrIus comp-m8omcigd2_r_comp-m2y1awex"><div class="comp-m8omcigd2_r_comp-m2y1awex"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div style="--index2490108247-shadowXOffset:0px;--index2490108247-shadowYOffset:0px;overflow:visible;--wix-forms-formHeaderTwoFont-size:var(--wix-forms-formHeaderTwoFontH2-size);--wix-forms-formHeaderTwoFont-family:var(--wix-forms-formHeaderTwoFontH2-family)" class="sN4uTVR" data-hook="Form-wrapper"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div><form aria-label="Abonnement" id="form-39743f17-3b77-49be-b37c-a7284b6479cc" data-hook="form-39743f17-3b77-49be-b37c-a7284b6479cc" class=""><fieldset class="kLNiUo"><div data-hook="form-root"><div class="ckHV4G" dir=""><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 2;grid-column:1 / span 12" data-hook="form-field-9c5d853d-7654-4b58-5574-bf0262076a35" data-field-type="HEADER"><div class="ElBhne" data-hook="ricos-viewer"><div class="zrLtk" dir="ltr" style="--ricos-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-text-color-tuple:var(--wix-forms-formParagraphColor);--ricos-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-background-color-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-fallback-color:rgb(0, 0, 0);--ricos-fallback-color-tuple:0, 0, 0;--ricos-settings-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-settings-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-focus-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-focus-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-action-color-fallback:rgb(0, 0, 0);--ricos-action-color-fallback-tuple:0, 0, 0;--ricos-theme-color-1:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-theme-color-1-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-theme-color-2:rgb(var(--wix-forms-formParagraphColor));--ricos-theme-color-2-tuple:var(--wix-forms-formParagraphColor);--ricos-theme-color-3:rgb(var(--wix-forms-formLinkColor));--ricos-theme-color-3-tuple:var(--wix-forms-formLinkColor);--ricos-custom-button-background-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-button-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-secondary-button-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-link-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-audio-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-audio-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-action-text-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-file-icon-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-table-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-vertical-embed-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-ribbon-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-link-preview-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-link-preview-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-line-height:1.5;--ricos-custom-toc-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-toc-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-divider-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-quote-line-height:1.5;--ricos-custom-quote-font-size:18px;--ricos-custom-smart-block-label-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-p-font-weight:normal;--ricos-custom-p-font-style:normal;--ricos-custom-p-line-height:1.5;--ricos-custom-p-font-size:var(--wix-forms-formParagraphFont-size, 16px);--ricos-custom-p-font-family:var(--wix-forms-formParagraphFont-family);--ricos-custom-p-color:rgb(var(--wix-forms-formParagraphColor, 0,0,0));--ricos-custom-h1-font-weight:normal;--ricos-custom-h1-font-style:normal;--ricos-custom-h1-line-height:1.5;--ricos-custom-h1-font-size:var(--wix-forms-formHeaderOneFont-size, 50px);--ricos-custom-h1-font-family:var(--wix-forms-formHeaderOneFont-family);--ricos-custom-h1-color:rgb(var(--wix-forms-formHeaderOneColor, 0,0,0));--ricos-custom-h2-font-weight:normal;--ricos-custom-h2-font-style:normal;--ricos-custom-h2-line-height:1.5;--ricos-custom-h2-font-size:var(--wix-forms-formHeaderTwoFont-size, 42px);--ricos-custom-h2-font-family:var(--wix-forms-formHeaderTwoFont-family);--ricos-custom-h2-color:rgb(var(--wix-forms-formHeaderTwoColor, 0,0,0));--ricos-custom-h3-font-weight:normal;--ricos-custom-h3-font-style:normal;--ricos-custom-h3-line-height:1.5;--ricos-custom-h3-font-size:var(--wix-forms-formHeaderThreeFont-size, 38px);--ricos-custom-h3-font-family:var(--wix-forms-formHeaderThreeFont-family);--ricos-custom-h3-color:rgb(var(--wix-forms-formHeaderThreeColor, 0,0,0));--ricos-custom-h4-font-weight:normal;--ricos-custom-h4-font-style:normal;--ricos-custom-h4-line-height:1.5;--ricos-custom-h4-font-size:var(--wix-forms-formHeaderFourFont-size, 34px);--ricos-custom-h4-font-family:var(--wix-forms-formHeaderFourFont-family);--ricos-custom-h4-color:rgb(var(--wix-forms-formHeaderFourColor, 0,0,0));--ricos-custom-h5-font-weight:normal;--ricos-custom-h5-font-style:normal;--ricos-custom-h5-line-height:1.5;--ricos-custom-h5-font-size:var(--wix-forms-formHeaderFiveFont-size, 28px);--ricos-custom-h5-font-family:var(--wix-forms-formHeaderFiveFont-family);--ricos-custom-h5-color:rgb(var(--wix-forms-formHeaderFiveColor, 0,0,0));--ricos-custom-h6-font-weight:normal;--ricos-custom-h6-font-style:normal;--ricos-custom-h6-line-height:1.5;--ricos-custom-h6-font-size:var(--wix-forms-formHeaderSixFont-size, 22px);--ricos-custom-h6-font-family:var(--wix-forms-formHeaderSixFont-family);--ricos-custom-h6-color:rgb(var(--wix-forms-formHeaderSixColor, 0,0,0));--ricos-breakout-normal-padding-start:0;--ricos-breakout-normal-padding-end:0;--ricos-breakout-full-width-padding-start:0;--ricos-breakout-full-width-padding-end:0" data-id="content-viewer"><div class="tlZw8"><div class="_7UvJA"><h1 class="JLkq2 LI-hR _0uG9a _41BxQ" dir="auto" id="viewer-cuu0z29" tabindex="-1"><span aria-hidden="true" id="abonnez-vous-aux-nouvelles-cuu0z29"></span><span class="_7sCfP"><span>Abonnez-vous aux nouvelles</span></span></h1></div></div></div></div></div></div></div><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 1;grid-column:1 / span 8;display:flex;align-items:flex-end"><label id="form-field-label-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" for="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" class="shszO9W sdcwRYb">E-mail<span aria-hidden="true" class="sHbjjkq">*</span></label></div><div style="grid-row:2 / span 1;grid-column:1 / span 8" data-hook="form-field-email_443e" data-field-type="CONTACTS_EMAIL"><div data-hook="text-field-root" class="sigpKjl oYEaGDN---theme-3-box oYEaGDN--newErrorMessage snZ_6f6 sL5d0Ld"><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__8YVWUI"><div class="s__72lfJk smyXERm oYEaGDN---theme-3-box" data-theme="box" data-success="false" data-error="false" data-empty-state="true"><input id="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" data-theme="box" data-success="false" data-error="false" data-empty-state="true" aria-invalid="false" required="" aria-label="E-mail" type="email" class="sjImZoO has-custom-focus" value=""/></div></div></div><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__0oqQvY" data-hook="field-error-email_443e"></div></div><div style="grid-row:1 / span 1;grid-column:9 / span 4;display:flex;align-items:flex-end"></div><div style="grid-row:2 / span 1;grid-column:9 / span 4" data-hook="form-field-d5df37db-369b-4f3c-f561-579e39eeee46" data-field-type="SUBMIT_BUTTON"><div class=""><button data-fullwidth="false" data-mobile="false" data-hook="submit-button" style="--wix-ui-tpa-button-font-size-default:16px;--wix-ui-tpa-button-line-height-default:1.5em" aria-live="assertive" type="button" class="s__3DOwO7 sFTe_V3 sWHTiwe ojChOw_---paddingMode-16-explicitPaddings ojChOw_--wrapContent ojChOw_---hoverStyle-9-underline spPayPE ohrgDww--upgrade sgKo7D0 sasFW9G" data-focusable-focus="false" data-focusable-focus-visible="false" tabindex="0" aria-disabled="false"><span class="sezcxt9 sewooAr">S'ABONNER</span></button></div></div></div></div></div><div role="region" aria-live="polite"><div style="transition:opacity 350ms ease-in-out;opacity:0"></div></div></div></fieldset></form></div></div></div></div></div></div></div><div id="comp-m8omcigd2_r_comp-m8j7owsd" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m8j7owsd-container comp-m8omcigd2_r_comp-m8j7owsd wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m8j7o6oq" class="comp-m8omcigd2_r_comp-m8j7o6oq wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcigd2_r_comp-m8j7o6oq" class="iL7Pq5 gx51wo"> | |
| 2399 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""> | |
| 2400 | + <g> | |
| 2401 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 2402 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 2403 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 2404 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 2405 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 2406 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 2407 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 2408 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 2409 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 2410 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 2411 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 2412 | + </g> | |
| 2413 | +</svg> | |
| 2414 | +</div></a></div><nav id="comp-m8omcigd2_r_comp-m2y10ib8" aria-label="Site" class="d2V6sy comp-m8omcigd2_r_comp-m2y10ib8 wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcigd2_r_comp-mbweuill"></div></div></div></div><div id="comp-m8omcigd2_r_comp-kd5pdf7t" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-kd5pdf7t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text"><span class="wixui-rich-text__text">© S&F Gestion. Par <span style="font-weight:bold;" class="wixui-rich-text__text"><a href="https://www.justsimpleweb.com/" target="_blank" rel="noreferrer noopener" class="wixui-rich-text__text">Just Simple Web.</a></span></span></p></div></div></section></footer><div id="comp-m8omcih716-pinned-layer" class="comp-m8omcih716-pinned-layer QED8q1"><div id="comp-m8omcih716" class="comp-m8omcih716 S829f_ comp-m8omcih716-container" slots="[object Object]" wix="[object Object]"><div id="comp-m8omcih716_r_comp-kd5px9hr" class="vO4l6e"><div id="overlay-comp-m8omcih716_r_comp-kd5px9hr" class="KyTZlx"></div><div id="container-comp-m8omcih716_r_comp-kd5px9hr" class="V1WvhC" data-block-level-container="MenuContainer"><div class="qINwWP"></div><div id="inlineContentParent-comp-m8omcih716_r_comp-kd5px9hr" class="dz6k8U"><div class="comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper dz6k8U wixui-mobile-menu ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="dialog" aria-label="Site navigation" class="comp-m8omcih716_r_comp-kd5px9hr-container"><nav id="comp-m8omcih716_r_comp-kd5px9kk" aria-label="Site" class="d2V6sy comp-m8omcih716_r_comp-kd5px9kk wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><button id="comp-m8omcih716_r_comp-kkmqi5tc" class="comp-m8omcih716_r_comp-kkmqi5tc wixui-vector-image"><div data-testid="svgRoot-comp-m8omcih716_r_comp-kkmqi5tc" class="iL7Pq5 gx51wo LXgYyC"> | |
| 2415 | +<svg preserveAspectRatio="none" data-bbox="65.35 65.35 69.3 69.3" viewBox="65.35 65.35 69.3 69.3" xmlns="http://www.w3.org/2000/svg" data-type="shape" role="img" aria-label="Close Site Navigation"> | |
| 2416 | + <g> | |
| 2417 | + <path d="M134.65 128.99L105.66 100l28.99-28.99-5.66-5.66L100 94.34 71.01 65.35l-5.66 5.66L94.34 100l-28.99 28.99 5.66 5.66L100 105.66l28.99 28.99 5.66-5.66z"></path> | |
| 2418 | + </g> | |
| 2419 | +</svg> | |
| 2420 | +</div></button></div></div></div></div></div></div></div><div id="comp-m8omcih82-pinned-layer" class="comp-m8omcih82-pinned-layer QED8q1"><div id="comp-m8omcih82" style="display:none"></div></div><div id="comp-m8oopad5-pinned-layer" class="comp-m8oopad5-pinned-layer QED8q1"><div id="comp-m8oopad5" style="display:none"></div></div><div id="comp-mfl8zvjs-pinned-layer" class="comp-mfl8zvjs-pinned-layer QED8q1"><div id="comp-mfl8zvjs" style="display:none"></div></div></div></div></div></div></div><div id="comp-m9cxxt3r-pinned-layer" class="comp-m9cxxt3r-pinned-layer QED8q1"><div id="comp-m9cxxt3r" class="comp-m9cxxt3r S829f_ comp-m9cxxt3r-container" slots="[object Object]" wix="[object Object]"><div id="comp-m9cxxt3r_r_comp-m9cxxr9c" class="chBh7 comp-m9cxxt3r_r_comp-m9cxxr9c mqeQ0"><iframe class="UkML6" title="Wix Chat" aria-label="Wix Chat" scrolling="no" allowfullscreen="" allowtransparency="true" allowvr="true" frameBorder="0" allow="clipboard-write;autoplay;camera;microphone;geolocation;vr"></iframe></div></div></div></div></div><div id="SCROLL_TO_BOTTOM" class="qe3oTb ignore-focus SCROLL_TO_BOTTOM" role="region" tabindex="-1" aria-label="bottom of page"><span class="TvbeET">bottom of page</span></div></div></div> | |
| 2421 | + | |
| 2422 | +<script id="wix-skip-played-animations"> | |
| 2423 | + window.__pageRevealPromise && window.__pageRevealPromise.then(function() { | |
| 2424 | + requestAnimationFrame(function() { | |
| 2425 | + try { | |
| 2426 | + var stored = sessionStorage.getItem('wix-motion-played-animations'); | |
| 2427 | + if (stored) { | |
| 2428 | + var played = JSON.parse(stored); | |
| 2429 | + for (var compId in played) { | |
| 2430 | + if (played[compId]) { | |
| 2431 | + var el = document.getElementById(compId); | |
| 2432 | + if (el) { | |
| 2433 | + el.dataset.motionEnter = 'done'; | |
| 2434 | + } | |
| 2435 | + } | |
| 2436 | + } | |
| 2437 | + } | |
| 2438 | + } catch (e) {} | |
| 2439 | + }); | |
| 2440 | + }); | |
| 2441 | +</script> | |
| 2442 | + | |
| 2443 | + <script type="application/json" id="wix-fedops">{"data":{"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"0025592c-9487-40e4-b216-c53e00f1c467","isSEO":false,"appNameForBiEvents":"wix-studio"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":true},"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"Rollout","code":1},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","isInSEO":false,"platformOnSite":true}}</script> | |
| 2444 | + <script>window.fedops = JSON.parse(document.getElementById('wix-fedops').textContent)</script> | |
| 2445 | + | |
| 2446 | + | |
| 2447 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js">(()=>{"use strict";var e={},r={};function t(i){var n=r[i];if(void 0!==n)return n.exports;var o=r[i]={exports:{}};return e[i](o,o.exports,t),o.exports}t.rv=()=>"1.6.8",t.ruid="bundler=rspack@1.6.8";let i="unknown",n=e=>{let r,t,n=(r=e.cache,t=e.varnish,`${r||i},${t||i}`);return{caching:n,isCached:n.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}};function o(){return"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let r=16*Math.random()|0;return("x"===e?r:3&r|8).toString(16)})}let a=/Mobile|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i,s=/iPhone|iPad|iPod/i,c=e=>!!e&&s.test(e);!function(){var e;let r,{site:t,rollout:s,fleetConfig:d,requestUrl:l,isInSEO:p,shouldReportErrorOnlyInPanorama:u}=window.fedops.data,m=(e=>{let{userAgent:r}=e.navigator;return/instagram.+google\/google/i.test(r)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(r)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:r}=window;if(!e||!r)return"document";let{webdriver:t,userAgent:i,plugins:n,languages:o}=r;if(t)return"webdriver";if(!n||Array.isArray(n))return"plugins";if(Object.getOwnPropertyDescriptor(n,"0")?.writable)return"plugins-extra";if(!i)return"userAgent";if(i.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!o||0===o.length||!Object.isFrozen(o))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:r}=e;if(r&&/ (\(internal\/)|(\(?file:\/)/.test(r))return"stack"}}return""})()||(p?"seo":""),w=!!m,{isCached:h,caching:f,microPop:g}=((e,r)=>{let t,o=(e=>{let r;try{r=e()}catch{r=[]}let t=r.reduce((e,r)=>(e[r.name]=r.description,e),{});return{cache:t.cache,varnish:t.varnish,microPop:t.dc}})(r);if(o.cache||o.varnish)return n({cache:o.cache||i,varnish:o.varnish||i,microPop:o.microPop});let a=(t=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&t.length?{cache:t[1],varnish:t[2]||i,microPop:t[3]}:null;return a?n(a):{caching:i,isCached:!1}})(document.cookie,()=>performance.getEntriesByType("navigation")[0].serverTiming||[]),v={WixSite:1,UGC:2,Template:3}[t.siteType]||0,x=t.appNameForBiEvents,{isDACRollout:y,siteAssetsVersionsRollout:S}=s,I=+!!y,$=+!!S,b=0===d.code||1===d.code?d.code:null,_=2===d.code,P=Date.now()-window.initialTimestamps.initialTimestamp,O=Math.round(performance.now()-(()=>{try{let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e.activationStart??0}catch{}return 0})()),{visibilityState:T}=document,{fedops:R,addEventListener:k,thunderboltVersion:A}=window;R.apps=R.apps||{},R.apps[x]={startLoadTime:O},R.sessionId=t.sessionId,R.vsi=o(),R.is_cached=h,R.phaseStarted=C(28),R.phaseEnded=C(22),performance.mark("[cache] "+f+(g?" ["+g+"]":"")),R.reportError=(e,r="load")=>{let t=e?.reason||e?.message;t?(u||N(26,`&errorInfo=${t}&errorType=${r}`),E({error:{name:r,message:t,stack:e?.stack}})):e.preventDefault()},k("error",R.reportError),k("unhandledrejection",R.reportError);let M=!1;function N(e,r=""){if(l.includes("suppressbi=true"))return;var i="//frog.wix.com/bolt-performance?src=72&evid="+e+"&appName="+x+"&is_rollout="+b+"&is_company_network="+_+"&is_sav_rollout="+$+"&is_dac_rollout="+I+"&dc="+t.dc+(g?"µPop="+g:"")+"&is_cached="+h+"&msid="+t.metaSiteId+"&session_id="+window.fedops.sessionId+"&ish="+w+"&isb="+w+(w?"&isbr="+m:"")+"&vsi="+window.fedops.vsi+"&caching="+f+(M?",browser_cache":"")+"&pv="+T+"&pn=1&v="+A+"&url="+encodeURIComponent(l)+"&client_url="+encodeURIComponent(window.location.href)+"&st="+v+`&ts=${P}&tsn=${O}`+r;let n=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{n=navigator.sendBeacon(i)}catch{}n||(new Image().src=i)}function E({transaction:e,error:r}){let i=[{fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",componentId:`${"Studio"===window.fedops.data.site.editorName?"wix-studio":`thunderbolt${window.fedops.data.site.isResponsive?"-responsive":""}`}`,platform:"viewer",msid:window.fedops.data.site.metaSiteId,sessionId:window.fedops.vsi,sessionTime:Date.now()-window.initialTimestamps.initialTimestamp,logLevel:r?"ERROR":"INFO",message:r?.message??(e?.name&&`${e.name} START`),errorName:r?.name,errorStack:r?.stack,transactionName:e?.name,transactionAction:e&&"START",isSsr:!1,dataCenter:t.dc,isCached:!!h,isRollout:!!b,isHeadless:!!w,isDacRollout:!!I,isSavRollout:!!$,isCompanyNetwork:!!_}];try{let e=JSON.stringify({messages:i});return navigator.sendBeacon("https://panorama.wixapps.net/api/v1/bulklog",e)}catch(e){console.error(e)}}function C(e){return(r,t)=>{let i=Date.now()-P,n=`&name=${r}&duration=${i}`,o=t&&t.paramsOverrides?Object.keys(t.paramsOverrides).map(e=>e+"="+t.paramsOverrides[e]).join("&"):"";N(e,o?`${n}&${o}`:n)}}if(k("pageshow",({persisted:e})=>{e&&!M&&(M=!0,R.is_cached=!0)},!0),window.__browser_deprecation__)return;let D=document.referrer?`&document_referrer=${document.referrer}`:"",U=window.sessionStorage.getItem("isMpa"),B=U?`&isMpa=${U}`:"";U&&window.sessionStorage.removeItem("isMpa");let W=window.sessionStorage.getItem("mpaSessionId");W||(W=o(),window.sessionStorage.setItem("mpaSessionId",W)),window.fedops.mpaSessionId=W;let j=((e,r=!1)=>{if(!e)return 1;let t=e.navigator?.userAgent||"",i=e.devicePixelRatio||1;if(c(t))return e.visualViewport?.scale||1;if((e=>!!e&&!!e&&a.test(e)&&!c(e))(t)){let e,t;if(!r)return 1;let n=(()=>{try{let e=localStorage.getItem("wix_dpr_baseline");if(!e)return null;let r=Number(e);return r>0?{dpr:r}:null}catch{return null}})();return n?(e=i,t=n.dpr,!e||!t||t<=0||e<=t?1:Math.round(e/t*100)/100):1}return((e,r=0,t=0)=>{if(!e||!r||!t)return 1;let i=e&&r&&t?Math.trunc(e*r)<=t?1:2:1;return!i||e<=i?1:Math.round(e/i*100)/100})(i,e.innerWidth,e.outerWidth)})(window)>1,F=(e=window,r=e.visualViewport?.scale,{devicePixelRatio:e.devicePixelRatio||1,innerWidth:e.innerWidth,outerWidth:e.outerWidth,...null!=r?{visualViewportScale:r}:{}});N(21,`&platformOnSite=${window.fedops.data.platformOnSite}&hasInitialZoom=${j}&infoInitialZoom=${encodeURIComponent(JSON.stringify(F))}&mpaSessionId=${W}${D}${B}`),E({transaction:{name:"PANORAMA_COMPONENT_LOAD"}})}()})(); | |
| 2448 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js.map</script> | |
| 2449 | + | |
| 2450 | + | |
| 2451 | + <!-- Polyfills check --> | |
| 2452 | + <script> | |
| 2453 | + if ( | |
| 2454 | + typeof Promise === 'undefined' || | |
| 2455 | + typeof Set === 'undefined' || | |
| 2456 | + typeof Object.assign === 'undefined' || | |
| 2457 | + typeof Array.from === 'undefined' || | |
| 2458 | + typeof Symbol === 'undefined' | |
| 2459 | + ) { | |
| 2460 | + // send bi in order to detect the browsers in which polyfills are not working | |
| 2461 | + window.fedops.phaseStarted('missing_polyfills') | |
| 2462 | + } | |
| 2463 | + </script> | |
| 2464 | + | |
| 2465 | + | |
| 2466 | +<!-- initCustomElements # 1--> | |
| 2467 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.7589bf17.bundle.min.js">(()=>{"use strict";var e,r,o,a,t,i,c,n={},d={};function f(e){var r=d[e];if(void 0!==r)return r.exports;var o=d[e]={id:e,loaded:!1,exports:{}};return n[e].call(o.exports,o,o.exports,f),o.loaded=!0,o.exports}if(f.m=n,f.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return f.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,f.t=function(o,a){if(1&a&&(o=this(o)),8&a||"object"==typeof o&&o&&(4&a&&o.__esModule||16&a&&"function"==typeof o.then))return o;var t=Object.create(null);f.r(t);var i={};e=e||[null,r({}),r([]),r(r)];for(var c=2&a&&o;("object"==typeof c||"function"==typeof c)&&!~e.indexOf(c);c=r(c))Object.getOwnPropertyNames(c).forEach(e=>{i[e]=()=>o[e]});return i.default=()=>o,f.d(t,i),t},f.d=(e,r)=>{for(var o in r)f.o(r,o)&&!f.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},f.f={},f.e=e=>Promise.all(Object.keys(f.f).reduce((r,o)=>(f.f[o](e,r),r),[])),f.u=e=>"6948"===e?"thunderbolt-commons.ecf937b1.bundle.min.js":"3033"===e?"fastdom.inline.48a8bd4b.bundle.min.js":"1619"===e?"custom-element-utils.inline.bec24b26.bundle.min.js":"5205"===e?"render-indicator.inline.df41a0e9.bundle.min.js":"7151"===e?"version-indicator.inline.704acef2.bundle.min.js":"6008"===e?"bi-common.inline.24faadf6.bundle.min.js":""+(({1059:"santa-platform-utils",1090:"speculationRules",1116:"passwordProtectedPage",1122:"group_19",1211:"siteUrlService",1278:"group_24",131:"siteThemeService",1353:"pageContextService",1374:"editorWixCodeSdk",1438:"sdkStateService",1522:"builderContextProviders",1533:"merge-mappers",1538:"businessLogger",1611:"group_44",1638:"quickActionBar",1788:"qaApi",1791:"businessLoggerService",1799:"BackgroundLayer",180:"urlService",1802:"provideCssService",1818:"Repeater_FixedColumns",182:"consentPolicy",1869:"windowScroll",1899:"platformSiteBusinessLoggerService",1932:"customCss",1951:"group_45",1969:"wixEcomFrontendWixCodeSdk",2017:"debug",2031:"platformInteractionsService",2089:"group_47",2122:"siteDynamicRouteService",2130:"ForwardRef",2198:"platformDynamicRouteService",2214:"siteConfigurationService",2220:"group_31",2221:"anchorsService",2226:"translationsService",2242:"builderModuleLoader",2303:"externalServices",2304:"TPAModal",2442:"group_37",2463:"siteTopologyService",2570:"thunderbolt-components-registry",2609:"imagePlaceholder",2616:"linkUtilsService",2624:"group_2",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",2771:"publicApiCallerService",28:"thunderbolt-components-registry-builder",2859:"platformEnvironmentService",2867:"namedSignalsService",2870:"platformNamedSignalsService",2880:"environmentService",294:"stores",2996:"seoService",3026:"lightboxService",3187:"businessManager",3220:"platformPublicApiCallerService",3221:"multilingual",325:"servicesManager",3336:"platformExperimentsService",3370:"domSelectors",338:"platformSiteTopologyService",3399:"platformSiteDynamicRouteService",3407:"clientSdk",3531:"panorama",3556:"warmupData",3607:"UnauthorizedComponent",3654:"ssrCache",3714:"seo-api-converters",3801:"wixDomSanitizer",3872:"siteMembers",3884:"tpaModuleProvider",3894:"protectedPages",3937:"siteRendererConfigurationService",3968:"platformEditorContextService",3979:"dynamicPages",399:"searchBox",3992:"componentsqaapi",3996:"environmentWixCodeSdk",4134:"group_4",4183:"svgLoader",419:"TPAPopup",4217:"group_21",4218:"group_0",4310:"becky-css",4331:"platform",4345:"dashboardWixCodeSdk",4354:"editorElementsDynamicTheme",4443:"pagesService",4444:"siteExperimentsService",4456:"sitePagesService",4499:"siteScrollBlockerService",4675:"stickyToComponent",470:"rendererConfigurationService",4708:"reporter-api",477:"group_32",4803:"dynamicRouteService",4819:"group_35",4990:"accessibility",5002:"group_28",5067:"accessibilityBrowserZoom",5154:"servicesManagerReact",5183:"renderIndicator",5187:"group_7",5213:"scrollToAnchor",5217:"siteRenderingContextService",5221:"containerSliderService",5238:"triggersAndReactions",5289:"SiteStyles",5296:"platformPubsub",5298:"assetsLoader",5363:"environment",5391:"widgetWixCodeSdk",5474:"platformPageContextService",5581:"platformRenderingContextService",5675:"group_41",569:"siteMembersService",572:"animationsWixCodeSdk",5735:"platformSiteSiteThemeService",5745:"ByocStyles",5750:"platformSiteMembersService",5761:"group_10",5794:"seo-api",5837:"group_14",5850:"siteBusinessLoggerService",5863:"appMonitoring",5874:"navigation",5901:"group_5",5976:"AppPart",6070:"platformSiteInteractionsService",6095:"styleUtilsService",6103:"usedPlatformApis",6134:"routerService",6135:"customUrlMapper",6155:"imagePlaceholderService",6182:"motion",6218:"group_11",6258:"group_20",6285:"versionIndicator",6336:"siteSiteThemeService",6428:"ContentReflowBanner",6453:"platformRendererConfigurationService",6526:"siteDeviceInfoService",6647:"mobileFullScreen",6715:"feedback",6732:"siteProvideCssService",6749:"router",6839:"platformFedopsLoggerService",6891:"group_38",6979:"consentPolicyService",6992:"platformTranslationsService",700:"module-executor",7016:"externalComponent",7109:"group_43",7141:"group_50",7146:"serviceRegistrar",7200:"canvas",7233:"FontRulersContainer",7284:"widget",7291:"platformMultilingualService",7356:"group_48",7360:"AppPart2",7482:"vsm-css",7502:"group_42",7538:"group_8",7554:"headAppenderService",7575:"renderer",7644:"group_6",7716:"group_40",7726:"TPAUnavailableMessageOverlay",7729:"tpa",7796:"Repeater_FluidColumns",7801:"testApi",7859:"siteMembersWixCodeSdk",7862:"platformLocaleService",7896:"platformSiteUrlService",7921:"interactions",7981:"domStore",8051:"animations",8207:"FontFaces",821:"group_25",8211:"cyclicTabbingService",8255:"platformRouterService",8277:"pageAnchors",8319:"platformSitePagesService",8332:"platformSiteThemeService",8339:"platformLinkUtilsService",8402:"platformConfigurationService",8428:"containerSlider",8547:"group_49",8559:"TPAWorker",8574:"builderComponent",858:"fedopsLoggerService",8634:"platformDeviceInfoService",8656:"RemoteRefDeadComp",8662:"GhostComp",8678:"cyclicTabbing",87:"ooi",8729:"group_9",8742:"topologyService",8770:"platformStyleUtilsService",8897:"siteAboveTheFoldService",8919:"group_3",8932:"group_39",897:"group_29",8970:"contentReflow",898:"group_46",906:"onloadCompsBehaviors",9081:"group_18",9091:"platformTopologyService",9111:"BuilderComponentDeadComp",9132:"siteEditorContextService",9134:"group_36",9182:"group_51",9214:"multilingualService",9270:"siteScrollBlocker",9316:"platformPagesService",9387:"group_27",9395:"popups",9421:"provideComponentService",9467:"platformSdkStateService",95:"componentsLoader",959:"group_23",9740:"wix-seo-SEO_DEFAULT",9763:"group_30",9764:"platformConsentPolicyService",9768:"group_22",9779:"tslib.inline",9794:"siteLocaleService",9845:"routerFetch",9863:"tpaWidgetNativeDeadComp",9899:"siteInteractionsService",9980:"mpaNavigation"})[e]||e)+"."+({1059:"97687ea7",1090:"851746fd",1116:"ca8d2b5a",1122:"91a95564",1171:"2a59485b",1193:"2569022a",1211:"e04e6b11",1239:"13b3236c",1278:"973ec0eb",131:"cfa0ee23",1353:"8e408c09",1374:"038d9db5",1438:"e883b66a",1463:"75cc62bf",1522:"0e729e1b",1533:"5da17820",1538:"b3c0de71",1546:"633fdeb7",1567:"8a2ed6ac",1593:"185974ae",1611:"32da439a",1638:"e48f9c16",1788:"54c48f6e",1791:"2d664784",1799:"c6051cdc",180:"646756e1",1802:"3df59c19",1818:"82eb4dab",182:"a987db6a",1869:"94e57fc8",1899:"1b2057a6",1932:"f836d8c7",1951:"c1314395",196:"baa4a8cb",1962:"e93dd1da",1969:"62ed7f20",1997:"219fdc2a",2017:"b53af7c0",203:"93b8a21e",2031:"e1c0e641",2046:"c3b0bdb6",2089:"84e4b439",2122:"cf9d7361",2130:"972f1da6",2198:"dcdf55cd",2214:"b3407eb8",2220:"820e7611",2221:"2b2254e2",2226:"d3f0a0ce",2242:"b26ca23d",2303:"a9aa058b",2304:"1c4e2cd1",2355:"dff147c9",2442:"22be02da",2463:"0391096e",2538:"bed4d851",2559:"35044fa3",2570:"5b11072b",2609:"3c11dd4b",2616:"89b26de8",2624:"fd73115c",2639:"7853b464",2689:"fa382800",2725:"6b13159c",2735:"4bd510e1",2771:"da04ce9a",2777:"337d02e4",28:"6b469a9d",2859:"2b9317db",2867:"413074b3",2870:"4e4d5f25",2880:"676d132e",294:"271cca5b",2996:"c651b2c6",3026:"b35591f5",3187:"6bd030ea",3220:"4716e932",3221:"9d540a42",325:"97378610",330:"6686e7ed",3336:"da9f5032",3370:"1b55da8c",338:"7eda8ac1",3399:"ab0972b9",3407:"f155b667",3415:"27e0927d",3456:"4a19a8fa",3480:"987f1496",3531:"a27650b3",3556:"780ab490",3560:"1762fb1e",3583:"f8ed7ce7",3600:"83d984c4",3607:"8e13c2dd",3634:"94e30248",3654:"f7fb72e6",3714:"2cc9a061",3723:"af439be2",3801:"34d4abc7",3872:"3aafb18a",3884:"51ac9350",3894:"6b5d83a2",3937:"e6df8159",3968:"416cce38",3979:"4ff4e6f5",399:"b003db84",3992:"17ef48ef",3996:"566c4d0f",4134:"272c55aa",4183:"eaac3f9d",419:"a13a7947",4217:"cb838eb5",4218:"b58e75e0",4310:"ac0b3c00",4331:"d1162e0c",4345:"de335548",4354:"89ba8f0a",437:"748f01d1",4443:"cdab3cff",4444:"681aa90e",4456:"d8cb8478",4499:"983bb9f3",4675:"726f62ad",470:"ef2ebe53",4708:"71a5ef2b",477:"71b56717",4803:"824ca8f9",4819:"35cb204d",4980:"cbd2ff42",4990:"e4888b8e",5002:"517aa7aa",5028:"dcbabd4f",5067:"f43a588a",5154:"2187b4f5",5183:"c95e75a9",5187:"0a21109c",5192:"cc825f45",5213:"bd63e157",5217:"63721a41",5221:"fec3cd3a",5238:"2c5caf8e",5267:"a4e6564b",5289:"a8b3f792",5296:"d41c28b7",5298:"664431f5",5363:"7ac3f543",5391:"c191ad97",5474:"55cfd378",5539:"4aa2904e",5581:"256b7c35",5675:"fdc7f282",569:"ed1463fc",572:"9f05a568",5735:"5a3cfec9",5745:"4ac8a223",5750:"d471f2af",5761:"d3c97b81",5794:"416b98a6",5837:"ce4fa204",5850:"333eb10e",5863:"57da5205",5874:"eba89c08",5901:"3acec901",5976:"6a8402a6",6070:"be4c771b",6086:"61c45f4e",6095:"98a18ef2",6103:"2fac58dc",6134:"664e9f31",6135:"64f7515a",6155:"c6a1d133",6182:"a51fa0ca",6198:"ce015fff",6218:"18733d1a",6223:"f63c905f",6258:"2588c8a2",6285:"a8fe3456",6336:"6721363c",6428:"dffb6c1d",6453:"9f3a14c4",6474:"a86b17b7",6526:"0362d8ae",6647:"26016b15",6715:"9279907e",6732:"a3d18858",6749:"32a795c0",6753:"afdd5351",6839:"67cdc1b8",6891:"115f04f2",6979:"2e4502a1",6992:"b199b90f",700:"81334661",7016:"2e78f1f7",7109:"fe23d399",7127:"130b4e34",7141:"f473d1ca",7146:"3376f5cc",7186:"3bc830d5",7200:"bfd00c3f",7233:"f9341c8b",7257:"d71af493",7284:"e18b4874",7291:"e92e4859",7356:"8aafa69d",7360:"327ec15d",7482:"c478132b",7502:"00edceba",7538:"9220f1c1",754:"9c52b3e5",7554:"86d2abc6",7575:"320eeef1",7644:"84400d58",7716:"b48b66d9",7726:"8e304d9b",7729:"6edeff75",7796:"6c0fb6fc",7801:"6a858867",7859:"957dbd39",7862:"1a0ce6ce",7896:"beb65605",7921:"8cbe5f9d",7981:"ece10f59",8051:"d94f0463",8052:"29e79fff",81:"54fe0482",8155:"5a0141ee",8166:"deb21518",8167:"d0b9d59c",8207:"6c3c8de5",821:"724dfd3a",8211:"b9cd99de",8255:"40d16460",8268:"1028e4f2",8277:"5ac241c2",8319:"9851d9fb",8332:"a711845b",8339:"2ccc441f",8402:"b66f7f7f",8428:"8d71c775",8487:"a7db3a46",8547:"4392f91f",8559:"6b34ddad",8574:"367acb07",858:"84374dc7",8634:"4b8ddea3",8656:"afc9c6e5",8662:"56f311d7",8678:"a0ad2cb2",87:"35dd0965",8729:"1195284a",8742:"1abeb981",8770:"04ec9910",8863:"d3d9107f",8897:"c87fc374",8919:"a22a799c",8932:"dca0f811",8968:"069cf880",897:"5e0152fc",8970:"3a7544b6",898:"1fd93beb",9022:"f39960c7",906:"b457547d",9071:"a9e0d43e",9081:"dacb1809",9091:"8368e3eb",9111:"551bb85b",9132:"ffc79f2e",9134:"4b0f738f",9182:"49f9c6e7",9214:"2ca66c92",9269:"712ee971",9270:"d7ac0282",9316:"81af62d8",9387:"82d9db18",9395:"2b704839",9421:"5886298e",9467:"1b10e3bd",95:"037bc6b5",959:"82012ddd",9740:"6c1af586",9763:"9d2d4c10",9764:"58cf53ee",9768:"e636f159",9779:"cdbfecc7",9794:"56234440",9845:"c9420889",9863:"91e76dd4",9899:"f1c5da8d",9954:"07a4e2f0",9980:"bd7e02b4"})[e]+".chunk.min.js",f.miniCssF=e=>"5205"===e?"render-indicator.inline.d4591556.min.css":"7151"===e?"version-indicator.inline.7046c9c0.min.css":""+({1799:"BackgroundLayer",1818:"Repeater_FixedColumns",2304:"TPAModal",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",419:"TPAPopup",5187:"group_7",5976:"AppPart",6428:"ContentReflowBanner",7233:"FontRulersContainer",7360:"AppPart2",7726:"TPAUnavailableMessageOverlay",7796:"Repeater_FluidColumns",9863:"tpaWidgetNativeDeadComp"})[e]+"."+({1799:"0748fc04",1818:"17a84fdd",2304:"e96a6f61",2689:"88cd9698",2735:"44f745b9",419:"82254d4c",5187:"c472a333",5976:"a5efb1fa",6428:"91e2605c",7233:"3c707054",7360:"e5b1bfd5",7726:"2ffa98e3",7796:"564dd9aa",9863:"6f11f5af"})[e]+".chunk.min.css",f.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),f.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o={},f.l=function(e,r,a,t){if(o[e])return void o[e].push(r);if(void 0!==a)for(var i,c,n=document.getElementsByTagName("script"),d=0;d<n.length;d++){var l=n[d];if(l.getAttribute("src")==e){i=l;break}}i||(c=!0,(i=document.createElement("script")).timeout=120,f.nc&&i.setAttribute("nonce",f.nc),i.src=e),o[e]=[r];var s=function(r,a){i.onerror=i.onload=null,clearTimeout(p);var t=o[e];if(delete o[e],i.parentNode&&i.parentNode.removeChild(i),t&&t.forEach(function(e){return e(a)}),r)return r(a)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),c&&document.head.appendChild(i)},f.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a=[],f.O=(e,r,o,t)=>{if(r){t=t||0;for(var i=a.length;i>0&&a[i-1][2]>t;i--)a[i]=a[i-1];a[i]=[r,o,t];return}for(var c=1/0,i=0;i<a.length;i++){for(var[r,o,t]=a[i],n=!0,d=0;d<r.length;d++)(!1&t||c>=t)&&Object.keys(f.O).every(e=>f.O[e](r[d]))?r.splice(d--,1):(n=!1,t<c&&(c=t));if(n){a.splice(i--,1);var l=o();void 0!==l&&(e=l)}}return e},f.p="https://static.parastorage.com/services/wix-thunderbolt/dist/",f.rv=()=>"1.6.8","undefined"!=typeof document){var l=function(e,r,o,a,t){var i=document.createElement("link");return i.rel="stylesheet",i.type="text/css",f.nc&&(i.nonce=f.nc),i.href=r,i.onerror=i.onload=function(o){if(i.onerror=i.onload=null,"load"===o.type)a();else{var c=o&&("load"===o.type?"missing":o.type),n=o&&o.target&&o.target.href||r,d=Error("Loading CSS chunk "+e+" failed.\\n("+n+")");d.code="CSS_CHUNK_LOAD_FAILED",d.type=c,d.request=n,i.parentNode&&i.parentNode.removeChild(i),t(d)}},o?o.parentNode.insertBefore(i,o.nextSibling):document.head.appendChild(i),i},s=function(e,r){for(var o=document.getElementsByTagName("link"),a=0;a<o.length;a++){var t=o[a],i=t.getAttribute("data-href")||t.getAttribute("href");if(i&&(i=i.split("?")[0]),"stylesheet"===t.rel&&(i===e||i===r))return t}for(var c=document.getElementsByTagName("style"),a=0;a<c.length;a++){var t=c[a],i=t.getAttribute("data-href");if(i===e||i===r)return t}},p={404:0};f.f.miniCss=function(e,r){if(p[e])r.push(p[e]);else 0!==p[e]&&({1799:1,1818:1,2304:1,2689:1,2735:1,419:1,5187:1,5205:1,5976:1,6428:1,7151:1,7233:1,7360:1,7726:1,7796:1,9863:1})[e]&&r.push(p[e]=new Promise(function(r,o){var a=f.miniCssF(e),t=f.p+a;if(s(a,t))return r();l(e,t,null,r,o)}).then(function(){p[e]=0},function(r){throw delete p[e],r}))}}t={404:0},f.f.j=function(e,r){var o=f.o(t,e)?t[e]:void 0;if(0!==o)if(o)r.push(o[2]);else if(404!=e){var a=new Promise((r,a)=>o=t[e]=[r,a]);r.push(o[2]=a);var i=f.p+f.u(e),c=Error();f.l(i,function(r){if(f.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+a+": "+i+")",c.name="ChunkLoadError",c.type=a,c.request=i,o[1](c)}},"chunk-"+e,e)}else t[e]=0},f.O.j=e=>0===t[e],i=(e,r)=>{var o,a,[i,c,n]=r,d=0;if(i.some(e=>0!==t[e])){for(o in c)f.o(c,o)&&(f.m[o]=c[o]);if(n)var l=n(f)}for(e&&e(r);d<i.length;d++)a=i[d],f.o(t,a)&&t[a]&&t[a][0](),t[a]=0;return f.O(l)},(c=self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).forEach(i.bind(null,0)),c.push=i.bind(null,c.push.bind(c)),f.ruid="bundler=rspack@1.6.8"})(); | |
| 2468 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.7589bf17.bundle.min.js.map</script> | |
| 2469 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["3033"],{17709(t){!function(e){"use strict";var i=function(){},n=e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.msRequestAnimationFrame||function(t){return setTimeout(t,16)};function s(){this.reads=[],this.writes=[],this.raf=n.bind(e),i("initialized",this)}function r(t){t.scheduled||(t.scheduled=!0,t.raf(a.bind(null,t)),i("flush scheduled"))}function a(t){i("flush");var e,n=t.writes,s=t.reads;try{i("flushing reads",s.length),t.runTasks(s),i("flushing writes",n.length),t.runTasks(n)}catch(t){e=t}if(t.scheduled=!1,(s.length||n.length)&&r(t),e)if(i("task errored",e.message),t.catch)t.catch(e);else throw e}function u(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}s.prototype={constructor:s,runTasks:function(t){var e;for(i("run tasks");e=t.shift();)e()},measure:function(t,e){i("measure");var n=e?t.bind(e):t;return this.reads.push(n),r(this),n},mutate:function(t,e){i("mutate");var n=e?t.bind(e):t;return this.writes.push(n),r(this),n},clear:function(t){return i("clear",t),u(this.reads,t)||u(this.writes,t)},extend:function(t){if(i("extend",t),"object"!=typeof t)throw Error("expected object");var e=Object.create(this);return function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i])}(e,t),e.fastdom=this,e.initialize&&e.initialize(),e},catch:null},t.exports=e.fastdom=e.fastdom||new s}("undefined"!=typeof window?window:void 0!==this?this:globalThis)}}]); | |
| 2470 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js.map</script> | |
| 2471 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1619"],{26350(e,t,i){i.r(t),i.d(t,{STATIC_MEDIA_URL:()=>eH,fileType:()=>v,fittingTypes:()=>r,getData:()=>eR,MEDIA_ROOT_URL:()=>ez,sdk:()=>eB,isWEBP:()=>S,alignTypes:()=>h,htmlTag:()=>u,getPlaceholder:()=>eC,getResponsiveImageProps:()=>e$,upscaleMethods:()=>m,getFileExtension:()=>k,populateGlobalFeatureSupport:()=>q});let r={SCALE_TO_FILL:"fill",SCALE_TO_FIT:"fit",STRETCH:"stretch",ORIGINAL_SIZE:"original_size",TILE:"tile",TILE_HORIZONTAL:"tile_horizontal",TILE_VERTICAL:"tile_vertical",FIT_AND_TILE:"fit_and_tile",LEGACY_STRIP_TILE:"legacy_strip_tile",LEGACY_STRIP_TILE_HORIZONTAL:"legacy_strip_tile_horizontal",LEGACY_STRIP_TILE_VERTICAL:"legacy_strip_tile_vertical",LEGACY_STRIP_SCALE_TO_FILL:"legacy_strip_fill",LEGACY_STRIP_SCALE_TO_FIT:"legacy_strip_fit",LEGACY_STRIP_FIT_AND_TILE:"legacy_strip_fit_and_tile",LEGACY_STRIP_ORIGINAL_SIZE:"legacy_strip_original_size",LEGACY_ORIGINAL_SIZE:"actual_size",LEGACY_FIT_WIDTH:"fitWidth",LEGACY_FIT_HEIGHT:"fitHeight",LEGACY_FULL:"full",LEGACY_BG_FIT_AND_TILE:"legacy_tile",LEGACY_BG_FIT_AND_TILE_HORIZONTAL:"legacy_tile_horizontal",LEGACY_BG_FIT_AND_TILE_VERTICAL:"legacy_tile_vertical",LEGACY_BG_NORMAL:"legacy_normal"},n="fill",a="fill_focal",o="crop",s="legacy_crop",l="legacy_fill",h={CENTER:"center",TOP:"top",TOP_LEFT:"top_left",TOP_RIGHT:"top_right",BOTTOM:"bottom",BOTTOM_LEFT:"bottom_left",BOTTOM_RIGHT:"bottom_right",LEFT:"left",RIGHT:"right"},c={[h.CENTER]:{x:.5,y:.5},[h.TOP_LEFT]:{x:0,y:0},[h.TOP_RIGHT]:{x:1,y:0},[h.TOP]:{x:.5,y:0},[h.BOTTOM_LEFT]:{x:0,y:1},[h.BOTTOM_RIGHT]:{x:1,y:1},[h.BOTTOM]:{x:.5,y:1},[h.RIGHT]:{x:1,y:.5},[h.LEFT]:{x:0,y:.5}},d={center:"c",top:"t",top_left:"tl",top_right:"tr",bottom:"b",bottom_left:"bl",bottom_right:"br",left:"l",right:"r"},u={BG:"bg",IMG:"img",SVG:"svg"},m={AUTO:"auto",CLASSIC:"classic",SUPER:"super"},g={radius:"0.66",amount:"1.00",threshold:"0.01"},p={uri:"",css:{img:{},container:{}},attr:{img:{},container:{}},transformed:!1},f=[1.5,2,4],_={HIGH:{size:196e4,quality:90,maxUpscale:1},MEDIUM:{size:36e4,quality:85,maxUpscale:1},LOW:{size:16e4,quality:80,maxUpscale:1.2},TINY:{size:0,quality:80,maxUpscale:1.4}},b="HIGH",T="MEDIUM",I="contrast",E="brightness",w="saturation",L="blur",v={JPG:"jpg",JPEG:"jpeg",JPE:"jpe",PNG:"png",WEBP:"webp",WIX_ICO_MP:"wix_ico_mp",WIX_MP:"wix_mp",GIF:"gif",SVG:"svg",AVIF:"avif",UNRECOGNIZED:"unrecognized"};function A(e,...t){return function(...i){let r=i[i.length-1]||{},n=[e[0]];return t.forEach(function(t,a){let o=Number.isInteger(t)?i[t]:r[t];n.push(o,e[a+1])}),n.join("")}}function O(e){return e[e.length-1]}v.JPG,v.JPEG,v.JPE,v.PNG,v.GIF,v.WEBP;let y=[v.PNG,v.JPEG,v.JPG,v.JPE,v.WIX_ICO_MP,v.WIX_MP,v.WEBP,v.AVIF],C=[v.JPEG,v.JPG,v.JPE];function R(e,t,i){var n;return i&&t&&!(!(n=t.id)||!n.trim()||"none"===n.toLowerCase())&&Object.values(r).includes(e)}function M(e,t,i,r){var n;if(n=e,/(^https?)|(^data)|(^\/\/)/.test(n)||(S(e)||P(e))&&t&&!i)return!1;let a=y.includes(k(e)),o=!!G(e)&&!!(i||r);return a||o}function x(e){return k(e)===v.PNG}function S(e){return k(e)===v.WEBP}function G(e){return k(e)===v.GIF}function P(e){return k(e)===v.AVIF}let N=["/","\\","?","<",">","|","\u201C",":",'"'].map(encodeURIComponent),F=["\\.","\\*"];function k(e){return(/[.]([^.]+)$/.exec(e)&&/[.]([^.]+)$/.exec(e)[1]||"").toLowerCase()}function $(e,t,i,r,a){let o;return o=a===n?Math.max(i/e,r/t):"fit"===a?Math.min(i/e,r/t):1}function B(e,t,i,r,a,o){let{scaleFactor:s,width:l,height:h}=function(e,t,i,r,n){let a,o=i,s=r;if(a=$(e,t,i,r,n),"fit"===n&&(o=e*a,s=t*a),o&&s&&o*s>25e6){let i=Math.sqrt(25e6/(o*s));o*=i,s*=i,a=$(e,t,o,s,n)}return{scaleFactor:a,width:o,height:s}}(e=e||r.width,t=t||r.height,r.width*a,r.height*a,i);return function(e,t,i,r,a,o,s){let{optimizedScaleFactor:l,upscaleMethodValue:h,forceUSM:c}=function(e,t,i,r){if("auto"===r)return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1};if("super"===r)return{optimizedScaleFactor:O(f),upscaleMethodValue:2,forceUSM:!(f.includes(i)||i>O(f))};return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1}}(e,t,o,a),d=i,u=r;if(o<=l)return{width:d,height:u,scaleFactor:o,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!1};switch(s){case n:d=l/o*i,u=l/o*r;break;case"fit":d=e*l,u=t*l}return{width:d,height:u,scaleFactor:l,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!0}}(e,t,l,h,o,s,i)}function H(e){return e.alignment&&d[e.alignment]||d[h.CENTER]}function z(e){let t;return!e||"number"!=typeof e.x||isNaN(e.x)||"number"!=typeof e.y||isNaN(e.y)||(t={x:W(Math.max(0,Math.min(100,e.x))/100,2),y:W(Math.max(0,Math.min(100,e.y))/100,2)}),t}function U(e,t){let i=e*t;return i>_[b].size?b:i>_[T].size?T:i>_.LOW.size?"LOW":"TINY"}function W(e,t){let i=Math.pow(10,t||0);return(e*i/i).toFixed(t)}let Y={isMobile:!1},D=function(e,t){Y[e]=t};function q(){if("undefined"!=typeof window&&"undefined"!=typeof navigator){let e=window.matchMedia&&window.matchMedia("(max-width: 767px)").matches,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);D("isMobile",e&&t)}}function j(e,t){let i={css:{container:{}}},{css:n}=i,{fittingType:a}=e;switch(a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.LEGACY_STRIP_ORIGINAL_SIZE:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FIT:case r.LEGACY_STRIP_SCALE_TO_FIT:n.container.backgroundSize="contain",n.container.backgroundRepeat="no-repeat";break;case r.STRETCH:n.container.backgroundSize="100% 100%",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FILL:case r.LEGACY_STRIP_SCALE_TO_FILL:n.container.backgroundSize="cover",n.container.backgroundRepeat="no-repeat";break;case r.TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.TILE_VERTICAL:case r.LEGACY_STRIP_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.TILE:case r.LEGACY_STRIP_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_STRIP_FIT_AND_TILE:n.container.backgroundSize="contain",n.container.backgroundRepeat="repeat";break;case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.LEGACY_BG_NORMAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat"}switch(t.alignment){case h.CENTER:n.container.backgroundPosition="center center";break;case h.LEFT:n.container.backgroundPosition="left center";break;case h.RIGHT:n.container.backgroundPosition="right center";break;case h.TOP:n.container.backgroundPosition="center top";break;case h.BOTTOM:n.container.backgroundPosition="center bottom";break;case h.TOP_RIGHT:n.container.backgroundPosition="right top";break;case h.TOP_LEFT:n.container.backgroundPosition="left top";break;case h.BOTTOM_RIGHT:n.container.backgroundPosition="right bottom";break;case h.BOTTOM_LEFT:n.container.backgroundPosition="left bottom"}return i}let V={[h.CENTER]:"center",[h.TOP]:"top",[h.TOP_LEFT]:"top left",[h.TOP_RIGHT]:"top right",[h.BOTTOM]:"bottom",[h.BOTTOM_LEFT]:"bottom left",[h.BOTTOM_RIGHT]:"bottom right",[h.LEFT]:"left",[h.RIGHT]:"right"},Z={position:"absolute",top:"auto",right:"auto",bottom:"auto",left:"auto"};function J(e,t){let i={css:{container:{},img:{}}},{css:n}=i,{fittingType:a}=e,o=t.alignment;switch(n.container.position="relative",a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:e.parts&&e.parts.length?(n.img.width=e.parts[0].width,n.img.height=e.parts[0].height):(n.img.width=e.src.width,n.img.height=e.src.height);break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="contain",n.img.objectPosition=V[o]||"unset";break;case r.LEGACY_BG_NORMAL:n.img.width="100%",n.img.height="100%",n.img.objectFit="none",n.img.objectPosition=V[o]||"unset";break;case r.STRETCH:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="fill";break;case r.SCALE_TO_FILL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="cover"}if("number"==typeof n.img.width&&"number"==typeof n.img.height&&(n.img.width!==t.width||n.img.height!==t.height)){let e=Math.round((t.height-n.img.height)/2),i=Math.round((t.width-n.img.width)/2);Object.assign(n.img,Z,{[h.TOP_LEFT]:{top:0,left:0},[h.TOP_RIGHT]:{top:0,right:0},[h.TOP]:{top:0,left:i},[h.BOTTOM_LEFT]:{bottom:0,left:0},[h.BOTTOM_RIGHT]:{bottom:0,right:0},[h.BOTTOM]:{bottom:0,left:i},[h.RIGHT]:{top:e,right:0},[h.LEFT]:{top:e,left:0},[h.CENTER]:{width:t.width,height:t.height,objectFit:"none"}}[o])}return i}function X(e,t){let i,a={css:{container:{}},attr:{container:{},img:{}}},{css:o,attr:s}=a,{fittingType:l}=e,c=t.alignment,{width:d,height:u}=e.src;switch(o.container.position="relative",l){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.TILE:e.parts&&e.parts.length?(s.img.width=e.parts[0].width,s.img.height=e.parts[0].height):(s.img.width=d,s.img.height=u),s.img.preserveAspectRatio="xMidYMid slice";break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:s.img.width="100%",s.img.height="100%",s.img.transform="",s.img.preserveAspectRatio="";break;case r.STRETCH:s.img.width=t.width,s.img.height=t.height,s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="none";break;case r.SCALE_TO_FILL:if(M(e.src.id))s.img.width=t.width,s.img.height=t.height;else{var m;let e;m=t.width,e=$(d,u,m,t.height,n),i={width:Math.round(d*e),height:Math.round(u*e)},s.img.width=i.width,s.img.height=i.height}s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="xMidYMid slice"}if("number"==typeof s.img.width&&"number"==typeof s.img.height&&(s.img.width!==t.width||s.img.height!==t.height)){let e,i,n=0,a=0;l===r.TILE?(e=t.width%s.img.width,i=t.height%s.img.height):(e=t.width-s.img.width,i=t.height-s.img.height);let o=Math.round(e/2),d=Math.round(i/2);switch(c){case h.TOP_LEFT:n=0,a=0;break;case h.TOP:n=o,a=0;break;case h.TOP_RIGHT:n=e,a=0;break;case h.LEFT:n=0,a=d;break;case h.CENTER:n=o,a=d;break;case h.RIGHT:n=e,a=d;break;case h.BOTTOM_LEFT:n=0,a=i;break;case h.BOTTOM:n=o,a=i;break;case h.BOTTOM_RIGHT:n=e,a=i}s.img.x=n,s.img.y=a}return s.container.width=t.width,s.container.height=t.height,s.container.viewBox=["0 0",t.width,t.height].join(" "),a}function K(e,t){let i=B(e.src.width,e.src.height,"fit",t,e.devicePixelRatio,e.upscaleMethod);return{transformType:e.src.width&&e.src.height?n:"fit",width:Math.round(i.width),height:Math.round(i.height),alignment:d.center,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}function Q(e){return{transformType:o,x:Math.round(e.x),y:Math.round(e.y),width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}function ee(e,t,i){return"number"==typeof e&&!isNaN(e)&&0!==e&&e>=t&&e<=i}function et(e,t,i,o){var d,u,p,f,b,T,A;let R,Y=o?.isSEOBot??!1,D=function(e){if(C.includes(k(e)))return v.JPG;if(x(e))return v.PNG;if(S(e))return v.WEBP;if(G(e))return v.GIF;if(P(e))return v.AVIF;return v.UNRECOGNIZED}(t.id),q=function(e,t){let i=/\.([^.]*)$/,r=RegExp(`(${N.concat(F).join("|")})`,"g");if(t&&t.length){let e=t,n=t.match(i);return n&&y.includes(n[1])&&(e=t.replace(i,"")),encodeURIComponent(e).replace(r,"_")}let n=e.match(/\/(.*?)$/);return(n?n[1]:e).replace(i,"")}(t.id,t.name),j=Y?1:Math.min(i.pixelAspectRatio||1,2),V=k(t.id),Z=M(t.id,o?.hasAnimation,o?.allowAnimatedTransform,o?.allowFullGIFTransformation),J={fileName:q,fileExtension:V,fileType:D,fittingType:e,preferredExtension:V,src:{id:t.id,width:t.width,height:t.height,isCropped:!1,isAnimated:(d=t.id,u=o?.hasAnimation,R=S(d)||P(d),k(d)===v.GIF||R&&u)},focalPoint:{x:t.focalPoint&&t.focalPoint.x,y:t.focalPoint&&t.focalPoint.y},parts:[],devicePixelRatio:j,quality:0,upscaleMethod:o&&o.upscaleMethod&&m[o.upscaleMethod.toUpperCase()]||m.AUTO,progressive:!0,watermark:"",unsharpMask:{},filters:{},transformed:Z,allowFullGIFTransformation:o?.allowFullGIFTransformation,isPlaceholderFlow:o?.isPlaceholderFlow};if(Z){let e,d,u,m,y,C;!function(e,t,i){var o,d,u,m,g,p,f,_,b,T,I;let E,w,L,v,A,O;if(t.crop){let i,r;o=t.crop,i=Math.max(0,Math.min(t.width,o.x+o.width)-Math.max(0,o.x)),r=Math.max(0,Math.min(t.height,o.y+o.height)-Math.max(0,o.y)),(E=i&&r&&(t.width!==i||t.height!==r)?{x:Math.max(0,o.x),y:Math.max(0,o.y),width:i,height:r}:null)&&(e.src.width=E.width,e.src.height=E.height,e.src.isCropped=!0,e.parts.push(Q(E)))}switch(e.fittingType){case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:e.parts.push(K(e,i));break;case r.SCALE_TO_FILL:e.parts.push((g=e,p=i,w=B(g.src.width,g.src.height,n,p,g.devicePixelRatio,g.upscaleMethod),{transformType:(L=z(g.focalPoint))?a:n,width:Math.round(w.width),height:Math.round(w.height),alignment:H(p),focalPointX:L&&L.x,focalPointY:L&&L.y,upscale:w.scaleFactor>1,forceUSM:w.forceUSM,scaleFactor:w.scaleFactor,cssUpscaleNeeded:w.cssUpscaleNeeded,upscaleMethodValue:w.upscaleMethodValue}));break;case r.STRETCH:e.parts.push((f=e,_=i,v=$(f.src.width,f.src.height,_.width,_.height,n),(A={..._}).width=f.src.width*v,A.height=f.src.height*v,K(f,A)));break;case r.TILE_HORIZONTAL:case r.TILE_VERTICAL:case r.TILE:case r.LEGACY_ORIGINAL_SIZE:case r.ORIGINAL_SIZE:d=e.src,u=e.focalPoint,m=i.alignment,O=z(u)||function(e=h.CENTER){return c[e]}(m),E={x:Math.max(0,Math.min(d.width-i.width,O.x*d.width-i.width/2)),y:Math.max(0,Math.min(d.height-i.height,O.y*d.height-i.height/2)),width:Math.min(d.width,i.width),height:Math.min(d.height,i.height)},e.src.isCropped?(Object.assign(e.parts[0],E),e.src.width=E.width,e.src.height=E.height):e.parts.push(Q(E));break;case r.LEGACY_STRIP_TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_VERTICAL:case r.LEGACY_STRIP_TILE:case r.LEGACY_STRIP_ORIGINAL_SIZE:e.parts.push({transformType:s,width:Math.round((b=i).width),height:Math.round(b.height),alignment:H(b),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FIT:case r.LEGACY_STRIP_FIT_AND_TILE:e.parts.push({transformType:"fit",width:Math.round((T=i).width),height:Math.round(T.height),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FILL:e.parts.push({transformType:l,width:Math.round((I=i).width),height:Math.round(I.height),alignment:H(I),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1})}}(J,t,i),J.quality=function(e,t){let i=e.fileType===v.PNG,r=e.fileType===v.JPG,n=e.fileType===v.WEBP,a=e.fileType===v.AVIF;if(r||i||n||a){let r=O(e.parts),n=_[U(r.width,r.height)].quality,a=t.quality&&t.quality>=5&&t.quality<=90?t.quality:n;return i?a+5:a}return 0}(J,p=(p=o)||{}),J.progressive=!1!==p.progressive,J.watermark=p.watermark,J.autoEncode=p.autoEncode??!0,J.encoding=p?.encoding,f=J,e="number"==typeof(T=(T=(b=p).unsharpMask)||{}).radius&&!isNaN(T.radius)&&T.radius>=.1&&T.radius<=500,d="number"==typeof T.amount&&!isNaN(T.amount)&&T.amount>=0&&T.amount<=10,u="number"==typeof T.threshold&&!isNaN(T.threshold)&&T.threshold>=0&&T.threshold<=255,J.unsharpMask=e&&d&&u?{radius:W(b.unsharpMask?.radius,2),amount:W(b.unsharpMask?.amount,2),threshold:W(b.unsharpMask?.threshold,2)}:"number"==typeof(A=(A=b.unsharpMask)||{}).radius&&!isNaN(A.radius)&&0===A.radius&&"number"==typeof A.amount&&!isNaN(A.amount)&&0===A.amount&&"number"==typeof A.threshold&&!isNaN(A.threshold)&&0===A.threshold||(m=O(f.parts)).scaleFactor>=1&&!m.forceUSM&&"fit"!==m.transformType?void 0:g,y=p.filters||{},C={},ee(y[I],-100,100)&&(C[I]=y[I]),ee(y[E],-100,100)&&(C[E]=y[E]),ee(y[w],-100,100)&&(C[w]=y[w]),ee(y.hue,-180,180)&&(C.hue=y.hue),ee(y[L],0,100)&&(C[L]=y[L]),J.filters=C}return J}function ei(e,t,i){let n={...i},a=Y.isMobile;switch(e){case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:n.width=Math.min(a?1e3:1920,t.width),n.height=Math.min(a?1e3:1920,Math.round(n.width/(t.width/t.height))),n.pixelAspectRatio=1}return n}let er=A`fit/w_${"width"},h_${"height"}`,en=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,ea=A`fill/w_${"width"},h_${"height"},fp_${"focalPointX"}_${"focalPointY"}`,eo=A`crop/x_${"x"},y_${"y"},w_${"width"},h_${"height"}`,es=A`crop/w_${"width"},h_${"height"},al_${"alignment"}`,el=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,eh=A`,lg_${"upscaleMethodValue"}`,ec=A`,q_${"quality"}`,ed=A`,quality_auto`,eu=A`,usm_${"radius"}_${"amount"}_${"threshold"}`,em=A`,bl`,eg=A`,wm_${"watermark"}`,ep={[I]:A`,con_${"contrast"}`,[E]:A`,br_${"brightness"}`,[w]:A`,sat_${"saturation"}`,hue:A`,hue_${"hue"}`,[L]:A`,blur_${"blur"}`},ef=A`,enc_auto`,e_=A`,enc_avif`,eb=A`,enc_pavif`,eT=A`,pstr`,eI=A`,anm_all`;function eE(e,t,i,r={},h){if(M(t.id,r?.hasAnimation,r?.allowAnimatedTransform,r?.allowFullGIFTransformation)){if((S(t.id)||P(t.id))&&!r.allowWebpAvifTransforms){let{alignment:n,...a}=i;t.focalPoint={x:void 0,y:void 0},delete t?.crop,h=et(e,t,a,r)}else h=h||et(e,t,i,r);return function(e){let t=[];e.parts.forEach(e=>{switch(e.transformType){case o:t.push(eo(e));break;case s:t.push(es(e));break;case l:let i=el(e);e.upscale&&(i+=eh(e)),t.push(i);break;case"fit":let r=er(e);e.upscale&&(r+=eh(e)),t.push(r);break;case n:let h=en(e);e.upscale&&(h+=eh(e)),t.push(h);break;case a:let c=ea(e);e.upscale&&(c+=eh(e)),t.push(c)}});let i=t.join("/");if(e.quality&&(i+=ec(e)),e.unsharpMask&&(i+=eu(e.unsharpMask)),e.progressive||(i+=em(e)),e.watermark&&(i+=eg(e)),e.filters&&(i+=Object.keys(e.filters).map(t=>ep[t](e.filters)).join("")),e.fileType!==v.GIF&&("AVIF"===e.encoding?(i+=e_(e),i+=ed(e)):"PAVIF"===e.encoding?(i+=eb(e),i+=ed(e)):e.autoEncode&&(i+=ef(e))),e.src?.isAnimated&&e.transformed){let t=G(e.src.id),r=!0===e.isPlaceholderFlow,n=!0===e.allowFullGIFTransformation;r?i+=eT(e):t&&n&&(i+=eI(e))}return`${e.src.id}/v1/${i}/${e.fileName}.${e.preferredExtension}`}(h)}return t.id}let ew={[h.CENTER]:"50% 50%",[h.TOP_LEFT]:"0% 0%",[h.TOP_RIGHT]:"100% 0%",[h.TOP]:"50% 0%",[h.BOTTOM_LEFT]:"0% 100%",[h.BOTTOM_RIGHT]:"100% 100%",[h.BOTTOM]:"50% 100%",[h.RIGHT]:"100% 50%",[h.LEFT]:"0% 50%"},eL=Object.entries(ew).reduce((e,[t,i])=>(e[i]=t,e),{}),ev=[r.TILE,r.TILE_HORIZONTAL,r.TILE_VERTICAL,r.LEGACY_BG_FIT_AND_TILE,r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL,r.LEGACY_BG_FIT_AND_TILE_VERTICAL],eA=[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE,r.LEGACY_BG_NORMAL];function eO(e,t,{width:i,height:n}){return e===r.TILE&&t.width>i&&t.height>n}let ey={width:"100%",height:"100%"};function eC(e,t,i,n={}){var a;let o,{autoEncode:s=!0,isSEOBot:l,shouldLoadHQImage:h,hasAnimation:c,allowAnimatedTransform:d,encoding:u}=n;if(!R(e,t,i))return p;let m=d??!0,g=M(t.id,c,m);if(!g||h)return eR(e,t,i,{...n,autoEncode:s,useSrcset:g});let f={...i,...function(e,{width:t,height:i}){if(!t||!i){let r=t||Math.min(980,e.width),n=r/e.width;return{width:r,height:i||e.height*n}}return{width:t,height:i}}(t,i)},{alignment:_,htmlTag:b}=f,T=eO(e,t,f),I=function(e,t,{width:i,height:r},n=!1){var a,o;if(n)return{width:i,height:r};let s=!eA.includes(e),l=eO(e,t,{width:i,height:r}),h=!l&&ev.includes(e),c=h?t.width:i,d=h?t.height:r,u=s?(a=c,o=x(t.id),a>900?o?.05:.15:a>500?o?.1:.18:a>200?.25:1):1;return{width:l?1920:c*u,height:d*u}}(e,t,f,l),E=(a=f.width,l?0:ev.includes(e)?1:a>200?2:3),w=(o=ev.includes(e)&&!T,e===r.SCALE_TO_FILL||o?r.SCALE_TO_FIT:e),L=function(e,t,i,n="center"){let a={img:{},container:{}};if(e===r.SCALE_TO_FILL){var o;let e=t.focalPoint&&(o=t.focalPoint,eL[`${o.x}% ${o.y}%`]||"");t.focalPoint&&!e?a.img={objectPosition:function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(t,i,t.focalPoint)}:a.img={objectPosition:ew[e||n]}}else[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE].includes(e)?a.img={objectFit:"none",top:"auto",left:"auto",right:"auto",bottom:"auto"}:ev.includes(e)&&(a.container={backgroundSize:`${t.width}px ${t.height}px`});return a}(e,t,i,_),{uri:v}=eR(w,t,{...I,alignment:_,htmlTag:b},{autoEncode:s,filters:E?{blur:E}:{},hasAnimation:c,allowAnimatedTransform:m,encoding:u,isPlaceholderFlow:!0}),{attr:A={},css:O}=eR(e,t,{...f,alignment:_,htmlTag:b},{});return O.img=O.img||{},O.container=O.container||{},Object.assign(O.img,L.img,ey),Object.assign(O.container,L.container),{uri:v,css:O,attr:A,transformed:!0}}function eR(e,t,i,r){let n={};if(R(e,t,i)){var a;let o,s=ei(e,t,i),l=et(e,t,s,r);n.uri=eE(e,t,s,r,l),r?.useSrcset&&(n.srcset=(a=n,o=s.pixelAspectRatio||1,{dpr:[`${1===o?a.uri:eE(e,t,{...s,pixelAspectRatio:1},r)} 1x`,`${2===o?a.uri:eE(e,t,{...s,pixelAspectRatio:2},r)} 2x`]})),Object.assign(n,(s.htmlTag===u.BG?j:s.htmlTag===u.SVG?X:J)(l,s),{transformed:l.transformed})}else n=p;return n}function eM(e,t,i,r){if(R(e,t,i)){let n=ei(e,t,i),a=et(e,t,n,r);return{uri:eE(e,t,n,r||{},a)}}return{uri:""}}let ex="https://static.wixstatic.com/",eS="https://static.wixstatic.com/media/",eG=/^media\//i,eP="undefined"!=typeof window?window.devicePixelRatio:1,eN=(e,t)=>{let i=t&&t.baseHostURL;return i?`${i}${e}`:eG.test(e)?`${ex}${e}`:`${eS}${e}`};q();let eF="center",ek=[1920,1536,1366,1280,980],e$=(e,t,i)=>{let{displayMode:r,uri:n,width:a,height:o,name:s,crop:l,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,encoding:p,siteMargin:f,widthProportion:_,allowFullGIFTransformation:b,baseHostURL:T}=e;if(_){let e,g,I=(e="original_size"===r,g=a/o,ek.map((r,I)=>{let E=980===r,w=e=>E?t:_/100*(e-2*(f||0)),L=w(ek[I+1]),v=w(r),A=L/i,O=!(e||E)&&((e,t,i,r,n,a,o,s=eF)=>{if(e>t){let e=Math.round(r/(a/n)),t=Math.round(i/2-e/2);return s.includes("top")?t=0:s.includes("bottom")&&(t=i-e),{width:r,height:e,x:0,y:t}}{let e=Math.round(i/(n/o)),t=Math.round(r/2-e/2);return s.includes("left")?t=0:s.includes("right")&&(t=r-e),{width:e,height:i,x:t,y:0}}})(A,g,o,a,i,L,v,c),{srcset:y,fallbackSrc:C,css:R}=e$({displayMode:e?"original_size":E?"fill":"fit",uri:n,width:a,height:o,crop:l||O,name:s,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,encoding:p,allowFullGIFTransformation:b,baseHostURL:T},v,i);return e&&R&&(R.img.objectFit="cover"),{srcset:y||"",sizes:E?`${_}vw`:`${v}px`,media:`(max-width: ${r}px)`,fallbackSrc:C,imgStyle:R?.img}})).filter(Boolean).reverse();return{fallbackSrc:I[0].fallbackSrc,sources:I,css:I[0].imgStyle}}{let{srcset:e,css:f,uri:_}=eR(r,{id:n,width:a,height:o,name:s,crop:l,focalPoint:h},{width:t,height:i,alignment:c},{focalPoint:h,name:s,quality:d?.quality,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,useSrcset:!0,encoding:p,allowFullGIFTransformation:b}),I=T||eH,E=e?.dpr?.map(e=>/^[a-z]+:/.test(e)?e:`${I}${e}`);return{fallbackSrc:`${I}${_}`,srcset:E?.join(", ")||"",css:f}}};q();let eB={getScaleToFitImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FIT,{id:e,width:t,height:i,name:o&&o.name},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getScaleToFillImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:o&&o.name,focalPoint:{x:o&&o.focalPoint&&o.focalPoint.x,y:o&&o.focalPoint&&o.focalPoint.y}},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getCropImageURL:function(e,t,i,n,a,o,s,l,c,d){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:d&&d.name,crop:{x:n,y:a,width:o,height:s}},{width:l,height:c,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:d?.devicePixelRatio??eP},d).uri,d)}},eH=eS,ez=ex},55901(e,t,i){(0,i(16858).Rr)()},19787(e,t,i){var r=i(16858),n=i(99090);((e=window)=>{let{mediaServices:t,environmentConsts:i,requestUrl:a,staticVideoUrl:o}=e.customElementNamespace;(0,r.EH)(e,t,{...i,prefersReducedMotion:(0,n.O)(window,a),staticVideoUrl:o}),(0,r.jh)(e),(0,r.p7)(e,t,i)})(),window.resolveExternalsRegistryModule("imageClientApi")},16858(e,t,i){i.d(t,{_o:()=>s,NL:()=>O,yO:()=>w,vk:()=>c,EH:()=>k,KU:()=>l,Rr:()=>x,jh:()=>G,p7:()=>A,Aq:()=>h});var r=i(17709),n=i.n(r);let a=(e,t,i)=>{let r=1,n=0;for(let a=0;a<e.length;a++){let o=e[a];if(o>t||(n+=o)>t&&(r++,n=o,r>i))return!1}return!0};function o(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function s(){class e extends HTMLElement{setContainerHeight(e){this.style.setProperty("--flex-columns-height",`${e}px`)}removeContainerHeight(){this.style.removeProperty("--flex-columns-height")}getColumnCount(e){return parseInt(e.getPropertyValue("--flex-column-count"),10)}getRowGap(e){return parseInt(e.getPropertyValue("row-gap")||"0",10)}activate(){this.isActive=!0,this.attachObservers(),this.recalcHeight()}deactivate(){this.isActive=!1,this.detachHeightCalcObservers(),this.removeContainerHeight()}calcActive(){return"multi-column-layout"===getComputedStyle(this).getPropertyValue("--container-layout-type")}get itemsHeights(){return Array.from(this.children).map(e=>{let t=getComputedStyle(e),i=parseFloat(t.height||"0");return i+=parseFloat(t.marginTop||"0"),{height:i+=parseFloat(t.marginBottom||"0")}})}setIsActive(){let e=this.calcActive();this.isActive!==e&&(e?this.activate():this.deactivate())}connectedCallback(){this.cleanUp(),this.createObservers(),this.setIsActive(),window.document.body&&this.isActiveObserver?.observe(window.document.body)}disconnectedCallback(){this.cleanUp()}constructor(...e){super(...e),o(this,"containerWidthObserver",void 0),o(this,"mutationObserver",void 0),o(this,"isActiveObserver",void 0),o(this,"childResizeObserver",void 0),o(this,"containerWidth",0),o(this,"isActive",!1),o(this,"isDuringCalc",!1),o(this,"attachObservers",()=>{this.mutationObserver?.observe(this,{childList:!0,subtree:!0}),this.containerWidthObserver?.observe(this),Array.from(this.children).forEach(e=>{this.handleItemAdded(e)})}),o(this,"detachHeightCalcObservers",()=>{this.mutationObserver?.disconnect(),this.containerWidthObserver?.disconnect(),this.childResizeObserver?.disconnect()}),o(this,"recalcHeight",()=>{this.isActive&&n().measure(()=>{if(!this.isActive||this.isDuringCalc)return;this.isDuringCalc=!0;let e=getComputedStyle(this),t=((e,t,i)=>{let r=-1/0,n=e.map(e=>(e.height+t>r&&(r=e.height+t),e.height+t)),o=r,s=r*e.length,l=r;for(;o<s;){let e=Math.floor((o+s)/2);a(n,e,i)?s=e:o=e+1,l=o}return l-t})(this.itemsHeights,this.getRowGap(e),this.getColumnCount(e));this.isDuringCalc=!1,n().mutate(()=>{this.setContainerHeight(t),this.style.setProperty("visibility",null)})})}),o(this,"cleanUp",()=>{this.detachHeightCalcObservers(),this.removeContainerHeight(),this.isActiveObserver?.disconnect()}),o(this,"handleItemAdded",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.observe(e)}),o(this,"handleItemRemoved",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.unobserve(e)}),o(this,"createObservers",()=>{this.containerWidthObserver=new ResizeObserver(e=>{let t=e[0];if(t.contentRect.width!==this.containerWidth){if(0===this.containerWidth){this.containerWidth=t.contentRect.width;return}this.containerWidth=t.contentRect.width,this.recalcHeight()}}),this.mutationObserver=new MutationObserver(e=>{e.forEach(e=>{Array.from(e.removedNodes).forEach(this.handleItemRemoved),Array.from(e.addedNodes).forEach(this.handleItemAdded)}),this.recalcHeight()}),this.childResizeObserver=new ResizeObserver(()=>{this.recalcHeight()}),this.isActiveObserver=new ResizeObserver(()=>{this.setIsActive()})})}}return e}let l="multi-column-layouter",h=()=>{let e={observedElementToRelayoutTarget:new Map,getLayoutTargets(t){let i=new Set;return t.forEach(t=>i.add(e.observedElementToRelayoutTarget.get(t))),i},observe:i=>{e.observedElementToRelayoutTarget.set(i,i),t.observe(i)},unobserve:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)},observeChild:(i,r)=>{e.observedElementToRelayoutTarget.set(i,r),t.observe(i)},unobserveChild:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)}},t=new window.ResizeObserver(t=>{e.getLayoutTargets(t.map(e=>e.target)).forEach(e=>e.reLayout())});return e},c=(e,t=window)=>{let i=!1;return(...r)=>{i||(i=!0,t.requestAnimationFrame(()=>{i=!1,e(...r)}))}};function d(...e){let t=e[0];for(let i=1;i<e.length;++i)t=`${t.replace(/\/$/,"")}/${e[i].replace(/^\//,"")}`;return t}var u=i(26350);let m={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},g=(e,t)=>e&&t&&Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),p=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||m[i]?r:`${r}px`;else e.style.removeProperty(i)}),f=(e,t,i=!0)=>{var r;return e&&i?(r=e.dataset[t])?"true"===r||"false"!==r&&("null"===r?null:`${+r}`===r?+r:r):r:e.dataset[t]},_=(e,t)=>e&&t&&Object.assign(e.dataset,t),b=e=>e||document.documentElement.clientHeight||window.innerHeight||0,T={fit:"contain",fill:"cover"};var I=i(69654);let E=(e,t,i)=>{void 0===e.customElements.get(t)&&e.customElements.define(t,i)};function w(e,t=window){class i extends t.HTMLElement{reLayout(){}connectedCallback(){this.observeResize(),this.reLayout()}disconnectedCallback(){this.unobserveResize(),this.unobserveChildren()}observeResize(){e.resizeService.observe(this)}unobserveResize(){e.resizeService.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new t.MutationObserver(()=>this.reLayout())),this.childListObserver.observe(e,{childList:!0})}observeChildAttributes(e,i=[]){this.childrenAttributesObservers||(this.childrenAttributesObservers=[]);let r=new t.MutationObserver(()=>this.reLayout());r.observe(e,{attributeFilter:i}),this.childrenAttributesObservers.push(r)}observeChildResize(t){this.childrenResizeObservers||(this.childrenResizeObservers=[]),e.resizeService.observeChild(t,this),this.childrenResizeObservers.push(t)}unobserveChildrenResize(){this.childrenResizeObservers&&(this.childrenResizeObservers.forEach(t=>{e.resizeService.unobserveChild(t)}),this.childrenResizeObservers=null)}unobserveChildren(){if(this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null),this.childrenAttributesObservers){for(let e of this.childrenAttributesObservers)e.disconnect(),e=null;this.childrenAttributesObservers=null}this.unobserveChildrenResize()}constructor(){super()}}return i}let L=e=>{if(e.customElementNamespace||(e.customElementNamespace={}),void 0===e.customElementNamespace.WixElement){let t=w({resizeService:h()},e);return e.customElementNamespace.WixElement=t,t}return e.customElementNamespace.WixElement},v="wix-bg-image",A=(e=globalThis.window,t={},i={experiments:{}})=>{if(e&&void 0===e.customElements.get(v)){let r=function(e,t,i,r=window){let n=((e=window)=>({measure:function(e,t,i,{containerId:r,bgEffectName:n},a){let o=i[e],s=i[r],{width:l,height:h}=a.getMediaDimensionsByEffect(n,s.offsetWidth,s.offsetHeight,b(a.getScreenHeightOverride?.()));t.width=l,t.height=h,t.currentSrc=o.style.backgroundImage,t.bgEffectName=o.dataset.bgEffectName},patch:function(t,i,r,n,a){let o=r[t];n.targetWidth=i.width,n.targetHeight=i.height;let s=((e,t,i)=>{var r;let n,{targetWidth:a,targetHeight:o,imageData:s,filters:l,displayMode:h=u.fittingTypes.SCALE_TO_FILL}=e;if(!a||!o||!s.uri)return{uri:"",css:{}};let{width:c,height:d,crop:m,name:g,focalPoint:p,upscaleMethod:f,quality:_,devicePixelRatio:b=t.devicePixelRatio}=s,T={filters:l,upscaleMethod:f,..._,hasAnimation:e?.hasAnimation||s?.hasAnimation},I=(r=b,((n=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0].toLowerCase().includes("devicepixelratio")))?Number(n[1]):null)||r||1),E={id:s.uri,width:c,height:d,...m&&{crop:m},...p&&{focalPoint:p},...g&&{name:g}},w={width:a,height:o,htmlTag:"bg",pixelAspectRatio:I,alignment:e.alignType||u.alignTypes.CENTER},L=(0,u.getData)(h,E,w,T),v=s.baseHostURL||t.staticMediaUrl;return L.uri=((e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=`${t}/`;return e&&(/^micons\//.test(e)?r=i:"ico"===/[^.]+$/.exec(e)[0]&&(r=r.replace("media","ficons"))),r+e})(L.uri,v,t.mediaRootUrl),L})(n,a,0);if(function(e="",t){return!e.includes(t)||!!e!=!!t}(i.currentSrc,s.uri)){let t,i;t={backgroundImage:`url("${s.uri}")`,...s.css.container},(i=new e.Image).onload=p.bind(null,o,t),i.src=s.uri}else p(o,s.css.container)}}))(r);return class extends e{reLayout(){if(t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")||t.isExperimentOpen("specs.thunderbolt.final_force_webp")||t.isExperimentOpen("specs.thunderbolt.final_force_no_webp"))return;let e={},a={},o=(0,I.ZH)(this,{experiments:i.experiments,logger:i.logger,document:r.document}),s=JSON.parse(this.dataset.tiledImageInfo),{bgEffectName:l}=this.dataset,{containerId:h}=s,c=(0,I.qc)(h,{experiments:i.experiments,logger:i.logger,document:r.document});e[o]=this,e[h]=c,s.displayMode=s.imageData.displayMode,t.mutationService.measure(()=>{n.measure(o,a,e,{containerId:h,bgEffectName:l},t)}),t.mutationService.mutate(()=>{n.patch(o,a,e,s,i,t)})}attributeChangedCallback(e,t){t&&this.reLayout()}disconnectedCallback(){super.disconnectedCallback()}static get observedAttributes(){return["data-tiled-image-info"]}constructor(){super()}}}(L(e),t,i,e);E(e,v,r)}};function O(e,t,i,r=window){let n={width:void 0,height:void 0,left:void 0};return class extends e{reLayout(){let{containerId:e,pageId:a,useCssVars:o,bgEffectName:s}=this.dataset,l=(0,I.hW)(this,e)||(0,I.qc)(`${e}`,{experiments:i.experiments,logger:i.logger,document:r.document}),h=(0,I.hW)(this,a)||(0,I.qc)(`${a}`,{experiments:i.experiments,logger:i.logger,document:r.document}),c={};t.mutationService.measure(()=>{let e="fixed"===r.getComputedStyle(this).position,i=b(t.getScreenHeightOverride?.()),n=l.getBoundingClientRect(),a=t.getMediaDimensionsByEffect(s,n.width,n.height,i),{hasParallax:d}=a,u=h&&(r.getComputedStyle(h).transition||"").includes("transform"),{width:m,height:g}=a,p=`${m}px`,f=`${g}px`,_=`${(n.width-m)/2}px`;if(e){let e=r.document.documentElement.clientLeft;_=u?`${l.offsetLeft-e}px`:`${n.left-e}px`}let T=e||d?0:`${(n.height-g)/2}px`;Object.assign(c,o?{"--containerW":p,"--containerH":f,"--containerL":_,"--screenH_val":`${i}`}:{width:p,height:f,left:_,top:T})}),t.mutationService.mutate(()=>{if(o){let e;p(this,n),e=this,e&&c&&Object.keys(c).forEach(t=>{e.style.setProperty(t,c[t])})}else p(this,c)})}connectedCallback(){super.connectedCallback(),t.windowResizeService.observe(this)}disconnectedCallback(){super.disconnectedCallback(),t.windowResizeService.unobserve(this)}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-is-full-height","data-container-size"]}constructor(){super()}}}let y="__more__",C="moreContainer";function R(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let M="wix-dropdown-menu",x=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(M)){let t=h(),i=function(e,t,i=window){let r=((e=window)=>{let t=(e,t,i,r,n,a,o,s)=>{if(e-=n*(o?r.length:r.length-1),e-=s.left+s.right,t&&(r=r.map(()=>a)),r.some(e=>0===e))return null;let l=0,h=r.reduce((e,t)=>e+t,0);if(h>e)return null;if(t){if(i){let t=Math.floor(e/r.length),i=r.map(()=>t);if((l=t*r.length)<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r}if(i){let t=Math.floor((e-h)/r.length);l=0;let i=r.map(e=>(l+=e+t,e+t));if(l<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r},i=e=>{let t=parseFloat(e);return isFinite(t)?t:0},r=e=>!isNaN(parseFloat(e))&&isFinite(e);return{measure:(r,n)=>{var a;let o,s,l,h,c,d,u,m,g,p,_={},b={};b[r]=n;let T=1,I=n.getRootNode().querySelector("[id^=site-root]");I&&(T=I.getBoundingClientRect().width/I.offsetWidth);let E=(o=+f(b[r],"numItems"))<=0||o>Number.MAX_SAFE_INTEGER?[]:Array(o).fill(0).map((e,t)=>String(t)),w=["moreContainer","itemsContainer","dropWrapper"].concat(E,[y]);w.forEach(e=>{let t=`${r}${e}`;b[t]=n.getRootNode().getElementById(`${t}`)}),a=T,s={},w.forEach(e=>{let t=`${r}${e}`,i=b[t];i&&(s[t]={width:i.offsetWidth,boundingClientRectWidth:Math.round(i.getBoundingClientRect().width/a),height:i.offsetHeight})}),_.children=s;let L=b[r],v=b[`${r}itemsContainer`],A=v.childNodes,O=b[`${r}moreContainer`],C=O.childNodes,R=f(L,"stretchButtonsToMenuWidth"),M=f(L,"sameWidthButtons");_.absoluteLeft=L.getBoundingClientRect().left,_.bodyClientWidth=e.document.body.clientWidth,_.alignButtons=f(L,"dropalign"),_.hoverListPosition=f(L,"drophposition"),_.menuBorderY=parseInt(f(L,"menuborderY"),10),_.ribbonExtra=parseInt(f(L,"ribbonExtra"),10),_.ribbonEls=parseInt(f(L,"ribbonEls"),10),_.labelPad=parseInt(f(L,"labelPad"),10),_.menuButtonBorder=parseInt(f(L,"menubtnBorder"),10),l=v.lastChild,_.menuItemContainerMargins=(parseInt((h=e.getComputedStyle(l)).marginLeft,10)||0)+(parseInt(h.marginRight,10)||0),d=i((c=e.getComputedStyle(v)).borderTopWidth)+i(c.paddingTop),u=i(c.borderBottomWidth)+i(c.paddingBottom),m=i(c.borderLeftWidth)+i(c.paddingLeft),g=i(c.borderRightWidth)+i(c.paddingRight),d+=i(c.marginTop),u+=i(c.marginBottom),m+=i(c.marginLeft),g+=i(c.marginRight),_.menuItemContainerExtraPixels={top:d,bottom:u,left:m,right:g,height:d+u,width:m+g},_.needToOpenMenuUp=L.getBoundingClientRect().top>e.innerHeight/2,_.menuItemMarginForAllChildren=!R||"false"!==v.getAttribute("data-marginAllChildren"),_.moreSubItem=[],_.labelWidths={},_.linkIds={},_.parentId={},_.menuItems={},_.labels={},C.forEach((t,i)=>{_.parentId[t.id]=f(t,"parentId");let r=f(t,"dataId");_.menuItems[r]={dataId:r,parentId:f(t,"parentId"),moreDOMid:t.id,moreIndex:i},b[t.id]=t;let n=t.querySelector("p");b[n.id]=n,_.labels[n.id]={width:n.offsetWidth,height:n.offsetHeight,left:n.offsetLeft,lineHeight:parseInt(e.getComputedStyle(n).fontSize,10)},_.moreSubItem.push(t.id)}),A.forEach((e,t)=>{let i,r,n=f(e,"dataId");_.menuItems[n]=_.menuItems[n]||{},_.menuItems[n].menuIndex=t,_.menuItems[n].menuDOMid=e.id,_.children[e.id].left=e.offsetLeft;let a=e.querySelector("p");b[a.id]=a,_.labelWidths[a.id]=(i=a,r=T,Math.round(i.getBoundingClientRect().width/r));let o=e.querySelector("p");b[o.id]=o,_.linkIds[e.id]=o.id});let x=L.offsetHeight;_.height=x,_.width=L.offsetWidth,p=x-_.menuBorderY-_.labelPad-_.ribbonEls-_.menuButtonBorder-_.ribbonExtra,_.lineHeight=`${p}px`;let S=((e,i,r,n,a)=>{let o=i.width;i.hasOriginalGapData={},i.originalGapBetweenTextAndBtn={};let s=a.map(t=>{let r,a=f(n[e+t],"originalGapBetweenTextAndBtn");return(void 0===a?(i.hasOriginalGapData[t]=!1,r=i.children[e+t].boundingClientRectWidth-i.labelWidths[`${e+t}label`],i.originalGapBetweenTextAndBtn[e+t]=r):(i.hasOriginalGapData[t]=!0,r=parseFloat(a)),i.children[e+t].width>0)?Math.floor(i.labelWidths[`${e+t}label`]+r):0}),l=s.pop(),h=r.sameWidthButtons,c=r.stretchButtonsToMenuWidth,d=!1,u=i.menuItemContainerMargins,m=i.menuItemMarginForAllChildren,g=i.menuItemContainerExtraPixels,p=s.reduce((e,t)=>e>t?e:t,-1/0),_=t(o,h,c,s,u,p,m,g);if(!_){for(let e=1;e<=s.length;e++)if(_=t(o,h,c,s.slice(0,-1*e).concat(l),u,p,m,g)){d=!0;break}_||(d=!0,_=[l])}if(d){let e=_[_.length-1];for(_=_.slice(0,-1);_.length<a.length;)_.push(0);_[_.length-1]=e}return{realWidths:_,moreShown:d}})(r,_,{sameWidthButtons:M,stretchButtonsToMenuWidth:R},b,E.concat(y));return _.realWidths=S.realWidths,_.isMoreShown=S.moreShown,_.menuItemIds=E,_.hoverState=f(O,"hover",!1),{measures:_,domNodes:b}},patch:(e,t,i)=>{let n=i[e];p(n,{overflowX:"visible"});let{menuItemIds:a,needToOpenMenuUp:o}=t,s=a.concat(y);_(n,{dropmode:o?"dropUp":"dropDown"});let l=0;if(t.hoverState===y){let e,r,n=t.realWidths.indexOf(0),o=t.menuItems[e=t.menuItems,r=e=>e.menuIndex===n,Object.keys(e).find(t=>r(e[t],t))],s=o.moreIndex,h=s===a.length-1;o.moreDOMid&&g(i[o.moreDOMid],{"data-listposition":h?"dropLonely":"top"}),Object.values(t.menuItems).filter(e=>!!e.moreDOMid).forEach(e=>{if(e.moreIndex<s)p(i[e.moreDOMid],{display:"none"});else{let i=`${e.moreDOMid}label`;l=Math.max(t.labels[i].width,l)}})}else t.hoverState&&t.moreSubItem.forEach((i,r)=>{let n=`${e+C+r}label`;l=Math.max(t.labels[n].width,l)});((e,t,i,n)=>{let{hoverState:a}=t;if("-1"!==a){let{menuItemIds:o}=t,s=o.indexOf(a);if(r(t.hoverState)||a===y){if(!t.realWidths)return;let a=Math.max(n,t.children[-1!==s?e+s:e+y].width),o=Math.max(n,t.children[`${e}dropWrapper`].width),l=(0!==t.moreSubItem.length?t.labels[`${t.moreSubItem[0]}label`].lineHeight:0)+15+t.menuBorderY+t.labelPad+t.menuButtonBorder;t.moreSubItem.forEach(e=>{p(i[e],{minWidth:`${a}px`}),p(i[`${e}label`],{minWidth:"0px",lineHeight:`${l}px`})});let h=r(t.hoverState)?t.hoverState:"__more__",c={width:t.children[e+h].width,left:t.children[e+h].left},d=((e,t,i,r,n)=>{let{width:a,height:o,alignButtons:s,hoverListPosition:l,menuItemContainerExtraPixels:h}=t,c=t.absoluteLeft,d=((e,t,i,r,n,a,o,s,l,h)=>{let c="0px",d="auto",u=a.left,m=a.width;if("left"===t?c="left"===n?0:`${u+e.left}px`:"right"===t?(d="right"===n?0:`${r-u-m-e.right}px`,c="auto"):"left"===n?c=`${u+(m+e.left-i)/2}px`:"right"===n?(c="auto",d=`${(m+e.right-(i+e.width))/2}px`):c=`${e.left+u+(m-(i+e.width))/2}px`,"auto"!==c){let e=o+parseInt(c,10);e+h>l?(c="auto",d=0):c=e<0?0:c}return"auto"!==d&&(d=s-parseInt(d,10)>l?0:d),{moreContainerLeft:c,moreContainerRight:d}})(h,s,r,a,l,i,c,c+a,t.bodyClientWidth,n);return{left:d.moreContainerLeft,right:d.moreContainerRight,top:t.needToOpenMenuUp?"auto":`${o}px`,bottom:t.needToOpenMenuUp?`${o}px`:"auto"}})(0,t,c,a,o);p(i[`${e}${C}`],{left:d.left,right:d.right}),p(i[`${e}dropWrapper`],{left:d.left,right:d.right,top:d.top,bottom:d.bottom})}}})(e,t,i,l),t.originalGapBetweenTextAndBtn&&s.forEach(r=>{t.hasOriginalGapData[r]||_(i[`${e}${r}`],{originalGapBetweenTextAndBtn:t.originalGapBetweenTextAndBtn[`${e}${r}`]})}),((e,t,i,r)=>{let{realWidths:n,height:a,menuItemContainerExtraPixels:o}=i,s=0,l=null,h=null,c=i.lineHeight,d=a-o.height;for(let a=0;a<r.length;a++){let o=n[a],u=o>0,m=e+r[a];h=i.linkIds[m],u?(s++,l=m,p(t[m],{width:`${o}px`,height:`${d}px`,position:"relative","box-sizing":"border-box",overflow:"visible",visibility:"inherit"}),p(t[`${m}label`],{"line-height":c}),g(t[m],{"aria-hidden":!1})):(p(t[m],{height:"0px",overflow:"hidden",position:"absolute",visibility:"hidden"}),g(t[m],{"aria-hidden":!0}),g(t[h],{tabIndex:-1}))}1===s&&(_(t[`${e}moreContainer`],{listposition:"lonely"}),_(t[l],{listposition:"lonely"}))})(e,i,t,s)}}})(i);return class extends e{static get observedAttributes(){return["data-hovered-item"]}attributeChangedCallback(){this._isVisible()&&this.reLayout()}connectedCallback(){this._id=this.getAttribute("id"),this._hideElement(),this._waitForDomLoad().then(()=>{super.observeResize(),this._observeChildrenResize(),this.reLayout()})}disconnectedCallback(){t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),super.disconnectedCallback()}_waitForDomLoad(){let e,t=new Promise(t=>{e=t});return this._isDomReady()?e():(this._waitForDomReadyObserver=new i.MutationObserver(()=>this._onRootMutate(e)),this._waitForDomReadyObserver.observe(this,{childList:!0,subtree:!0})),t}_isDomReady(){return this._itemsContainer=this.getRootNode().getElementById(`${this._id}itemsContainer`),this._dropContainer=this.getRootNode().getElementById(`${this._id}dropWrapper`),this._itemsContainer&&this._dropContainer}_onRootMutate(e){this._isDomReady()&&(this._waitForDomReadyObserver.disconnect(),e())}_observeChildrenResize(){let e=Array.from(this._itemsContainer.childNodes);this._labelItems=e.map(e=>this.getRootNode().getElementById(`${e.getAttribute("id")}label`)),this._labelItems.forEach(e=>super.observeChildResize(e))}_setVisibility(e){this._visible=e,this.style.visibility=e?"inherit":"hidden"}_isVisible(){return this._visible}_hideElement(){this._setVisibility(!1)}_showElement(){this._setVisibility(!0)}reLayout(){let e,i;t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),this._mutationIds.read=t.mutationService.measure(()=>{let t=r.measure(this._id,this);e=t.measures,i=t.domNodes}),this._mutationIds.write=t.mutationService.mutate(()=>{r.patch(this._id,e,i),this._showElement()})}constructor(...e){super(...e),R(this,"_visible",!1),R(this,"_mutationIds",{read:null,write:null}),R(this,"_itemsContainer",null),R(this,"_dropContainer",null),R(this,"_labelItems",[])}}}(L(e),{resizeService:t,mutationService:n()},e);e.customElements.define(M,i)}},S="wix-iframe",G=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(S)){var t;let i=(t=L(e),class extends t{reLayout(){let e=this.querySelector("iframe");if(e){let t=e.dataset.src;t&&e.src!==t&&(e.src=t,e.dataset.src="",this.dataset.src="")}}attributeChangedCallback(e,t,i){i&&this.reLayout()}static get observedAttributes(){return["data-src"]}constructor(){super()}});E(e,S,i)}},P={measure(e,t,{hasBgScrollEffect:i,videoWidth:r,videoHeight:n,fittingType:a,alignType:o="center",qualities:s,staticVideoUrl:l,videoId:h,videoFormat:c,focalPoint:m}){var g,p,f,_,b,I,E,w,L,v;let A,O,y,C=i?t.offsetWidth:e.parentElement.offsetWidth,R=e.parentElement.offsetHeight,M=parseInt(r,10),x=parseInt(n,10),S=(g=a,p={wScale:C/M,hScale:R/x},f=M,_=x,{width:Math.round(f*(A=g===u.fittingTypes.SCALE_TO_FIT?Math.min(p.wScale,p.hScale):Math.max(p.wScale,p.hScale))),height:Math.round(_*A)}),G=(b=function(e,{width:t,height:i}){var r;return(r=e=>e.size,Object.values(e.reduce((e,t)=>(e[r(t)]=t,e),{}))).find(e=>e.size>t*i)||e[e.length-1]}(s,S),I=l,E=h,"mp4"===(w=c)?b.url?d(I,b.url):d(I,E,b.quality,w,"file.mp4"):""),P=(L=e,v=G,O=L.networkState===L.NETWORK_NO_SOURCE,y=!L.currentSrc.endsWith(v),v&&(y||O)),N=T[a]||"cover",F=m?function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(S,{width:C,height:R},m):"",k=o.replace("_"," ");return{videoSourceUrl:G,needsSrcUpdate:P,videoStyle:{height:"100%",width:"100%",objectFit:N,objectPosition:F||k}}},mutate(e,t,i,r,n,a,o,s,l,h,c){var d,u,m;if(n?i.setAttribute("autoplay",""):i.removeAttribute("autoplay"),t){let{width:e,height:i,...n}=r;p(t,n)}else(function(e,t,i,r,n,a){a&&t.paused&&(i.style.opacity="1",t.style.opacity="0");let o=t.paused||""===t.currentSrc;if((e||a)&&o)if(t.ontimeupdate=null,t.onseeked=null,t.onplay=null,!a&&n){let e=t.muted;t.muted=!0,t.ontimeupdate=()=>{t.currentTime>0&&(t.ontimeupdate=null,t.onseeked=()=>{t.onseeked=null,t.muted=e,N(t,i,r)},t.currentTime=0)}}else t.onplay=()=>{a||(t.onplay=null),N(t,i,r)}})(o,i,e,s,n,c),p(i,r);d=o,u=i,m=a,d&&(u.src=m,u.load()),i.playbackRate=h}};function N(e,t,i){"fade"===i&&(t.style.transition="opacity 1.6s ease-out"),t.style.opacity="0",e.style.opacity="1"}let F="wix-video",k=(e=globalThis.window,t,i={experiments:{}})=>{if(e&&void 0===e.customElements.get(F)){var r,n;let a=L(e),o=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"50% 100%"});E(e,F,(r=a,n={...t,intersectionObserver:o},class extends r{connectedCallback(){i.disableImagesLazyLoading?this.reLayout():n.intersectionObserver.observe(this)}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}unobserveIntersect(){n.intersectionObserver?.unobserve(this)}reLayout(){let{isVideoDataExists:e,videoWidth:t,videoHeight:r,qualities:a,videoId:o,videoFormat:s,alignType:l,fittingType:h,focalPoint:c,hasBgScrollEffect:d,autoPlay:u,animatePoster:m,containerId:g,isEditorMode:p,playbackRate:f,hasAlpha:_}=JSON.parse(this.dataset.videoInfo);if(!e)return;let b=!i.prefersReducedMotion&&u,T=this.querySelector(`video[id^="${g}"]`),E=this.querySelector(`.bgVideoposter[id^="${g}"]`);if(this.unobserveChildren(),!(T&&E))return void this.observeChildren(this);let w=(0,I.qc)(g,{document:this.getRootNode(),experiments:i.experiments,logger:i.logger}),L=(0,I.iT)(`.webglcanvas[id^="${g}"]`,{element:w,experiments:i.experiments,logger:i.logger});(_||"true"===w.dataset.hasAlpha)&&!L?requestAnimationFrame(()=>this.reLayout()):n.mutationService.measure(()=>{let{videoSourceUrl:e,needsSrcUpdate:u,videoStyle:g}=P.measure(T,w,{hasBgScrollEffect:d,videoWidth:t,videoHeight:r,fittingType:h,alignType:l,qualities:a,staticVideoUrl:i.staticVideoUrl,videoId:o,videoFormat:s,focalPoint:c});n.mutationService.mutate(()=>{P.mutate(E,L,T,g,b,e,u,m,s,f,p)})})}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-video-info"]}constructor(){super()}}))}}},46418(e,t,i){var r=i(17709),n=i.n(r),a=i(33842),o=i(26350),s=i(16858);let l=o,h=function(e,t=window){!function(e){if(void 0===e.Reflect||void 0===e.customElements||e.customElements.hasOwnProperty("polyfillWrapFlushCallback"))return;let t=e.HTMLElement;e.HTMLElement=function(){return e.Reflect.construct(t,[],this.constructor)},e.HTMLElement.prototype=t.prototype,e.HTMLElement.prototype.constructor=e.HTMLElement,e.Object.setPrototypeOf(e.HTMLElement,t),e.Object.defineProperty(e.HTMLElement,"name",{value:t.name})}(t);let i={registry:new Set,observe(e){i.registry.add(e)},unobserve(e){i.registry.delete(e)}};e.windowResizeService.init((0,s.vk)(()=>i.registry.forEach(e=>e.reLayout())),t);let r=(0,s.Aq)(),n=(e,i)=>{void 0===t.customElements.get(e)&&t.customElements.define(e,i)},a=(0,s.yO)({resizeService:r},t);return t.customElementNamespace={WixElement:a},n("wix-element",a),{contextWindow:t,defineWixBgMedia:e=>{n("wix-bg-media",(0,s.NL)(a,{windowResizeService:i,...e},t))},defineMultiColumnRepeaterElement:()=>{let e=(0,s._o)();n(s.KU,e)}}};var c=i(91534),d=i(76526);let u=()=>({getSiteScale:()=>{let e=document.querySelector("#site-root");return e?e.getBoundingClientRect().width/e.offsetWidth:1}}),m=(e,t,i,r)=>{let{getMediaDimensions:n,...o}=a[e]||{};return n?{...n(t,i,r),...o}:{width:t,height:i,...o}},{experiments:g,media:p,requestUrl:f,site:_}=window.viewerModel,b=(0,d.isExperimentOpen)(g,"specs.thunderbolt.customImageDomain");((e,t,i,r)=>{var a,o,s;let g,p,f,_,b,T,{environmentConsts:I,wixCustomElements:E,media:w,requestUrl:L,mediaServices:v}=(a=void 0,o=void 0,s=void 0,p={"specs.thunderbolt.useClassSelectorsForLookup":(g=t=>(0,d.isExperimentOpen)(e.experiments,t))("specs.thunderbolt.useClassSelectorsForLookup"),"specs.thunderbolt.addIdAsClassName":g("specs.thunderbolt.addIdAsClassName")},f={staticMediaUrl:e.media.staticMediaUrl,mediaRootUrl:e.media.mediaRootUrl,externalBaseUrl:e.externalBaseUrl??"",userDomainMediaPrefixes:e.userDomainMediaPrefixes??[],experiments:p,isViewerMode:!0,devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,...s},b={getMediaDimensionsByEffect:m,..._={mutationService:n(),isExperimentOpen:g,siteService:u()},...o},{...e,wixCustomElements:a||(T=u(),h({resizeService:{init:e=>new ResizeObserver(e)},windowResizeService:{init:e=>window.addEventListener("resize",e)},siteService:T})),services:_,environmentConsts:f,mediaServices:b}),A=E?.contextWindow||window;A.wixCustomElements=E,Object.assign(A.customElementNamespace,{mediaServices:v,environmentConsts:I,requestUrl:L,staticVideoUrl:w.staticVideoUrl}),(0,c.g)({...v},E.contextWindow,I),E.defineWixBgMedia(v),E.defineMultiColumnRepeaterElement(),window.__imageClientApi__=l})({experiments:g,media:p,requestUrl:f,externalBaseUrl:_?.externalBaseUrl,userDomainMediaPrefixes:b?p?.userDomainMediaPrefixes:void 0})},13176(e,t,i){i.d(t,{z:()=>r});let r=["MENU_AS_CONTAINER_TOGGLE","MENU_AS_CONTAINER_EXPANDABLE_MENU","BACK_TO_TOP_BUTTON","SCROLL_TO_","TPAMultiSection_","TPASection_","comp-","TINY_MENU","MENU_AS_CONTAINER","SITE_HEADER","SITE_FOOTER","SITE_PAGES","PAGES_CONTAINER","BACKGROUND_GROUP","POPUPS_ROOT"]},69654(e,t,i){i.d(t,{C5:()=>c,Xx:()=>d,ZH:()=>h,hW:()=>g,iT:()=>u,kp:()=>p,qc:()=>l,vP:()=>m});var r=i(13176);function n(e,t){return["true","new","b","enabled"].includes(`${e?.[t]}`.toLowerCase())}function a(e={}){let t=e?.experiments;if(!t&&"undefined"!=typeof window)try{let e=window;t=e.viewerModel?.experiments}catch{}if(!t)return!1;let i=n(t,"specs.thunderbolt.useClassSelectorsForLookup"),r=n(t,"specs.thunderbolt.addIdAsClassName");return!!(i&&r)}function o(e={}){return e.document||("undefined"!=typeof document?document:null)}function s(e,t,i){e&&"function"==typeof e.meter&&e.meter("dom_selector_id_fallback",{customParams:{compId:t,selectorType:i}}),"undefined"!=typeof console&&console.warn&&console.warn(`[DOM Selectors] Fallback to ID for '${t}' (${i}).`)}function l(e,t={}){let i=o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=i.querySelector(`.${e}`);if(t)return t}let n=i.getElementById(e);return n&&r&&s(t?.logger,e,"getElementById"),n}function h(e,t={}){if(!e)return"";if(!a(t))return e.id;let i=Array.from(e.classList||[]),o=n(t.experiments,"specs.thunderbolt.preserveWixSelectClass");if(t.isEditor&&o&&!i.includes("wix-select"))return"";if(t.componentIds?.size){for(let e of i.filter(e=>e.includes("__"))){let i=e.indexOf("__"),r=e.substring(0,i);if(t.componentIds.has(r))return e}for(let e of i)if(t.componentIds.has(e))return e}let l=t.prefixes??r.z,c=null;for(let e of i)if(l.some(t=>e.startsWith(t))){if(e.includes("__"))return e;(!c||e.length<c.length)&&(c=e)}return c||(e.id&&s(t.logger,e.id,"getElementCompId"),e.id||"")}function c(e){return e.replace(/#([a-zA-Z0-9_-]+)/g,".$1").replace(/\[id="([^"]+)"\]/g,'[class~="$1"]').replace(/\[id\^="([^"]+)"\]/g,':is([class^="$1"],[class*=" $1"])').replace(/\[id\*="([^"]+)"\]/g,'[class*="$1"]').replace(/\[id\$="([^"]+)"\]/g,'[class$="$1"]')}function d(e,t,i=!1){if(!t)return e;let r=c(e);return`:is(${r}${i?".wix-select":""}, ${e})`}function u(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=c(e),r=i.querySelector(t);if(r)return r}let n=i.querySelector(e);return n&&r&&s(t.logger,e,"querySelector"),n}function m(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return[];let r=a(t);if(r){let t=c(e),r=Array.from(i.querySelectorAll(t));if(r.length>0)return r}let n=Array.from(i.querySelectorAll(e));return n.length>0&&r&&s(t.logger,e,"querySelectorAll"),n}function g(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=e.closest(`.${t}`);if(i)return i}let n=e.closest(`#${t}`);return n&&r&&s(i.logger,t,"getClosestByCompId"),n}function p(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=c(t),r=e.closest(i);if(r)return r}let n=e.closest(t);return n&&r&&s(i.logger,t,"closest"),n}}}]); | |
| 2472 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js.map</script> | |
| 2473 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6901"],{33842(e,t,i){i.r(t),i.d(t,{BackgroundParallax:()=>n,BackgroundParallaxZoom:()=>o,BackgroundReveal:()=>l,BgCloseUp:()=>d,BgExpand:()=>c,BgFabeBack:()=>h,BgFadeIn:()=>u,BgFadeOut:()=>g,BgFake3D:()=>m,BgPanLeft:()=>f,BgPanRight:()=>b,BgParallax:()=>p,BgPullBack:()=>v,BgReveal:()=>w,BgRotate:()=>M,BgShrink:()=>y,BgSkew:()=>I,BgUnwind:()=>x,BgZoomIn:()=>L,BgZoomOut:()=>D,ImageParallax:()=>O,ImageReveal:()=>P});var r=i(16956);let a=(e,t)=>({width:e,height:t}),s=(e,t,i)=>({width:e,height:Math.max(t,i)}),n={hasParallax:!0,getMediaDimensions:s},o={hasParallax:!0,getMediaDimensions:s},l={hasParallax:!0,getMediaDimensions:s},d={getMediaDimensions:a},c={getMediaDimensions:a},h={getMediaDimensions:a},u={getMediaDimensions:a},g={getMediaDimensions:a},m={hasParallax:!0,getMediaDimensions:s},f={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},b={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},p={hasParallax:!0,getMediaDimensions:s},v={getMediaDimensions:a},w={hasParallax:!0,getMediaDimensions:s},M={getMediaDimensions:(e,t)=>{let i,a,s,n,o;return i=(0,r.kU)(22),a=Math.hypot(e,t)/2,s=Math.acos(e/2/a),n=e*Math.abs(Math.cos(i))+t*Math.abs(Math.sin(i)),o=e*Math.abs(Math.sin(i))+t*Math.abs(Math.cos(i)),{width:Math.ceil(i<s?n:2*a),height:Math.ceil(i<(0,r.kU)(90)-s?o:2*a)}}},y={getMediaDimensions:a},I={getMediaDimensions:(e,t)=>({width:e,height:e*Math.tan((0,r.kU)(20))+t})},x={getMediaDimensions:a},L={hasParallax:!0,getMediaDimensions:s},D={getMediaDimensions:(e,t)=>({width:1.15*e,height:1.15*t})},O={getMediaDimensions:(e,t)=>({width:e,height:1.5*t})},P={getMediaDimensions:(e,t,i)=>({width:e,height:i})}},16956(e,t,i){function r(e,t,i,r,a){return(a-e)*(r-i)/(t-e)+i}function a(e,t){let[i,r]=e,[a,s]=t;return Math.sqrt((a-i)**2+(s-r)**2)}function s(e){return e*Math.PI/180}function n(e,t,i){return void 0===e&&(e=[0,0]),void 0===t&&(t=[0,0]),void 0===i&&(i=0),(360+i+180*Math.atan2(t[1]-e[1],t[0]-e[0])/Math.PI)%360}i.d(t,{Io:()=>a,Rb:()=>n,_b:()=>r,kU:()=>s})},91534(e,t,i){i.d(t,{g:()=>b});var r=i(26350);let a={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},s=(e,t)=>(Array.isArray(t)?t:[t]).reduce((t,i)=>{let r=e[i];return void 0!==r?Object.assign(t,{[i]:r}):t},{}),n=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||a[i]?r.toString():`${r}px`;else e.style.removeProperty(i)}),o=e=>e.endsWith("/")?e:`${e}/`,l=(e,t,i)=>{if(!e.targetWidth||!e.targetHeight||!e.imageData.uri)return{uri:"",css:{},transformed:!1};let{imageData:a}=e,n=e.displayMode||r.fittingTypes.SCALE_TO_FILL,l=Object.assign(s(a,["upscaleMethod"]),s(e,["filters","encoding","allowFullGIFTransformation","allowWebpAvifTransforms"]),e.quality||a.quality,{hasAnimation:e?.hasAnimation||a?.hasAnimation}),h=c(e.imageData.devicePixelRatio||t.devicePixelRatio),u=Object.assign(s(a,["width","height","crop","name","focalPoint"]),{id:a.uri}),g={width:e.targetWidth,height:e.targetHeight,htmlTag:i||"img",pixelAspectRatio:h,alignment:e.alignType||r.alignTypes.CENTER},m=(0,r.getData)(n,u,g,l),f=a.userDomainMediaURL?a.userDomainMediaURL:(({uri:e,envConsts:t})=>{let{externalBaseUrl:i,userDomainMediaPrefixes:r=[],staticMediaUrl:a}=t;return r.some(t=>e.startsWith(`${t}_`))&&i?`${o(i)}_media/`:o(a)})({uri:a.uri,envConsts:t});return m.uri=d(m.uri,f,t.mediaRootUrl),m},d=(e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=o(t);return e&&(/^micons\//.test(e)?r=o(i):/[^.]+$/.exec(e)?.[0]==="ico"&&(r=r.replace("media","ficons"))),r+e},c=e=>{let t=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0]?.toLowerCase().includes("devicepixelratio"));return(t?.[1]?Number(t[1]):null)||e||1},h=function(e,t,i,{containerElm:r,bgEffect:a="none",sourceSets:s},n){var o,l;let d,c=i.image,h=i[e],u=n.getScreenHeightOverride?.()||document.documentElement.clientHeight||window.innerHeight||0,g=r?.dataset.mediaHeightOverrideType,m=a&&"none"!==a||s&&s.some(e=>e.scrollEffect),f=r&&m?r:h,b=window.getComputedStyle(h).getPropertyValue("--bg-scrub-effect"),{width:p,height:v}=n.getMediaDimensionsByEffect?.(b||a,f.offsetWidth,f.offsetHeight,u)||{width:h.offsetWidth,height:h.offsetHeight};if(s&&(o=f.offsetWidth,l=f.offsetHeight,d={},s.forEach(({mediaQuery:e,scrollEffect:t})=>{d[e]=n.getMediaDimensionsByEffect?.(t,o,l,u).height||l}),t.sourceSetsTargetHeights=d),!c)return;let w=c.getAttribute("src");b&&(t.top=.5*(h.offsetHeight-v),t.left=.5*(h.offsetWidth-p)),t.width=p,t.height="fixed"===g||"viewport"===g?document.documentElement.clientHeight+80:v,t.screenHeight=u,t.imgSrc=w,t.boundingRect=h.getBoundingClientRect(),t.mediaHeightOverrideType=g,t.srcset=c.srcset},u=function(e,t,i,a,s,o,d,c,h,u){if(!Object.keys(t).length)return;let{imageData:g}=a,m=i[e],f=i.image;h&&(g.devicePixelRatio=1);let b=a.targetScale||1,p=s.isExperimentOpen?.("specs.thunderbolt.allowFullGIFTransformation"),v=s.isExperimentOpen?.("specs.thunderbolt.allowWebpAvifTransforms"),w={...a,...!a.skipMeasure&&{targetWidth:(t.width||0)*b,targetHeight:(t.height||0)*b},displayMode:g.displayMode,allowFullGIFTransformation:p,allowWebpAvifTransforms:v},M=l(w,o,"img"),y=M?.css?.img||{};n(f,function(e,t,i,r,a){let s=function(e,t=1){return 1!==t?{...e,width:"100%",height:"100%"}:e}(t,r);if(a&&(delete s.height,s.width="100%"),!e)return s;let n={...s};return"fill"===i?(n.position="absolute",n.top="0"):"fit"===i&&(n.height="100%"),"fixed"===e&&(n["will-change"]="transform"),n.objectPosition&&(n.objectPosition=t.objectPosition.replace(/(center|bottom)$/,"top")),n}(t.mediaHeightOverrideType,y,g.displayMode,b,c)),(t.top||t.left)&&n(m,{top:`${t.top}px`,left:`${t.left}px`});let I=M?.uri||"",x=g?.hasAnimation||a?.hasAnimation,L=function(e,t,i){let{sourceSets:r}=t;if(!r||!r.length)return;let a={};return r.forEach(({mediaQuery:r,crop:s,focalPoint:n})=>{let o=l({...t,targetHeight:(e.sourceSetsTargetHeights||{})[r]||0,imageData:{...t.imageData,crop:s,focalPoint:n}},i,"img");a[r]=o.uri||""}),a}(t,w,o);if(u&&(f.dataset.ssrSrcDone="true"),!a.isLQIP||!a.lqipTransition||"transitioned"in m.dataset||(m.dataset.transitioned="",f.complete?f.onload=function(){f.dataset.loadDone=""}:f.onload=function(){f.complete?f.dataset.loadDone="":f.onload=function(){f.dataset.loadDone=""}}),d){let e;(e=g.uri,(0,r.getFileExtension)(e)===r.fileType.GIF||(0,r.getFileExtension)(e)===r.fileType.WEBP&&x)?(f.setAttribute("fetchpriority","low"),f.setAttribute("loading","lazy"),f.setAttribute("decoding","async")):f.setAttribute("fetchpriority","high"),f.currentSrc!==I&&f.setAttribute("src",I),t.srcset&&!t.srcset.split(", ").some(e=>e.split(" ")[0]===I)&&f.setAttribute("srcset",I),i.picture&&w.sourceSets&&Array.from(i.picture.querySelectorAll("source")).forEach(e=>{let t=e.media||"",i=L?.[t];e.srcset!==i&&e.setAttribute("srcset",i||"")})}},g={parallax:"ImageParallax",fixed:"ImageReveal"};var m=i(17709),f=i.n(m);function b(e={},t=null,i={}){if("undefined"==typeof window)return;let a={staticMediaUrl:r.STATIC_MEDIA_URL,mediaRootUrl:r.MEDIA_ROOT_URL,experiments:{},devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,disableImagesLazyLoading:(()=>{try{return"true"===new URL(window.location.href).searchParams.get("disableLazyLoading")}catch{return!1}})(),...i},s=function(e,t){let i="wow-image";if(void 0===(e=e||window).customElements.get(i)){let r,a;return e.ResizeObserver&&(r=new e.ResizeObserver(e=>e.map(e=>e.target.reLayout()))),e.IntersectionObserver&&(a=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"150% 100%"})),function(s){var n,o;let l=(n={resizeService:r,intersectionService:a,mutationService:f(),...t},o=e,class extends o.HTMLElement{constructor(){super(),this.childListObserver=null,this.timeoutId=null}attributeChangedCallback(e,t){t&&this.reLayout()}connectedCallback(){s.disableImagesLazyLoading?this.reLayout():this.observeIntersect()}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}static get observedAttributes(){return["data-image-info"]}reLayout(){let e={},t={},i=this.getAttribute("id"),r=JSON.parse(this.dataset.imageInfo||""),a="true"===this.dataset.isResponsive,{bgEffectName:l}=this.dataset,{scrollEffect:d}=r.imageData,{sourceSets:c}=r,m=l||d&&g[d];c&&c.length&&c.forEach(e=>{e.scrollEffect&&(e.scrollEffect=g[e.scrollEffect])}),e[i]=this,r.containerId&&(e[r.containerId]=o.document.getElementById(`${r.containerId}`));let f=r.containerId?e[r.containerId]:void 0;if(e.image=this.querySelector("img"),e.picture=this.querySelector("picture"),!e.image)return void this.observeChildren(this);this.unobserveChildren(),this.observeChildren(this),n.mutationService.measure(()=>{h(i,t,e,{containerElm:f,bgEffect:m,sourceSets:c},n)});let b=(o,l)=>{n.mutationService.mutate(()=>{u(i,t,e,r,n,s,o,a,m,l)})},p=e.image,v=this.dataset.hasSsrSrc&&!p.dataset.ssrSrcDone;!p.getAttribute("src")||v?b(!0,!0):this.debounceImageLoad(b)}debounceImageLoad(e){clearTimeout(this.timeoutId),this.timeoutId=o.setTimeout(()=>{e(!0)},250),e(!1)}observeResize(){n.resizeService?.observe(this)}unobserveResize(){n.resizeService?.unobserve(this)}observeIntersect(){n.intersectionService?.observe(this)}unobserveIntersect(){n.intersectionService?.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new o.MutationObserver(()=>{this.reLayout()})),this.childListObserver.observe(e,{childList:!0})}unobserveChildren(){this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null)}});e.customElements.define(i,l)}}}(t,e);s&&s(a)}},76526(e,t,i){i.d(t,{isExperimentOpen:()=>s});var r=i(7073);let a=[],s=(e,t)=>a.includes(t)||(0,r.kg)(e,t)},7073(e,t,i){i.d(t,{kg:()=>a});var r=["true","b","c","new","enabled"];function a(e,t){let i=e[t];return!0===i||"string"==typeof i&&r.includes(i.toLowerCase())}}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=46418)}),e.O()}]); | |
| 2474 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js.map</script> | |
| 2475 | + | |
| 2476 | + | |
| 2477 | +<!-- preloading pre-scripts --> | |
| 2478 | + | |
| 2479 | + | |
| 2480 | + <link href="https://siteassets.parastorage.com/pages/pages/thunderbolt?appDefinitionIdToSiteRevision=%7B%2227fcc256-f3f8-47df-a66a-8f8176cc7f99%22%3A%2245%22%2C%22a5dd7ce8-07c2-4251-8d58-9657c1a43163%22%3A%22219%22%2C%2214271d6f-ba62-d045-549b-ab972ae1f70e%22%3A%2225%22%2C%2214bcded7-0066-7c35-14d7-466cb3f09103%22%3A%221335%22%2C%227479d596-137c-4fa3-89cd-d7091042ba61%22%3A%22132%22%2C%2275d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3%22%3A%22305%22%2C%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%3A%226855%22%2C%22b976560c-3122-4351-878f-453f337b7245%22%3A%221358%22%2C%2213d21c63-b5ec-5912-8397-c3a5ddb27a97%22%3A%22440%22%7D&appDefinitionIdsWithCustomCss=%5B%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%5D&beckyExperiments=.DatePickerPortal%2C.DisableDocumentScrollWhenLightBoxOpen%2C.EnableCustomCSSVarsForLoginSocialBar%2C.FreemiumBannerOdeditor%2C.LoginBarEnableLoggingInStateInSSR%2C.TextInputAutoFillFix%2C.UseLoginSocialBarCustomMenu%2C.UseNestedLoginSocialBarMenuItems%2C.UseNewLoginBarDropdownMenuAlignment%2C.UseNewLoginSocialBarElementStructure%2C.UseNewLoginSocialBarMemberInitialsAvatar%2C.WixFreeSiteBannerDesktop%2C.WixFreeSiteBannerMobile%2C.a11yContrast%2C.addIdAsClassName%2C.allowWebpAvifTransforms%2C.builderBoxSizingBorderBox%2C.buttonUdp%2C.calculateCollapsibleTextLineHeightByFont%2C.dom_store%2C.dontApplyDacOverridesOnBoBApps%2C.dynamicPageLinkTarget%2C.dynamicSlots%2C.fiveGridLineStudioSkins%2C.fixFirefoxLinkBarIntrinsicSizing%2C.fixRemappedFullNameCompType%2C.imageEncodingAVIF%2C.isClassNameToRootEnabled%2C.motionTimeAnimationsCSS%2C.plainClassSelectors%2C.responsiveContainerRoleGroup%2C.sectionA11yProps%2C.shouldIgnoreWidgetsPageData%2C.shouldUseResponsiveImages%2C.splitSlotSelectors%2C.svgResolver_2%2C.updateRichTextSemanticClassNamesOnCorvid%2C.useClassnameInResponsiveAppWidget%2C.useFragmentHrefForTopBottomAnchor%2C.useImageAvifFormatInNativeProGallery%2C.useResponsiveImgClassicFixed%2C.useSvgLoaderFeature%2C.useSvgLoaderFeatureOnBuilderComps%2C.useWowImageInFastGallery&blocksBuilderManifestGeneratorVersion=1.129.0&commonConfig=%7B%22siteRevision%22%3A%224%22%2C%22branchId%22%3A%22f815f8fb-8f6e-40d3-b375-054107669a53%22%7D&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.5507.0&disableStaticPagesUrlHierarchy=false&editorName=Studio&experiments=dm_bgScrubToMotionFixer%2Cdm_masterPageVariablesQueryFixer%2Cdm_migrateOldHoverBoxToNewFixer&externalBaseUrl=https%3A%2F%2Fwww.leshabitationssf.com&fileId=b091b1da.bundle.min&formFactor=desktop&hasTPAWorkerOnSite=false&hasUserDomainMedia=false&isBuilderComponentModel=false&isClientSdkOnSite=true&isHttps=true&isInSeo=false&isMultilingualEnabled=true&isPremiumDomain=true&isResponsive=true&isTrackClicksAnalyticsEnabled=false&isUrlMigrated=true&isWixCodeOnPage=false&isWixCodeOnSite=true&language=fr&languageResolutionMethod=QueryParam&metaSiteId=39b9882f-9e71-4f93-bb6d-a87166c85cda&module=thunderbolt-features&originalLanguage=fr&pageId=5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json&pilerExperiments=specs.piler.useEditorReactComponents&quickActionsMenuEnabled=false®istryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22wixui%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%2C%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22dsgnsys%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%5D&remoteWidgetStructureBuilderVersion=1.251.0&siteId=452071c1-a99b-44c2-b686-dd15b11264a3&siteRevision=4&staticHTMLComponentUrl=https%3A%2F%2Fwww-leshabitationssf-com.filesusr.com%2F&useSandboxInHTMLComp=false&viewMode=desktop" id="features_masterPage" as="fetch" position="post-scripts" rel="prefetch" crossorigin="anonymous"></link> | |
| 2481 | + | |
| 2482 | + | |
| 2483 | + | |
| 2484 | + | |
| 2485 | + | |
| 2486 | + <!-- sentryOnLoad Setup Script --> | |
| 2487 | + <script id="sentryOnLoadSetup"> | |
| 2488 | + function _extends(){_extends=Object.assign||function(target){for(var i=1;i<arguments.length;i++){var source=arguments[i];for(var key in source){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key]}}}return target};return _extends.apply(this,arguments)}(function(){var SENTRY_REROUTED_MARK_KEY="_REROUTED";var SENTRY_IS_NON_WIX_TPA_MARK_KEY="_isTPA";var SENTRY_REROUTE_DATA_KEY="_ROUTE_TO";var addRerouteDataToSentryEvent=function(event){var _event_extra,_event_exception_values__stacktrace,_event_exception_values,_event_exception;if(event==null?void 0:(_event_extra=event.extra)==null?void 0:_event_extra[SENTRY_REROUTE_DATA_KEY]){return}if(event==null?void 0:(_event_exception=event.exception)==null?void 0:(_event_exception_values=_event_exception.values)==null?void 0:(_event_exception_values__stacktrace=_event_exception_values[0].stacktrace)==null?void 0:_event_exception_values__stacktrace.frames){var frames=event.exception.values[0].stacktrace.frames;var framesModuleMetadata=frames.filter(function(frame){return frame.module_metadata&&frame.module_metadata.appId}).map(function(v){return{appId:v.module_metadata.appId,release:v.module_metadata.release,dsn:v.module_metadata.dsn}});var routeTo=framesModuleMetadata.slice(-1);if(routeTo.length){var _window_wixEmbedsAPI,_app_monitoringComponent_monitoring,_app_monitoringComponent;var appId=routeTo[0].appId;var app=(_window_wixEmbedsAPI=window.wixEmbedsAPI)==null?void 0:_window_wixEmbedsAPI.getMonitoringConfig(appId);if((app==null?void 0:(_app_monitoringComponent=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring=_app_monitoringComponent.monitoring)==null?void 0:_app_monitoringComponent_monitoring.type)==="SENTRY"){var _app_monitoringComponent_monitoring_sentryOptions,_app_monitoringComponent_monitoring1,_app_monitoringComponent1;var dsn=app==null?void 0:(_app_monitoringComponent1=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring1=_app_monitoringComponent1.monitoring)==null?void 0:(_app_monitoringComponent_monitoring_sentryOptions=_app_monitoringComponent_monitoring1.sentryOptions)==null?void 0:_app_monitoringComponent_monitoring_sentryOptions.dsn;if(dsn){if(!routeTo[0].dsn&&dsn){routeTo[0].dsn=dsn}}}if(app){var _obj;event.extra=_extends({},event.extra,(_obj={},_obj[SENTRY_IS_NON_WIX_TPA_MARK_KEY]=!app.isWixTPA,_obj))}var _obj1;event.extra=_extends({},event.extra,(_obj1={},_obj1[SENTRY_REROUTE_DATA_KEY]=routeTo,_obj1[SENTRY_REROUTED_MARK_KEY]=true,_obj1))}}};function overrideSentryInitOptions(){var Sentry=window.Sentry;var makeMultiplexedTransport=Sentry.makeMultiplexedTransport,makeFetchTransport=Sentry.makeFetchTransport;var transport=makeMultiplexedTransport?makeMultiplexedTransport(makeFetchTransport,function(args){var event=args.getEvent();if(event&&event.extra&&event.extra[SENTRY_REROUTE_DATA_KEY]&&Array.isArray(event.extra[SENTRY_REROUTE_DATA_KEY])){return event.extra[SENTRY_REROUTE_DATA_KEY]}return[]}):makeFetchTransport;Sentry.init({transport:transport,integrations:[Sentry.browserTracingIntegration({instrumentNavigation:false,instrumentPageLoad:false})],tracePropagationTargets:[/^https:\/\/[a-zA-Z0-9-]+\.wix-app\.run\/.*/],attachStacktrace:true,beforeSend:function(event,hint){var customEvent=new CustomEvent("sentry-error",{cancelable:true,detail:{sentryEvent:event,sentryHint:hint}});var dispatchEventRes=window.dispatchEvent(customEvent);if(!dispatchEventRes){return null}if(event.extra){if(event.extra[SENTRY_REROUTED_MARK_KEY]){delete event.extra[SENTRY_REROUTED_MARK_KEY]}if(event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]){delete event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]}}return event}});if(Sentry.moduleMetadataIntegration){Sentry.addIntegration(Sentry.moduleMetadataIntegration());Sentry.addGlobalEventProcessor(function(event){addRerouteDataToSentryEvent(event);return event})}}window.sentryOnLoad=overrideSentryInitOptions})(); | |
| 2489 | + </script> | |
| 2490 | + <!-- Sentry Loader Script --> | |
| 2491 | + <script id="sentry"> | |
| 2492 | + !function(n,e,r,t,o,i,a,c,s){for(var u=s,f=0;f<document.scripts.length;f++)if(document.scripts[f].src.indexOf(i)>-1){u&&"no"===document.scripts[f].getAttribute("data-lazy")&&(u=!1);break}var p=[];function l(n){return"e"in n}function d(n){return"p"in n}function _(n){return"f"in n}var v=[];function y(n){u&&(l(n)||d(n)||_(n)&&n.f.indexOf("capture")>-1||_(n)&&n.f.indexOf("showReportDialog")>-1)&&L(),v.push(n)}function h(){y({e:[].slice.call(arguments)})}function g(n){y({p:n})}function E(){try{n.SENTRY_SDK_SOURCE="loader";var e=n[o],i=e.init;e.init=function(o){n.removeEventListener(r,h),n.removeEventListener(t,g);var a=c;for(var s in o)Object.prototype.hasOwnProperty.call(o,s)&&(a[s]=o[s]);!function(n,e){var r=n.integrations||[];if(!Array.isArray(r))return;var t=r.map((function(n){return n.name}));n.tracesSampleRate&&-1===t.indexOf("BrowserTracing")&&(e.browserTracingIntegration?r.push(e.browserTracingIntegration({enableInp:!0})):e.BrowserTracing&&r.push(new e.BrowserTracing));(n.replaysSessionSampleRate||n.replaysOnErrorSampleRate)&&-1===t.indexOf("Replay")&&(e.replayIntegration?r.push(e.replayIntegration()):e.Replay&&r.push(new e.Replay));n.integrations=r}(a,e),i(a)},setTimeout((function(){return function(e){try{"function"==typeof n.sentryOnLoad&&(n.sentryOnLoad(),n.sentryOnLoad=void 0)}catch(n){console.error("Error while calling `sentryOnLoad` handler:"),console.error(n)}try{for(var r=0;r<p.length;r++)"function"==typeof p[r]&&p[r]();p.splice(0);for(r=0;r<v.length;r++){_(i=v[r])&&"init"===i.f&&e.init.apply(e,i.a)}m()||e.init();var t=n.onerror,o=n.onunhandledrejection;for(r=0;r<v.length;r++){var i;if(_(i=v[r])){if("init"===i.f)continue;e[i.f].apply(e,i.a)}else l(i)&&t?t.apply(n,i.e):d(i)&&o&&o.apply(n,[i.p])}}catch(n){console.error(n)}}(e)}))}catch(n){console.error(n)}}var O=!1;function L(){if(!O){O=!0;var n=e.scripts[0],r=e.createElement("script");r.src=a,r.crossOrigin="anonymous",r.addEventListener("load",E,{once:!0,passive:!0}),n.parentNode.insertBefore(r,n)}}function m(){var e=n.__SENTRY__,r=void 0!==e&&e.version;return r?!!e[r]:!(void 0===e||!e.hub||!e.hub.getClient())}n[o]=n[o]||{},n[o].onLoad=function(n){m()?n():p.push(n)},n[o].forceLoad=function(){setTimeout((function(){L()}))},["init","addBreadcrumb","captureMessage","captureException","captureEvent","configureScope","withScope","showReportDialog"].forEach((function(e){n[o][e]=function(){y({f:e,a:arguments})}})),n.addEventListener(r,h),n.addEventListener(t,g),u||setTimeout((function(){L()}))}(window,document,"error","unhandledrejection","Sentry",'605a7baede844d278b89dc95ae0a9123','https://browser.sentry-cdn.com/7.120.3/bundle.tracing.es5.min.js',{"dsn":"https://605a7baede844d278b89dc95ae0a9123@sentry-next.wixpress.com/68","tracesSampleRate":1},true); | |
| 2493 | + </script> | |
| 2494 | + <!-- Sentry's makeMultiplexedTransport --> | |
| 2495 | + <script> | |
| 2496 | + !function(n){var r={},t=function(){return t=Object.assign||function(n){for(var r,t=1,e=arguments.length;t<e;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o]);return n},t.apply(this,arguments)};function e(n,r,t,e){return new(t||(t=Promise))((function(o,i){function u(n){try{f(e.next(n))}catch(n){i(n)}}function c(n){try{f(e.throw(n))}catch(n){i(n)}}function f(n){var r;n.done?o(n.value):(r=n.value,r instanceof t?r:new t((function(n){n(r)}))).then(u,c)}f((e=e.apply(n,r||[])).next())}))}function o(n,r){var t,e,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(c){return function(f){return function(c){if(t)throw new TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(u=0)),u;)try{if(t=1,e&&(o=2&c[0]?e.return:c[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,c[1])).done)return o;switch(e=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,e=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=r.call(n,u)}catch(n){c=[6,n],e=0}finally{t=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,f])}}}function i(n){var r="function"==typeof Symbol&&Symbol.iterator,t=r&&n[r],e=0;if(t)return t.call(n);if(n&&"number"==typeof n.length)return{next:function(){return n&&e>=n.length&&(n=void 0),{value:n&&n[e++],done:!n}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}function u(n,r){var t="function"==typeof Symbol&&n[Symbol.iterator];if(!t)return n;var e,o,i=t.call(n),u=[];try{for(;(void 0===r||r-- >0)&&!(e=i.next()).done;)u.push(e.value)}catch(n){o={error:n}}finally{try{e&&!e.done&&(t=i.return)&&t.call(i)}finally{if(o)throw o.error}}return u}function c(n){return n&&n.Math==Math?n:void 0}var f="object"==typeof globalThis&&c(globalThis)||"object"==typeof window&&c(window)||"object"==typeof self&&c(self)||"object"==typeof global&&c(global)||function(){return this}()||{},a={};var s=/^(?:(\w+):)\/\/(?:(\w+)(?::(\w+)?)?@)([\w.-]+)(?::(\d+))?\/(.+)/;function v(n){var r=s.exec(n);if(r){var t,e=u(r.slice(1),6),o=e[0],i=e[1],c=e[2],v=void 0===c?"":c,l=e[3],y=e[4],d=void 0===y?"":y,p="",h=e[5],b=h.split("/");if(b.length>1&&(p=b.slice(0,-1).join("/"),h=b.pop()),h){var w=h.match(/^\d+/);w&&(h=w[0])}return{protocol:(t={host:l,pass:v,path:p,projectId:h,port:d,protocol:o,publicKey:i}).protocol,publicKey:t.publicKey||"",pass:t.pass||"",host:t.host,port:t.port||"",path:t.path||"",projectId:t.projectId}}!function(n){if(!("console"in f))return n();var r=f.console,t={},e=Object.keys(a);e.forEach((function(n){var e=a[n];t[n]=r[n],r[n]=e}));try{n()}finally{e.forEach((function(n){r[n]=t[n]}))}}((function(){console.error("Invalid Sentry Dsn: ".concat(n))}))}function l(n,r){return e=t({sentry_key:n.publicKey,sentry_version:"7"},r&&{sentry_client:"".concat(r.name,"/").concat(r.version)}),Object.keys(e).map((function(n){return"".concat(encodeURIComponent(n),"=").concat(encodeURIComponent(e[n]))})).join("&");var e}function y(n,r){var t;return function(n,r){var t,e,o=n[1];try{for(var u=i(o),c=u.next();!c.done;c=u.next()){var f=c.value;if(r(f,f[0].type))return!0}}catch(n){t={error:n}}finally{try{c&&!c.done&&(e=u.return)&&e.call(u)}finally{if(t)throw t.error}}}(n,(function(n,e){return r.includes(e)&&(t=Array.isArray(n)?n[1]:void 0),!!t})),t}for(var d in r.makeMultiplexedTransport=function(n,r){return function(c){var f=n(c),a=new Map;function s(r,i){var u=i?"".concat(r,":").concat(i):r,f=a.get(u);if(!f){var s=v(r);if(!s)return;var d=function(n,r){void 0===r&&(r={});var t="string"==typeof r?r:r.tunnel,e="string"!=typeof r&&r.t?r.t.sdk:void 0;return t||"".concat(function(n){return"".concat(function(n){var r=n.protocol?"".concat(n.protocol,":"):"",t=n.port?":".concat(n.port):"";return"".concat(r,"//").concat(n.host).concat(t).concat(n.path?"/".concat(n.path):"","/api/")}(n)).concat(n.projectId,"/envelope/")}(n),"?").concat(l(n,e))}(s,c.tunnel);f=i?function(n,r){var i=this;return function(u){var c=n(u);return t(t({},c),{send:function(n){return e(i,void 0,void 0,(function(){var t;return o(this,(function(e){return(t=y(n,["event","transaction","profile","replay_event"]))&&(t.release=r),[2,c.send(n)]}))}))}})}}(n,i)(t(t({},c),{url:d})):n(t(t({},c),{url:d})),a.set(u,f)}return[r,f]}return{send:function(n){return e(this,void 0,void 0,(function(){function e(r){var t=r&&r.length?r:["event"];return y(n,t)}var i;return o(this,(function(o){switch(o.label){case 0:return 0===(i=r({envelope:n,getEvent:e}).map((function(n){return"string"==typeof n?s(n,void 0):s(n.dsn,n.release)})).filter((function(n){return!!n}))).length&&i.push(["",f]),[4,Promise.all(i.map((function(r){var e=u(r,2),o=e[0];return e[1].send(function(n,r){return e=r?t(t({},n[0]),{dsn:r}):n[0],void 0===(o=n[1])&&(o=[]),[e,o];var e,o}(n,o))})))];case 1:return[2,o.sent()[0]]}}))}))},flush:function(n){return e(this,void 0,void 0,(function(){var r,t,e,c,s,v,l,y,d,p;return o(this,(function(o){switch(o.label){case 0:return[4,f.flush(n)];case 1:r=[o.sent()],o.label=2;case 2:o.trys.push([2,7,8,9]),t=i(a),e=t.next(),o.label=3;case 3:return e.done?[3,6]:(c=u(e.value,2),s=c[1],l=(v=r).push,[4,s.flush(n)]);case 4:l.apply(v,[o.sent()]),o.label=5;case 5:return e=t.next(),[3,3];case 6:return[3,9];case 7:return y=o.sent(),d={error:y},[3,9];case 8:try{e&&!e.done&&(p=t.return)&&p.call(t)}finally{if(d)throw d.error}return[7];case 9:return[2,r.every((function(n){return n}))]}}))}))}}}},n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,d)&&(n.Sentry.Integrations[d]=r[d],n.Sentry[d]=r[d])}(window); | |
| 2497 | + </script> | |
| 2498 | + <!-- Sentry's moduleMetadataIntegration --> | |
| 2499 | + <script src="https://browser.sentry-cdn.com/7.120.3/modulemetadata.es5.min.js" crossorigin="anonymous" async></script> | |
| 2500 | + | |
| 2501 | + | |
| 2502 | +<script> | |
| 2503 | + window.resolveExternalsRegistryPromise = null | |
| 2504 | + const externalRegistryPromise = new Promise((r) => window.resolveExternalsRegistryPromise = r) | |
| 2505 | + window.resolveExternalsRegistryModule = (name) => externalRegistryPromise.then(() => window.externalsRegistry[name].onload()) | |
| 2506 | +</script> | |
| 2507 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["7101"],{78635(){window.__imageClientApi__=window.__imageClientApi__||{sdk:{}};let{lodash:e,react:o,reactDOM:n,imageClientApi:d,clientSdk:a}=window.externalsRegistry={lodash:{},react:{},reactDOM:{},imageClientApi:{},clientSdk:{}};d.loaded=new Promise(e=>{d.onload=e}),e.loaded=new Promise(o=>{e.onload=o}),a.loaded=new Promise(e=>{a.onload=e}),window.ReactDOM||(window.reactDOMReference=window.ReactDOM={loading:!0}),n.loaded=new Promise(e=>{n.onload=()=>{Object.assign(window.reactDOMReference||{},window.ReactDOM,{loading:!1}),e()}}),window.React||(window.reactReference=window.React={loading:!0}),o.loaded=new Promise(e=>{o.onload=()=>{Object.assign(window.reactReference||{},window.React,{loading:!1}),e()}}),window.reactAndReactDOMLoaded=Promise.all([o.loaded,n.loaded]),window.resolveExternalsRegistryPromise()}},function(e){e(e.s=78635)}]); | |
| 2508 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js.map</script> | |
| 2509 | + | |
| 2510 | +<!-- Add the rest of the ViewerModel --> | |
| 2511 | +<script type="application/json" id="wix-viewer-model">{"siteFeaturesConfigs":{"accessibilityBrowserZoom":{"isBuilder":false,"isStudio":true},"appMonitoring":{"appsWithMonitoring":[{"appId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"panoramaConfigByArtifactId":{"abandoned-carts-bm":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"externalIdByComponentId":{}},{"appId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"panoramaConfigByArtifactId":{"cms-compliance-dashboard-extensions":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"externalIdByComponentId":{}},{"appId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"panoramaConfigByArtifactId":{"site-search-builder":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"externalIdByComponentId":{"8244af1e-c249-4dd6-9308-e59e9d03556d":"site-search-builder"}}]},"assetsLoader":{"isStylableComponentInStructure":true,"hasBuilderComponents":false},"businessLoggerService":{},"businessLogger":{"isBuilderComponentModel":false},"clientSdk":{"appDefinitionIds":["27fcc256-f3f8-47df-a66a-8f8176cc7f99"]},"componentsRegistry":{"librariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}]},"consentPolicy":{"isWixSite":false,"isBuilderComponentModel":false},"cookiesManager":{"cookieSitePath":"\/","cookieSiteDomain":"www.leshabitationssf.com"},"customCss":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","appsWithCustomCss":{"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"gridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","filePath":"styles\/widget.css"}},"baseUrl":"https:\/\/www.leshabitationssf.com"},"cyclicTabbing":{"isBuilderComponentModel":false},"dataWixCodeSdk":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","environment":"LIVE","cloudDataUrlWithExternalBase":"https:\/\/www.leshabitationssf.com\/_api\/cloud-data"},"dynamicPages":{"prefixToRouterFetchData":{"location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"id":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5"}},"routerPrefix":"\/location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true},"pageRole":"02f40a08-ae1a-41b9-9ce4-a486105584ec","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"copy-of-location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"id":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1"}},"routerPrefix":"\/copy-of-location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true,"sort":[{"disponibilite":"desc"}]},"pageRole":"c8c6f29b-49c3-4685-b0e5-7f8174f91b94","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","Authorization":"RjOgrJjINQdDbYsnpn9bdQkFUjiQKzXrtBDsKWAbe-U.eyJpbnN0YW5jZUlkIjoiYTFmNDUyMzQtODUwYS00YTc0LWE1M2QtNTY4MzQ0YTM0ODQ4IiwiYXBwRGVmSWQiOiJlNTkzYjBiZC1iNzgzLTQ1YjgtOTdjMi04NzNkNDJhYWNhZjQiLCJtZXRhU2l0ZUlkIjoiMzliOTg4MmYtOWU3MS00ZjkzLWJiNmQtYTg3MTY2Yzg1Y2RhIiwic2lnbkRhdGUiOiIyMDI2LTA4LTA5VDA2OjM1OjI4LjQ0NloiLCJkZW1vTW9kZSI6ZmFsc2UsImJpVG9rZW4iOiI5ODRkZGExYi0xYjdiLTA1ZTctMWU1MC1mZWYyMjI2YjE0OTIiLCJzaXRlT3duZXJJZCI6IjVhZTE3MDI5LWIyN2YtNDJmNi04YmMwLTVjYWZiZjYzYTIzNSIsImNhY2hlIjp0cnVlLCJzY2QiOiIyMDI0LTEwLTMxVDIzOjU4OjAwLjk5N1oifQ"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"routerPagesSeoToIdMap":{"blank-5":"x1rjp","category-page":"lbsg6","blank-5-1":"ebqqm"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticRoutedPageId":""},"editorWixCodeSdk":{"isBuilderComponentModel":false},"elementorySupportWixCodeSdk":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview","relativePath":"\/\/_api\/wix-code-public-dispatcher-ng\/siteview","gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","viewMode":"site","siteRevision":4},"environmentWixCodeSdk":{},"environment":{"editorType":"","domain":"leshabitationssf.com","previewMode":false,"isBuilderComponentModel":false},"fedopsWixCodeSdk":{"isWixSite":false,"shouldReportFedops":false},"lightbox":{"prefixToRouterFetchData":{"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"pageIdToPrefix":{"lbsg6":"category"},"isBuilderComponentModel":false},"locationWixCodeSdk":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"urlMappings":null},"mpaNavigation":{"forceMpaNavigation":false,"isRunningInDifferentSiteContext":false},"multilingual":{"originalLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"isOriginalLanguage":true,"currentLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"siteLanguages":[{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"hasLanguageSelector":true,"isEnabled":true,"baseUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","isPremiumDomain":true,"flagsUrl":"https:\/\/static.parastorage.com\/services\/linguist-flags\/1.1005.0"},"ooiTpaSharedConfig":{"imageSpriteUrl":"https:\/\/static.parastorage.com\/services\/santa-resources\/resources\/viewer\/editorUI\/fonts.v19.png","wixStaticFontsLinks":["https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/fonts.hz267ac7fkkfb3a18o8z.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/wixMadefor.j95mkaziqjnrn77aekr8.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/google.i6q038anl30o3b4lfbu6.css"]},"ooi":{"ooiComponentsData":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14666402-0bc7-b763-e875-e99840d131bd":{"sentryDsn":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"13afb094-84f9-739f-44fd-78d036adb028":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"244576c9-d856-49b9-af14-216071924e3b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"sentryDsn":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"sentryDsn":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"sentryDsn":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"04462ba4-2137-41bd-9460-0814554aae07":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"sentryDsn":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"sentryDsn":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d","noCssComponentUrl":"","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"211b5287-14e2-4690-bb71-525908938c81":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","widgetId":"211b5287-14e2-4690-bb71-525908938c81","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false}},"viewMode":"Site","formFactor":"Desktop","blogMobileComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/feed-page-mobile-viewer.bundle.min.js","userDomainMedia":{"baseUrl":"","prefixes":[]}},"pagesService":{"pages":{},"currentPageId":"","mainPageId":"xbscd"},"protectedPages":{"passwordProtected":{},"publicPageIds":["nd5z8","xbscd","ir3c1","tbw7n","x1rjp","fcpv5","digmz","c1dmp","ebqqm","og9af","ee5l4","p8nxp","ycxvu","mwate","zoy0o","tjnio","lbsg6","o2kzs","wdvyd","quqwi","jlcw6","ua72s","yg0c4","xsdnd","msjef"],"pageUriSeoToRouterPrefix":{"blank-5":"location","category-page":"category","blank-5-1":"copy-of-location"}},"renderer":{"disabledComponents":{},"isBuilderComponentModel":false},"reporter":{"userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremium":true,"isFBServerEventsAppProvisioned":true,"dynamicPagesIds":["x1rjp","lbsg6","ebqqm"]},"routerFetch":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","viewMode":"desktop"},"router":{"baseUrl":"https:\/\/www.leshabitationssf.com","mainPageId":"xbscd","pagesMap":{"nd5z8":{"pageId":"nd5z8","title":"Gestion AIR BNB","pageUriSEO":"gestion-courte-duree","pageJsonFileName":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658"},"xbscd":{"pageId":"xbscd","title":"Accueil","pageUriSEO":"accueil","pageJsonFileName":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658"},"ir3c1":{"pageId":"ir3c1","title":"CHOIX DE SERVICE","pageUriSEO":"popup-xxnez-evf5t-1-1-1-1","pageJsonFileName":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658"},"tbw7n":{"pageId":"tbw7n","title":"Gestion de copropriété","pageUriSEO":"gestion-de-copropriete","pageJsonFileName":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658"},"x1rjp":{"pageId":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5","pageJsonFileName":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658"},"dkrww":{"pageId":"dkrww","title":"Test","pageUriSEO":"blank"},"fcpv5":{"pageId":"fcpv5","title":"Bienvenue","pageUriSEO":"blank-1","pageJsonFileName":"5ae170_bfa3a744011b18064588457b988e1a12_658"},"digmz":{"pageId":"digmz","title":"Blog","pageUriSEO":"blog","pageJsonFileName":"5ae170_8753b09b9c3e820a689be83f44036cce_658"},"c1dmp":{"pageId":"c1dmp","title":"Accueil-Old","pageUriSEO":"home","pageJsonFileName":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658"},"ebqqm":{"pageId":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1","pageJsonFileName":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658"},"og9af":{"pageId":"og9af","title":"Side Cart","pageUriSEO":"popup-og9af","pageJsonFileName":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658"},"ee5l4":{"pageId":"ee5l4","title":"Post","pageUriSEO":"post","pageJsonFileName":"5ae170_797441264f67257d2b398b280f9566f8_658"},"p8nxp":{"pageId":"p8nxp","title":"Member Page","pageUriSEO":"members-area","pageJsonFileName":"5ae170_0e06c7b14722b1df76d73a702836cd87_658"},"ycxvu":{"pageId":"ycxvu","title":"Gestion d'immeubles à revenus","pageUriSEO":"forfaits","pageJsonFileName":"5ae170_6ef9978913518d22e3ff9884b42e9766_658"},"mwate":{"pageId":"mwate","title":"Thank You Page","pageUriSEO":"thank-you-page","pageJsonFileName":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658"},"zoy0o":{"pageId":"zoy0o","title":"Product Page","pageUriSEO":"product-page","pageJsonFileName":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658"},"tjnio":{"pageId":"tjnio","title":"Checkout","pageUriSEO":"checkout","pageJsonFileName":"5ae170_b758cd293bd2e09407018e3925e51e65_658"},"lbsg6":{"pageId":"lbsg6","title":"Category Page","pageUriSEO":"category-page","pageJsonFileName":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658"},"o2kzs":{"pageId":"o2kzs","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658"},"wdvyd":{"pageId":"wdvyd","title":"Mise en marché d'un logement","pageUriSEO":"particulier","pageJsonFileName":"5ae170_b86b7b332566ae1077a701be4c21b168_658"},"quqwi":{"pageId":"quqwi","title":"Cart Page","pageUriSEO":"cart-page","pageJsonFileName":"5ae170_adf9bd4deafc8141e4494d55c958864f_658"},"jlcw6":{"pageId":"jlcw6","title":"Obtenir un devis","pageUriSEO":"devis","pageJsonFileName":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658"},"ua72s":{"pageId":"ua72s","title":"Gestion Résidentielle & Commerciale","pageUriSEO":"gestion-residentielle-commerciale","pageJsonFileName":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658"},"yg0c4":{"pageId":"yg0c4","title":"Search Results","pageUriSEO":"search","pageJsonFileName":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658"},"xsdnd":{"pageId":"xsdnd","title":"Mise en Marché - Formulaire","pageUriSEO":"formulaire-mise-en-marché","pageJsonFileName":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658"},"msjef":{"pageId":"msjef","title":"À Propos","pageUriSEO":"entreprise","pageJsonFileName":"5ae170_a275d88f982fef975679f7c85059c3df_658"}},"disableStaticPagesUrlHierarchy":false,"routes":{".\/gestion-courte-duree":{"type":"Static","pageId":"nd5z8"},".\/accueil":{"type":"Static","pageId":"xbscd"},".\/popup-xxnez-evf5t-1-1-1-1":{"type":"Static","pageId":"ir3c1"},".\/gestion-de-copropriete":{"type":"Static","pageId":"tbw7n"},".\/blank":{"type":"Static","pageId":"dkrww"},".\/blank-1":{"type":"Static","pageId":"fcpv5"},".\/blog":{"type":"Static","pageId":"digmz"},".\/home":{"type":"Static","pageId":"c1dmp"},".\/popup-og9af":{"type":"Static","pageId":"og9af"},".\/post":{"type":"Static","pageId":"ee5l4"},".\/members-area":{"type":"Static","pageId":"p8nxp"},".\/forfaits":{"type":"Static","pageId":"ycxvu"},".\/thank-you-page":{"type":"Static","pageId":"mwate"},".\/product-page":{"type":"Static","pageId":"zoy0o"},".\/checkout":{"type":"Static","pageId":"tjnio"},".\/fullscreen-page":{"type":"Static","pageId":"o2kzs"},".\/particulier":{"type":"Static","pageId":"wdvyd"},".\/cart-page":{"type":"Static","pageId":"quqwi"},".\/devis":{"type":"Static","pageId":"jlcw6"},".\/gestion-residentielle-commerciale":{"type":"Static","pageId":"ua72s"},".\/search":{"type":"Static","pageId":"yg0c4"},".\/formulaire-mise-en-marché":{"type":"Static","pageId":"xsdnd"},".\/entreprise":{"type":"Static","pageId":"msjef"},".\/location":{"type":"Dynamic","pageIds":["x1rjp"]},".\/category":{"type":"Dynamic","pageIds":["lbsg6"]},".\/copy-of-location":{"type":"Dynamic","pageIds":["ebqqm"]},".\/":{"type":"Static","pageId":"xbscd"}},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"isWixSite":false,"isBuilderComponentModel":false,"partialRouteMatchingAllowed":false},"searchWixCodeSdk":{"language":"fr"},"seo":{"context":{"siteName":"SF Habitations","siteUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","indexSite":true,"defaultUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","currLangIsOriginal":true,"siteOgImage":"https:\/\/static.wixstatic.com\/media\/5ae170_6fb7dcec7ab646f983b75f6ccc999a44%7Emv2.jpg","homePageTitle":"Accueil","businessName":"Les Habitations SF","businesDescription":"Gestion locative, entretien, réparations, relation locataires : un service complet pour alléger votre charge et garantir un suivi de qualité.","businesLocale":"fr-ca","businesLogo":"https:\/\/static.wixstatic.com\/media\/836e14_d7dc6e8ff93643cbad486bb4e6ff054a.svg","businessLocationCountry":"CA","businessLocationFormatted":"Joliette, QC, Canada","businesLocationsState":"QC","businessLocationCity":"Joliette","businessLocationCoordinates":{"latitude":46.0232315,"longitude":-73.442545},"businessSchedule":{},"currency":"CAD","experiments":{"specs.seo.EnableFaqSD":"false","specs.seo.enableLangCheck":"true","specs.seo.useChunkedSiteStructureForMembersArea":"true"},"platformAppsExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"bookings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"true","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}},"siteLanguages":[{"languageCode":"x-default","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"currLangCode":"fr","seoLang":"fr-ca","currLangResolutionMethod":"Subdirectory"},"userPatterns":[{"patternType":"BLOG_POST","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"ai-generation-disabled\"}}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-ebqqm","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"index\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-x1rjp","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"noarchive, nofollow, noindex, nosnippet\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"}],"metaTags":[{"name":"fb_admins_meta_tag","value":"","property":false},{"name":"google-site-verification","value":"10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM","property":false}],"customHeadTags":"","isInSEO":false,"hasBlogAmp":false,"mainPageId":"xbscd","listPageIds":[]},"serviceRegistrar":{},"sessionManager":{"isRunningInDifferentSiteContext":false,"expiryTimeoutOverride":0,"appsInstances":{},"sessionModel":{}},"siteMembersWixCodeSdk":{"isPreviewMode":false,"isEditMode":false,"smToken":"","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e"},"siteMembers":{"collectionExposure":"Public","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e","smToken":"","protectedHomepage":false,"isTemplate":false,"loginSocialBarOnSite":true,"routerPrefix":"","isCommunityInstalled":false,"baseUrl":"https:\/\/www.leshabitationssf.com","memberInfoAppId":17345},"siteScrollBlocker":{"isBuilderComponentModel":false},"siteWixCodeSdk":{"fontFaceServerUrl":"https:\/\/serverless.parastorage.com\/_serverless\/site-sdk-server\/v1\/style","siteDisplayName":"SF Habitations","siteRevision":4,"regionalSettings":"fr-ca","language":"fr","currency":"CAD","mainPageId":"xbscd","pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"routerPrefixes":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"name":"location","prefix":"\/location","type":"dynamicPages"},"category":{"name":"category","prefix":"\/category","type":"dynamicPages"},"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"name":"copy-of-location","prefix":"\/copy-of-location","type":"dynamicPages"}},"timezone":"America\/Toronto","pageIdToTitle":{"nd5z8":"Gestion AIR BNB","xbscd":"Accueil","ir3c1":"CHOIX DE SERVICE","tbw7n":"Gestion de copropriété","x1rjp":"Location (Item)","dkrww":"Test","fcpv5":"Bienvenue","digmz":"Blog","c1dmp":"Accueil-Old","ebqqm":"Copy of Location (Item)","og9af":"Side Cart","ee5l4":"Post","p8nxp":"Member Page","ycxvu":"Gestion d'immeubles à revenus","mwate":"Thank You Page","zoy0o":"Product Page","tjnio":"Checkout","lbsg6":"Category Page","o2kzs":"Fullscreen Page","wdvyd":"Mise en marché d'un logement","quqwi":"Cart Page","jlcw6":"Obtenir un devis","ua72s":"Gestion Résidentielle & Commerciale","yg0c4":"Search Results","xsdnd":"Mise en Marché - Formulaire","msjef":"À Propos"},"urlMappings":null,"viewMode":"Site"},"speculationRules":{"currentPagePath":"\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-"},"ssrCache":{},"tpaCommons":{"widgetsClientSpecMapData":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","tpaWidgetId":"shoutout_feed","appPage":{},"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","isWixTPA":true,"allowScrolling":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","appPage":{"id":"product_page","name":"product_page","defaultPage":"","hidden":true,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","tpaWidgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","appPage":{"id":"Side Cart","name":"Side Cart","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","tpaWidgetId":"add_to_cart_button","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","tpaWidgetId":"grid_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","tpaWidgetId":"","appPage":{"id":"Success Popup","name":"Success Popup","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","tpaWidgetId":"slider_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","tpaWidgetId":"shopping_cart_icon","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"244576c9-d856-49b9-af14-216071924e3b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","tpaWidgetId":"244576c9-d856-49b9-af14-216071924e3b","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","tpaWidgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetUrl":"\/","tpaWidgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","appPage":{"id":"Payment Request Page","name":"Payment Request Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","tpaWidgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","appPage":{"id":"Category Page","name":"Category Page","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","tpaWidgetId":"product_widget","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","tpaWidgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"widgetUrl":"\/","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"widgetUrl":"\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"499ca64c-5f50-4223-bb91-6d101eaaddae":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"3f1cd43a-87ec-4b1f-b07f-8a443a683fbd":{"widgetUrl":"\/","appPage":{},"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appDefinitionId":"cf06bdf3-5bab-4f20-b165-97fb723dac6a","isWixTPA":true,"allowScrolling":false},"8039fd6a-054b-4289-8bd3-36035c51ecad":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"55adbbae-6799-44b3-98e4-ad5b2667a85b":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"2421f8bc-e686-4c32-8ab6-bc8e0d8b7455":{"widgetUrl":"\/","appPage":{},"applicationId":61,"appDefinitionName":"Wix CMS","appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"allowScrolling":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","tpaWidgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","appPage":{},"applicationId":1934,"appDefinitionName":"Wix Forms","appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","isWixTPA":true,"allowScrolling":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetUrl":"https:\/\/progallery.wixapps.net\/gallery.html","mobileUrl":"https:\/\/progallery.wixapps.net\/gallery.html","tpaWidgetId":"pro-gallery","appPage":{},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":false},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetUrl":"https:\/\/progallery.wixapps.net\/fullscreen","mobileUrl":"https:\/\/progallery.wixapps.net\/fullscreen","appPage":{"id":"fullscreen_page","name":"Fullscreen Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":true,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":true},"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-comments-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-comments-page","appPage":{"id":"member-comments-page","name":"Blog Comments ","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","mobileUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","tpaWidgetId":"recent-posts-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","appPage":{"id":"blog","name":"Blog","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5fdc6c03-080d-4872-b567-24146c82fae5":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","tpaWidgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","tpaWidgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5940091f-797c-4e86-9c57-73fcfd87425f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5520a99-1725-4b88-a85f-c439916890c8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"68a2d745-328b-475d-9e36-661f678daa31":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","tpaWidgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-likes-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-likes-page","appPage":{"id":"member-likes-page","name":"Blog Likes","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","mobileUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","tpaWidgetId":"custom-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"26858b64-aad8-42ab-8c63-f19009198c7b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"d134b0c9-8085-415a-9479-b555374ba958":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","tpaWidgetId":"rss-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","tpaWidgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"211b5287-14e2-4690-bb71-525908938c81":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","appPage":{"id":"post","name":"Post","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","tpaWidgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","tpaWidgetId":"813eb645-c6bd-4870-906d-694f30869fd9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"bc7fa914-015b-4c32-a323-e5472563a798":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7466726a-84cf-41c8-be6b-1694445dc539":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","appPage":{"id":"member-drafts-page","name":"My Drafts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","tpaWidgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","appPage":{"id":"My Posts","name":"My Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-posts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-posts-page","appPage":{"id":"member-posts-page","name":"Blog Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"widgetUrl":"\/","appPage":{},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"97466558-6e7b-43e6-9734-82123ef4c3f3":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":6471,"appDefinitionName":"Category Header","appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","isWixTPA":true,"allowScrolling":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","tpaWidgetId":"faq_widget","appPage":{},"applicationId":8517,"appDefinitionName":"Wix FAQ","appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","isWixTPA":true,"allowScrolling":false},"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"widgetUrl":"\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"137d8ff3-4c89-dc2e-68f2-82c77743cee5":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","mobileUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","tpaWidgetId":"powr_twitter_feed","appPage":{},"applicationId":12583,"appDefinitionName":"Social Media Feed","appDefinitionId":"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f","isWixTPA":false,"allowScrolling":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","tpaWidgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","appPage":{},"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","isWixTPA":true,"allowScrolling":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","tpaWidgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","appPage":{},"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","isWixTPA":true,"allowScrolling":false},"33159c18-8226-4068-91e8-216f5f2c75f8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6e0d0836-6240-4688-b4c2-00095de015d9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"60039b18-5d94-45b7-bd03-b7008213f906":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"widgetUrl":"\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"9fa041da-f429-4a24-8579-46c57a985b33":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"17315fb1-7be4-4492-a196-c1abb2817309":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"f67f8f07-eac7-470e-99f5-213f121b5655":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"db646d31-6817-4184-87df-c5496c9da6b9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5956d247-32d0-43af-9a49-7d1090c1e666":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetUrl":"\/","tpaWidgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","appPage":{"id":"member_settings_page","name":"member_settings_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetUrl":"\/","tpaWidgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","appPage":{"id":"member_page","name":"member_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"596a6688-3ad7-46f7-bb9c-00023225876d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17128,"appDefinitionName":"My Addresses","appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","isWixTPA":true,"allowScrolling":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17345,"appDefinitionName":"Member Account Info","appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17947,"appDefinitionName":"My Wallet","appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","isWixTPA":true,"allowScrolling":false},"04462ba4-2137-41bd-9460-0814554aae07":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","tpaWidgetId":"04462ba4-2137-41bd-9460-0814554aae07","appPage":{"id":"Settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","tpaWidgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","appPage":{"id":"Notifications","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18469,"appDefinitionName":"Members About","appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","isWixTPA":true,"allowScrolling":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","tpaWidgetId":"profile","appPage":{},"applicationId":18823,"appDefinitionName":"Profile Card","appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"169204d8-21be-4b45-b263-a997d31723dc":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","appPage":{"id":"Booking Service Page","name":"Service Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","tpaWidgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","appPage":{"id":"bookings_member_area","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","tpaWidgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","appPage":{"id":"bookings_list","name":"Book Online","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":4,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","tpaWidgetId":"service_list_widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","tpaWidgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetUrl":"https:\/\/editor.wix.com\/","tpaWidgetId":"bookings_timetable_daily","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","tpaWidgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","appPage":{"id":"Booking Form","name":"Booking Form","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","tpaWidgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","tpaWidgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","appPage":{"id":"My Bookings","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","mobileUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","tpaWidgetId":"widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","tpaWidgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","appPage":{"id":"Booking Calendar","name":"Booking Calendar","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetUrl":"https:\/\/engage.wixapps.net\/chat-widget-server\/renderChatWidget\/index","tpaWidgetId":"wix_visitors","appPage":{},"applicationId":20574,"appDefinitionName":"Wix Chat","appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","isWixTPA":true,"allowScrolling":false}},"appsClientSpecMapData":{"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appFields":{"premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.3913.0","hipaaCompliant":true},"isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"applicationId":41,"appDefinitionName":"Checkout & Orders","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6749.0","hipaaCompliant":true,"platform":{"routerHttpMethod":"GET","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/editor.bundle.min.js","routerServiceUrl":"\/_api\/wixstores-tpa-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","errorReporting":{},"platformOnly":true,"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:serverless.wixstores-tpa-site-structure-service"}}},"isWixTPA":true},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^2.20.0","installedVersion":"^2.0.0"},"isWixTPA":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"applicationId":45,"appDefinitionName":"Instagram Feed Social","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.6.0","installedVersion":"^5.0.0"},"isWixTPA":false},"cf06bdf3-5bab-4f20-b165-97fb723dac6a":{"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.13.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"dad178e5-571d-45bf-89a0-c1f97242199f":{"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appFields":{"permissionsEnforced":true,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^1.6.0","installedVersion":"^1.0.0"},"isWixTPA":false},"e593b0bd-b783-45b8-97c2-873d42aacaf4":{"applicationId":61,"appDefinitionName":"Wix CMS","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-data-client-app\/1.29.0\/webworker\/wixDataEditor.umd.min.js","editorScriptUrlTemplate":"<%= serviceUrl('wix-data-client-app', 'webworker\/wixDataEditor.umd.min.js') %>"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^2.103.0","hipaaCompliant":true},"isWixTPA":true},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"applicationId":1934,"appDefinitionName":"Wix Forms","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"},"viewer":{"errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"}},"ooiInEditor":true},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.1326.0","hipaaCompliant":true},"isWixTPA":true},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"cloneAppDataUrl":"https:\/\/progallery.wixapps.net\/_api\/gallery\/clone","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"},"width":{"desktop":{},"tablet":{},"mobile":{}},"shouldCloneDataPerComponent":true,"viewer":{"errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"}},"studio":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.979.0","hipaaCompliant":true},"isWixTPA":true},"14bcded7-0066-7c35-14d7-466cb3f09103":{"applicationId":4774,"appDefinitionName":"Wix Blog","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/editorScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"migratedToNewPlatformApi":true,"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.2252.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"}},"studio":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.npm.communities-blog-node-api"}},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.5447.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"applicationId":5582,"appDefinitionName":"Wix Site Search","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3605.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.454.0","hipaaCompliant":true},"isWixTPA":true},"7479d596-137c-4fa3-89cd-d7091042ba61":{"applicationId":6471,"appDefinitionName":"Category Header","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"migratedToNewPlatformApi":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('blog-category-header-widget', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","errorReporting":{},"viewer":{"errorReporting":{}},"studio":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.194.0","hipaaCompliant":true},"isWixTPA":true},"14c92d28-031e-7910-c9a8-a670011e062d":{"applicationId":8517,"appDefinitionName":"Wix FAQ","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^5.341.0","hipaaCompliant":true,"installedVersion":"^5.0.0"},"isWixTPA":true},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"applicationId":10725,"appDefinitionName":"TikTok Feed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^3.12.0","installedVersion":"^3.0.0"},"isWixTPA":false},"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f":{"applicationId":12583,"appDefinitionName":"Social Media Feed","appFields":{"featuresForNewPackagePicker":[],"packagePickerV2":[{"model":{"features":[{"description":"Remove the POWr logo from the bottom of your Twitter Feed.","name":"No POWr Logo","id":"3656b178-e0c5-4b22-8c35-462d7f0f6311"},{"description":"The amount of time before your Twitter Feed is updated with new posts.","name":"Content Refresh Rate","id":"5d8f487a-5aa6-4574-93af-361c7cb5890a"},{"description":"The maximum number of tweets you can display in your feed.","name":"Number of Tweets","id":"d528cf92-5b75-47fb-ae3d-9753eaf5beff"},{"description":"The number of handles and\/or hashtags you can follow in one feed.","name":"Number of @Handles & #Hashtags","id":"86bb2ab2-35c0-4c59-9696-3be86a69ea77"},{"description":"Let visitors retweet or favorite posts from your Twitter Feed.","name":"Retweet\/Favorite Posts","id":"b11b6830-91bd-48c4-b4f1-93823f444870"},{"description":"Add custom CSS or JavaScript in advanced settings for further customization.","name":"Custom CSS & JavaScript","id":"d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57"}],"isExternalPricing":false,"languageCode":"en","isInAppPurchase":false,"freeTrialDays":0,"plans":[{"name":"Starter","vendorId":"premium","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"12 Hours","3656b178-e0c5-4b22-8c35-462d7f0f6311":"","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"5","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"2"},"id":"3e64f4a2-4a40-4e68-97a2-e8a6d14c94e8","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":3.9900000095367,"yearlyPrice":3.3099999427795}},{"name":"Pro","vendorId":"Pro","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"3 Hours","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"5","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"15","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"612c4229-6909-4b67-a7b3-d55295452319","mostPopular":true,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":30,"monthlyPrice":7.9899997711182,"yearlyPrice":5.5900001525879}},{"name":"Business","vendorId":"business","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"20 Minutes","d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57":"","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"10","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"50","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"121a889c-1d4e-445b-be2b-90febcc8dbd7","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":11.989999771118,"yearlyPrice":9.9499998092651}}],"businessModel":"FREEMIUM"},"appId":"a365d579-778c-4392-ba12-f5ed64901e1a","languageCode":"en"}],"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^3.28.0","installedVersion":"^3.0.0"},"isWixTPA":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('express-checkout-widget-ooi', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"df892fe9-626f-44c9-a328-e29f93880b38":{"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6.0","hipaaCompliant":true},"isWixTPA":true},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"applicationId":15442,"appDefinitionName":"Product Page Blocks","appFields":{"platform":{"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"},"width":{"desktop":{},"tablet":{},"mobile":{}},"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"viewer":{"errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"}},"studio":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^27.174.0","hipaaCompliant":true},"isWixTPA":true},"b976560c-3122-4351-878f-453f337b7245":{"applicationId":17071,"appDefinitionName":"Members Area","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"},"editorScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'editorScript.bundle.min.js') %>","viewer":{"errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"}},"studio":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.members.members-area-site-structure-api"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^12.453.0","hipaaCompliant":true},"isWixTPA":true},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"applicationId":17128,"appDefinitionName":"My Addresses","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"applicationId":17345,"appDefinitionName":"Member Account Info","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.265.0","hipaaCompliant":true},"isWixTPA":true},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"applicationId":17947,"appDefinitionName":"My Wallet","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"},"viewer":{"errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.80.0","hipaaCompliant":true},"isWixTPA":true},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications-preferences', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"},"viewer":{"errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.23.0","hipaaCompliant":true},"isWixTPA":true},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"},"viewer":{"errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.45.0","hipaaCompliant":true},"isWixTPA":true},"14dbef06-cc42-5583-32a7-3abd44da4908":{"applicationId":18469,"appDefinitionName":"Members About","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.223.0","hipaaCompliant":true},"isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"applicationId":18823,"appDefinitionName":"Profile Card","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.300.0","hipaaCompliant":true},"isWixTPA":true},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"applicationId":19310,"appDefinitionName":"Wix Bookings","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"routerServiceUrl":"\/_serverless\/bookings-viewer-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.10281.0","hipaaCompliant":true,"installedVersion":"^0.0.0","appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.bookings.services-2"}}},"isWixTPA":true},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"applicationId":20574,"appDefinitionName":"Wix Chat","appFields":{"platform":{"optionalApplication":true,"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/editor-script.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"mostPopularPackage":"Sales","premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"featuresForNewPackagePicker":[{"forPackages":[{"value":"50","packageId":"Professional"},{"value":"150","packageId":"Sales"},{"value":"Unlimited","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Teams"}]}],"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.190.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true}},"previewMode":false,"siteRevision":4,"viewMode":"site","editorOrSite":"site","userFileDomainUrl":"filesusr.com","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremiumDomain":true,"routersConfig":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"routerByPrefix":{"location":"routers-m338s9i0","category":"routers-m6saa70b","copy-of-location":"routers-m8omcibz"},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","tpaModalConfig":{"wixTPAs":{"139ef4fa-c108-8f9a-c7be-d5f492a2c939":true,"7efa9936-86f7-44c6-880b-7bae4e044a3d":true,"13ee94c1-b635-8505-3391-97919052c16f":true,"55cd9036-36bb-480b-8ddc-afda3cb2eb8d":true,"35aec784-bbec-4e6e-abcb-d3d724af52cf":true,"8ea9df15-9ff6-4acf-bbb8-8d3a69ae5841":true,"14ce1214-b278-a7e4-1373-00cebd1bef7c":true,"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":true,"141fbfae-511e-6817-c9f0-48993a7547d1":true,"d70b68e2-8d77-4e0c-9c00-c292d6e0025e":true,"146c0d71-352e-4464-9a03-2e868aabe7b9":true,"307ba931-689c-4b55-bb1d-6a382bad9222":true,"14b89688-9b25-5214-d1cb-a3fb9683618b":true,"ea2821fc-7d97-40a9-9f75-772f29178430":true,"9bead16f-1c73-4cda-b6c4-28cff46988db":true,"1480c568-5cbd-9392-5604-1148f5faffa0":true,"94bc563b-675f-41ad-a2a6-5494f211c47b":true,"14e12b04-943e-fd32-456d-70b1820a2ff2":true,"14bca956-e09f-f4d6-14d7-466cb3f09103":true,"150ae7ee-c74a-eecd-d3d7-2112895b988a":true,"f123e8f1-4350-4c9b-b269-04adfadda977":true,"4b10fcce-732d-4be3-9d46-801d271acda9":true,"9050a8e8-0fd3-4936-af2a-5ae4f84c41b8":true,"1973457f-c021-4da5-941f-58444ff761d4":true,"1380b703-ce81-ff05-f115-39571d94dfcd":true,"e4b5f1bc-c77a-4319-a60d-a46acb17f6fc":true,"14d7032a-0a65-5270-cca7-30f599708fed":true,"6580b7e9-4031-4a62-a0a5-8e2fa92e8e18":true,"7516f85b-0868-4c23-9fcb-cea7784243df":true,"57d13128-4a4c-494b-80b3-a6fb2e28018d":true,"45c44b27-ca7b-4891-8c0d-1747d588b835":true,"fc9314bc-a317-4a2b-a9d4-5ad21cc57856":true,"50d8c12f-715e-41ad-be25-d0f61375dbee":true,"f4d83b06-b408-4f3b-afd4-de8db311d7d8":true,"cf06bdf3-5bab-4f20-b165-97fb723dac6a":true,"e81d3ca5-7ca5-4188-bfac-f4997a34065e":true,"399a2612-a042-4fb7-aeff-ed331c7d1c39":true,"2f70e2b4-ff36-472e-bdb9-ce393b13669e":true,"e593b0bd-b783-45b8-97c2-873d42aacaf4":true,"225dd912-7dea-4738-8688-4b8c6955ffc2":true,"14271d6f-ba62-d045-549b-ab972ae1f70e":true,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":true,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":true,"215238eb-22a5-4c36-9e7b-e7c08025e04e":true,"47e245ca-1a42-4d6a-a69a-c125bc839b40":true,"df892fe9-626f-44c9-a328-e29f93880b38":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":true,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":true,"b976560c-3122-4351-878f-453f337b7245":true,"1505b775-e885-eb1b-b665-1e485d9bf90e":true,"14cffd81-5215-0a7f-22f8-074b0e2401fb":true,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":true,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":true,"14f25924-5664-31b2-9568-f9c5ed98c9b1":true,"14dbef06-cc42-5583-32a7-3abd44da4908":true,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":true,"14517e1a-3ff0-af98-408e-2bd6953c36a2":true,"14d84998-ae09-1abf-c6fc-3f3cace5bf19":true}},"appSectionParams":{},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","isMobileView":false,"isMobileDevice":false,"deviceType":"desktop","extras":{"currency":"CAD"},"tpaDebugParams":{"debugApp":null,"petri_ovr":null},"locale":"fr","timeZone":"America\/Toronto","shouldRenderTPAsIframe":true,"debug":false,"regionalLanguage":"fr","isBuilderComponentModel":false,"fragmentInstanceToPageId":{}},"widgetWixCodeSdk":{"isBuilderComponentModel":false},"windowWixCodeSdk":{"locale":"fr-ca","isMobileFriendly":true,"formFactor":"Desktop","pageIdToRouterAppDefinitionId":{"x1rjp":"dataBinding","lbsg6":"1380b703-ce81-ff05-f115-39571d94dfcd","ebqqm":"dataBinding"}},"wixCustomElementComponent":{"shouldLoadAllExternalScripts":true,"widgetsToRenderOnFreeSites":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":true,"8039fd6a-054b-4289-8bd3-36035c51ecad":true,"55adbbae-6799-44b3-98e4-ad5b2667a85b":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-ljbqi":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-fz6ni":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rluvr":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rmno8":true,"14bcded7-0066-7c35-14d7-466cb3f09103-sw47o":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ak2wd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-q8dzf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u5w25":true,"14bcded7-0066-7c35-14d7-466cb3f09103-hoxv1":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pit6d":true,"14bcded7-0066-7c35-14d7-466cb3f09103-prihd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-dqjva":true,"14bcded7-0066-7c35-14d7-466cb3f09103-nz8hi":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e9hqn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e3jvn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-gcv5t":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ghrxf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-liy9s":true,"14bcded7-0066-7c35-14d7-466cb3f09103-eii64":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u61rq":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pzdqd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-yrjyo":true,"14bcded7-0066-7c35-14d7-466cb3f09103-wzdp6":true,"14bcded7-0066-7c35-14d7-466cb3f09103-y3apm":true,"14bcded7-0066-7c35-14d7-466cb3f09103-bu1xw":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pz2i2":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e25z0":true,"14bcded7-0066-7c35-14d7-466cb3f09103-b0z74":true,"14bcded7-0066-7c35-14d7-466cb3f09103-h77jn":true,"7479d596-137c-4fa3-89cd-d7091042ba61-ruxce":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-rmno8":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-x5kmw":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-vh9q1":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-wubn4":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x7lat":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bkcdi":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bqb3v":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x4vxv":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-y4976":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-b4kha":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-h9lrc":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-hxdg5":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-z50e2":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-yl1zs":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-v8gqn":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-r7gvz":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-ish0i":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-uu804":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mp016":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-fgl5b":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mt2f0":true,"b976560c-3122-4351-878f-453f337b7245-aehnv":true,"b976560c-3122-4351-878f-453f337b7245-uuc0d":true,"b976560c-3122-4351-878f-453f337b7245-zuaoa":true,"b976560c-3122-4351-878f-453f337b7245-ng58u":true,"b976560c-3122-4351-878f-453f337b7245-a1ugz":true,"b976560c-3122-4351-878f-453f337b7245-xhv4l":true,"b976560c-3122-4351-878f-453f337b7245-mty3l":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-flb7a":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cv54f":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-drzkv":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cyng5":true},"wixCodeBundlersUrlData":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","appDefIdToWixCodeBundlerUrlData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/a9a3d486-0959-4998-8101-804533f57449\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_a9a3d486-0959-4998-8101-804533f57449\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9ebcb758-3944-4933-bba8-ff8a92a98050\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9ebcb758-3944-4933-bba8-ff8a92a98050\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/71869e96-79b7-49b9-b6f9-e32bcf00ac52\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_71869e96-79b7-49b9-b6f9-e32bcf00ac52\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/21056c2c-144a-488f-912d-5fb0e1262beb\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_21056c2c-144a-488f-912d-5fb0e1262beb\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9cd056c2-0ac6-492c-a87e-9077d75d5345\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9cd056c2-0ac6-492c-a87e-9077d75d5345\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/4741eabd-b87f-4c4a-8280-f696c07fc433\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_4741eabd-b87f-4c4a-8280-f696c07fc433\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/1f3cdaf3-1ef1-491b-8743-1894bb51257c\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_1f3cdaf3-1ef1-491b-8743-1894bb51257c\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"b976560c-3122-4351-878f-453f337b7245":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/5d5e1403-dffe-4565-948c-03a8e2f4251e\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_5d5e1403-dffe-4565-948c-03a8e2f4251e\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"}}},"customElementWidgets":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99-03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"scriptUrl":"https:\/\/hfkynx-feb58f81261918cf-certifiedcode.wix-host.com\/_wix_126f0f6e-custom-elements\/03721c8b-93e9-4a80-a4e5-88c51e3a2634-u95sDHB4.js","tagName":"tiktok-embed","scriptType":"ES_MODULE"}}},"wixEmbedsApi":{"isAdminPage":false},"platform":{"sdksStaticPaths":{"mainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/mainSdks.4ad69533.chunk.min.js","nonMainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/nonMainSdks.785ca7c9.chunk.min.js"},"clientWorkerUrl":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/clientWorker.6c93ebaf.bundle.min.js","bootstrapData":{"isMobileView":false,"isMobileAppBuilder":false,"appsSpecData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","type":"public","instanceId":"664e3b24-55d5-4370-992a-906c83427cd5","appDefinitionName":"Old Wix Forms and Payments","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","type":"siteextension","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","isIdentityTokenAppSpec":false,"isModuleFederated":false},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","type":"public","instanceId":"b743bf2f-48be-4b91-bc2d-cae97bd2ebdb","appDefinitionName":"Checkout & Orders","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","type":"public","instanceId":"c182465f-40e5-45a3-8fe7-d4ed22dc4e25","appDefinitionName":"TikTok Videos & Profile Embed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","type":"public","instanceId":"aa397d12-cbcc-4918-9926-e9879ef7bc6e","appDefinitionName":"Instagram Feed Social","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","type":"public","instanceId":"511414b8-bd16-4b71-90f1-9ee07097cddb","appDefinitionName":"Wix Forms","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","type":"public","instanceId":"ea2e7592-fb1b-4285-8b45-6b6f7338002d","appDefinitionName":"Wix Pro Gallery","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","type":"public","instanceId":"8415270e-dd8b-4544-aa96-8bca40689dc9","appDefinitionName":"Wix Blog","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","type":"public","instanceId":"a68016c7-acaf-416c-86c2-82631aea2a69","appDefinitionName":"Wix Site Search","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","type":"public","instanceId":"ad56a9d7-29a5-415f-a257-ce34d1fe5c74","appDefinitionName":"Category Header","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","type":"public","instanceId":"09069977-8940-4543-97e9-68546fad2a50","appDefinitionName":"Wix FAQ","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","type":"public","instanceId":"f556be82-4770-42a8-ad1e-82c9933fd877","appDefinitionName":"TikTok Feed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefinitionId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","type":"public","instanceId":"b0d1b4e0-5f76-4ddf-9654-45abb578c2f4","appDefinitionName":"Wix Stores","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","type":"public","instanceId":"d37f86b4-371b-4434-a667-fbfc23f03483","appDefinitionName":"Express Checkout Widget OOI","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","type":"public","instanceId":"2b3d7f83-14f9-44e1-a1d5-c4f0be5dbfbe","appDefinitionName":"payment-methods-banner-ooi","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","type":"public","instanceId":"535d4bff-e6c4-4eaa-a555-298288a6ba25","appDefinitionName":"Product Page Blocks","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","type":"public","instanceId":"84def387-15a6-4e37-b80b-fc3b83890bc8","appDefinitionName":"Wix Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"b976560c-3122-4351-878f-453f337b7245":{"appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","type":"public","instanceId":"eff1dc0f-a6b0-4a73-bb81-c85fe49c84dc","appDefinitionName":"Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","type":"public","instanceId":"fe4e40e2-d8ce-4715-b242-b30ca7e90de9","appDefinitionName":"Member Account Info","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","type":"public","instanceId":"d9f00b70-8471-4f01-a4cd-27e9747c31c4","appDefinitionName":"My Wallet","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","type":"public","instanceId":"f29e5990-ce72-4f78-81d3-2406ad116dea","appDefinitionName":"Members Notifications Settings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","type":"public","instanceId":"d8f1700d-8126-4081-9f7f-77394d926ed5","appDefinitionName":"Wix Members Area Notifications","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","type":"public","instanceId":"b99f6262-6691-4942-9425-3bb22ef14b19","appDefinitionName":"Members About","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","type":"public","instanceId":"7314d009-0de2-4512-a7b8-fd99f85f3ddf","appDefinitionName":"Profile Card","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","type":"public","instanceId":"59320de1-6ceb-4eb6-a60b-43de000c7f21","appDefinitionName":"Wix Bookings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","type":"public","instanceId":"29aace14-1ee3-46e9-ba9c-34223d769672","appDefinitionName":"Wix Chat","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"dataBinding":{"appDefinitionId":"dataBinding","type":"application","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","appDefinitionName":"Data Binding","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false}},"appsUrlData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefName":"Old Wix Forms and Payments","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.883.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefName":"Checkout & Orders","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"widgets":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidgetNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","cssPerBreakpoint":true},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","cssPerBreakpoint":true},"14666402-0bc7-b763-e875-e99840d131bd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","errorReportingUrl":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","widgetId":"14666402-0bc7-b763-e875-e99840d131bd"},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidgetNoCss.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","cssPerBreakpoint":true},"13afb094-84f9-739f-44fd-78d036adb028":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","cssPerBreakpoint":true},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidgetNoCss.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","cssPerBreakpoint":true},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14"},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","cssPerBreakpoint":true},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4"},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb"},"1380bba0-253e-a800-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","cssPerBreakpoint":true},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","cssPerBreakpoint":true},"244576c9-d856-49b9-af14-216071924e3b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","cssPerBreakpoint":true},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","cssPerBreakpoint":true},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a"},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","cssPerBreakpoint":true},"14fd5970-8072-c276-1246-058b79e70c1a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a"},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetNoCss.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd"},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a"},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"215f8ab7-97c3-4838-a6d0-ad4a61747158"}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefId":"225dd912-7dea-4738-8688-4b8c6955ffc2","appDefName":"Wix Forms","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"errorReportingUrl":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615","widgets":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","cssPerBreakpoint":true}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefName":"Wix Site Search","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"widgets":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"4a60a434-d08a-4bd4-a323-4c2479db87ea"},"44c66af6-4d25-485a-ad9d-385f5460deef":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","cssPerBreakpoint":true}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefId":"14c92d28-031e-7910-c9a8-a670011e062d","appDefName":"Wix FAQ","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","cssPerBreakpoint":true}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","appDefName":"Wix Stores","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/storesViewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","appDefName":"Express Checkout Widget OOI","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"widgets":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744"}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefId":"df892fe9-626f-44c9-a328-e29f93880b38","appDefName":"payment-methods-banner-ooi","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"widgets":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4"}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefName":"Wix Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.2869.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appDefName":"Member Account Info","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","cssPerBreakpoint":true}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appDefName":"My Wallet","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","cssPerBreakpoint":true}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appDefName":"Members Notifications Settings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"errorReportingUrl":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097","widgets":{"04462ba4-2137-41bd-9460-0814554aae07":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","cssPerBreakpoint":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","cssPerBreakpoint":false}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appDefName":"Wix Members Area Notifications","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f"},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7"}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefId":"14dbef06-cc42-5583-32a7-3abd44da4908","appDefName":"Members About","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","cssPerBreakpoint":true}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefName":"Profile Card","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidgetNoCss.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","cssPerBreakpoint":true}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","appDefName":"Wix Bookings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"widgets":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"c7fddce1-ebf5-46b0-a309-7865384ba63f"},"169204d8-21be-4b45-b263-a997d31723dc":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"169204d8-21be-4b45-b263-a997d31723dc"},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","cssPerBreakpoint":true},"3c675d25-41c7-437e-b13d-d0f99328e347":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidgetNoCss.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","cssPerBreakpoint":true},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","cssPerBreakpoint":true},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","cssPerBreakpoint":true},"621bc837-5943-4c76-a7ce-a0e38185301f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidgetNoCss.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","cssPerBreakpoint":true},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","cssPerBreakpoint":true},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","cssPerBreakpoint":true},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"89c4023a-027e-4d2a-b6b7-0b9d345b508d"},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidgetNoCss.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","cssPerBreakpoint":true},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","cssPerBreakpoint":true},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"3dc66bc5-5354-4ce6-a436-bd8394c09b0e"},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","cssPerBreakpoint":true},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","noCssComponentUrl":"","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80"},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidgetNoCss.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","cssPerBreakpoint":true}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","appDefName":"Wix Chat","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","baseUrls":{},"widgets":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14517f3f-ffc5-eced-f592-980aaa0bbb5c"}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","appDefName":"TikTok Videos & Profile Embed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"widgets":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"03721c8b-93e9-4a80-a4e5-88c51e3a2634"},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"dfa30e37-50c9-45a6-92a9-1ca066308259"},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"0c2fe29b-9577-40e9-8944-8b4f27ae8ead"}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","appDefName":"Instagram Feed Social","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"widgets":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"499ca64c-5f50-4223-bb91-6d101eaaddae"},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"1eb642dd-23c7-4aac-86ab-af33ba891b2a"},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94"},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"9b3f6bc6-0638-45bb-a924-9e62664f7de0"}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefId":"14271d6f-ba62-d045-549b-ab972ae1f70e","appDefName":"Wix Pro Gallery","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgets":{"142bb34d-3439-576a-7118-683e690a1e0d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d"},"144f04b9-aab4-fde7-179b-780c11da4f46":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"144f04b9-aab4-fde7-179b-780c11da4f46"}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefId":"14bcded7-0066-7c35-14d7-466cb3f09103","appDefName":"Wix Blog","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgets":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ea40bb32-ddfc-4f68-a163-477bd0e97c8e"},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260f9-c2eb-50e8-9b3c-4d21861fe58f"},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6"},"14e5b36b-e545-88a0-1475-2487df7e9206":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b36b-e545-88a0-1475-2487df7e9206"},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6"},"5fdc6c03-080d-4872-b567-24146c82fae5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5fdc6c03-080d-4872-b567-24146c82fae5"},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa"},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03"},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2d4ed2d3-75f8-4942-9787-71e3d182e256"},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9"},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","cssPerBreakpoint":true},"5940091f-797c-4e86-9c57-73fcfd87425f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5940091f-797c-4e86-9c57-73fcfd87425f"},"e5520a99-1725-4b88-a85f-c439916890c8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5520a99-1725-4b88-a85f-c439916890c8"},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1b5b448c-a39f-4515-9445-c6b4ceace1c2"},"68a2d745-328b-475d-9e36-661f678daa31":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"68a2d745-328b-475d-9e36-661f678daa31"},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5e123a45-f3aa-4157-a47a-e58d8cb246eb"},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","cssPerBreakpoint":true},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"b27ea74b-1c6f-4bdb-bda7-8242323ba20b"},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"25ab36f9-f8bd-4799-a887-f10b6822fc2e"},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26109-514f-f9a8-9b3c-4d21861fe58f"},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"76359954-edd4-4c46-ad14-a7c5e65cc30c"},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b39b-6d47-99c3-3ee5-cee1c2574c89"},"26858b64-aad8-42ab-8c63-f19009198c7b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"26858b64-aad8-42ab-8c63-f19009198c7b"},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"129259f6-06e4-42a3-9877-81a1fa9de95c"},"d134b0c9-8085-415a-9479-b555374ba958":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"d134b0c9-8085-415a-9479-b555374ba958"},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","cssPerBreakpoint":true},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","cssPerBreakpoint":true},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd"},"211b5287-14e2-4690-bb71-525908938c81":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"211b5287-14e2-4690-bb71-525908938c81","cssPerBreakpoint":true},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7"},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7"},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ce8e832b-c34f-4b80-b2a6-6cfd6d573751"},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a"},"813eb645-c6bd-4870-906d-694f30869fd9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9"},"bc7fa914-015b-4c32-a323-e5472563a798":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"bc7fa914-015b-4c32-a323-e5472563a798"},"7466726a-84cf-41c8-be6b-1694445dc539":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7466726a-84cf-41c8-be6b-1694445dc539"},"14f260e4-ea13-f861-b0ba-4577df99b961":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260e4-ea13-f861-b0ba-4577df99b961"},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"091d05b7-f44d-4a76-9163-0c7ed5312769"},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"763aa9a8-0531-426f-a4b1-61a7291ce292"},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046"},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26118-b65b-b1c1-b6db-34d5da9dd623"}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefId":"7479d596-137c-4fa3-89cd-d7091042ba61","appDefName":"Category Header","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"widgets":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"97466558-6e7b-43e6-9734-82123ef4c3f3"}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","appDefName":"TikTok Feed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"widgets":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"6aaf0b7d-32c6-4384-b128-d47e22ba1087"},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"f4877f7b-3730-4bf6-ab04-f8a2b47fe642"},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"b07b31e4-3a98-4859-abca-0854eef13bc9"}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","appDefName":"Product Page Blocks","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgets":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"33159c18-8226-4068-91e8-216f5f2c75f8"},"6e0d0836-6240-4688-b4c2-00095de015d9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6e0d0836-6240-4688-b4c2-00095de015d9"},"60039b18-5d94-45b7-bd03-b7008213f906":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"60039b18-5d94-45b7-bd03-b7008213f906"},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"72c071a7-3808-4b0d-94ae-cc49bc51e0fe"},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45"},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ba708a2c-287b-4bfa-9daf-d04168e13e1f"},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5"},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2fb559c9-2297-43cc-9f28-aaf3e988063d"},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ddea5ffa-c473-4655-8c8f-241e10f9bd67"},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"cbd0cea6-4c0d-4199-b241-1254d1f02377"},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"56b08f4f-d99b-4da2-a049-ca218b626be2"},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"e3eb5d42-170a-41ad-a344-8489e54828ad"},"9fa041da-f429-4a24-8579-46c57a985b33":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"9fa041da-f429-4a24-8579-46c57a985b33"},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6a25b678-53ec-4b37-a190-65fcd1ca1a63"},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"a7a7c443-9ebe-442f-9339-b28804f8869e"},"17315fb1-7be4-4492-a196-c1abb2817309":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"17315fb1-7be4-4492-a196-c1abb2817309"},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1"},"f67f8f07-eac7-470e-99f5-213f121b5655":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"f67f8f07-eac7-470e-99f5-213f121b5655"},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"edb17e71-9a93-428e-87d8-26c07fb4cd3c"},"db646d31-6817-4184-87df-c5496c9da6b9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"db646d31-6817-4184-87df-c5496c9da6b9"}}},"b976560c-3122-4351-878f-453f337b7245":{"appDefId":"b976560c-3122-4351-878f-453f337b7245","appDefName":"Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgets":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5956d247-32d0-43af-9a49-7d1090c1e666"},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"2f6c5608-393f-4b15-bfd8-d4e15396787a"},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5ab312ae-0cf7-4093-bbf5-5e4d3690151c"},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b"},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b"},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"25d08a82-0ea5-40f4-8047-07aee3e73e40"},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"009081ab-9c3d-41d5-8b90-41af0e84c159"},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"a26fd26a-3dd9-42ca-b381-326a9c143e38"},"596a6688-3ad7-46f7-bb9c-00023225876d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"596a6688-3ad7-46f7-bb9c-00023225876d"}}},"dataBinding":{"appDefId":"dataBinding","appDefName":"Data Binding","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0\/app.js","baseUrls":{},"widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefId":"675bbcef-18d8-41f5-800e-131ec9e08762","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.751\/app.js","baseUrls":{},"widgets":{}}},"builderComponentsImportMapSdkUrls":{},"builderComponentsCompTypeSdkUrls":{},"builderPublicPackagesUrls":{"esm":{},"umd":{}},"blocksBootstrapData":{"blocksAppsData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2","packageImportName":"@s21797\/instagram-display-feed"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4","packageImportName":"@s21797\/tiktok-feed"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"},"b976560c-3122-4351-878f-453f337b7245":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"elevatedBlocksAppsOnReactNative":[],"experiments":{"specs.blocks-client.alwaysUseTokenInfoForDecode":"true"},"experimentsQueryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","widgetBundleUrls":{},"isVeloBundlerParastorageUrlEnabled":true,"parastorageTemplateUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_\/gridAppId_\/filePath_\/fileType_js\/compression_gzip\/depToken_3938\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_"},"window":{"csrfToken":"1786257321|f9WXw5E06rqN"},"location":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isPremiumDomain":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userFileDomainUrl":"filesusr.com"},"bi":{"ownerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","isMobileFriendly":true,"isPreview":false,"requestId":"1786257328.3664022002821382"},"platformAPIData":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"wixCodeBootstrapData":{"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","wixCodeInstanceId":"a1f45234-850a-4a74-a53d-568344a34848","wixCloudBaseDomain":"wix-code.com","dbsmViewerApp":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0","wixCodePlatformBaseUrl":"https:\/\/static.parastorage.com\/services\/wix-code-platform\/1.1097.93","wixCodeModel":{"appData":{"codeAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"},"signedAppRenderInfo":"f993ba2e290408722bfe242c9c8501e610f5b518.eyJncmlkQXBwSWQiOiIwMGRmYmM4Yy1iN2YzLTRkYzEtOTg5Yy1mNmEzYjI3OTFhODUiLCJodG1sU2l0ZUlkIjoiNDUyMDcxYzEtYTk5Yi00NGMyLWI2ODYtZGQxNWIxMTI2NGEzIiwiZGVtb0lkIjpudWxsLCJzaWduRGF0ZSI6MTc4NjI1NzMyODQ3N30="},"wixCodePageIds":{"ebqqm":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ebqqm.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","ycxvu":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ycxvu.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","wdvyd":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_wdvyd.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"elementorySupport":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview"},"codePackagesData":[{"importName":"@s21797\/instagram-display-feed","gridAppId":"343ea3d2-8481-44a4-9766-e5cdf26a75ef","appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163"},{"importName":"@s21797\/tiktok-feed","gridAppId":"35b7ef5e-d3c5-4bb7-a9f5-c6f4f25a9423","appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3"}]},"autoFrontendModulesBaseUrl":"https:\/\/static.parastorage.com\/services\/auto-frontend-modules\/1.6238.0","disabledPlatformApps":{},"widgetsClientSpecMapData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{},"675bbcef-18d8-41f5-800e-131ec9e08762":{},"1380b703-ce81-ff05-f115-39571d94dfcd":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetName":"product_page","componentFields":{}},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetName":"49dbb2d9-d9e5-4605-a147-e926605bf164","componentFields":{}},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetName":"add_to_cart_button","componentFields":{}},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetName":"wishlist","componentFields":{}},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetName":"grid_gallery","componentFields":{}},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetName":"Success Popup","componentFields":{}},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetName":"shopping_cart","componentFields":{}},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetName":"slider_gallery","componentFields":{}},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetName":"thank_you_page","componentFields":{}},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetName":"order_history","componentFields":{}},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetName":"product_gallery","componentFields":{}},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetName":"shopping_cart_icon","componentFields":{}},"244576c9-d856-49b9-af14-216071924e3b":{"widgetName":"244576c9-d856-49b9-af14-216071924e3b","componentFields":{}},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetName":"abcd87fe-c51f-4538-848d-2902a2f50d2d","componentFields":{}},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetName":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","componentFields":{}},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetName":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","componentFields":{}},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetName":"checkout","componentFields":{}},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetName":"product_widget","componentFields":{}},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetName":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","componentFields":{}},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"componentFields":{}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"componentFields":{}},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"componentFields":{}},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"componentFields":{}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"componentFields":{}},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"componentFields":{}},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"componentFields":{}},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"componentFields":{}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetName":"371ee199-389c-4a93-849e-e35b8a15b7ca","componentFields":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetName":"pro-gallery","componentFields":{}},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetName":"fullscreen_page","componentFields":{}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"componentFields":{}},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetName":"member-comments-page","componentFields":{}},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"componentFields":{}},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetName":"recent-posts-widget","componentFields":{}},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetName":"blog","componentFields":{}},"5fdc6c03-080d-4872-b567-24146c82fae5":{"componentFields":{}},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"componentFields":{}},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"componentFields":{}},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"componentFields":{}},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetName":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","componentFields":{}},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetName":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","componentFields":{}},"5940091f-797c-4e86-9c57-73fcfd87425f":{"componentFields":{}},"e5520a99-1725-4b88-a85f-c439916890c8":{"componentFields":{}},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"componentFields":{}},"68a2d745-328b-475d-9e36-661f678daa31":{"componentFields":{}},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"componentFields":{}},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetName":"c0a125b8-2311-451e-99c5-89b6bba02b22","componentFields":{}},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"componentFields":{}},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"componentFields":{}},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetName":"member-likes-page","componentFields":{}},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"componentFields":{}},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetName":"custom-feed-widget","componentFields":{}},"26858b64-aad8-42ab-8c63-f19009198c7b":{"componentFields":{}},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"componentFields":{}},"d134b0c9-8085-415a-9479-b555374ba958":{"componentFields":{}},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetName":"rss-feed-widget","componentFields":{}},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetName":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","componentFields":{}},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"componentFields":{}},"211b5287-14e2-4690-bb71-525908938c81":{"widgetName":"post","componentFields":{}},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetName":"478911c3-de0c-469e-90e3-304f2f8cd6a7","componentFields":{}},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"componentFields":{}},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"componentFields":{}},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"componentFields":{}},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetName":"813eb645-c6bd-4870-906d-694f30869fd9","componentFields":{}},"bc7fa914-015b-4c32-a323-e5472563a798":{"componentFields":{}},"7466726a-84cf-41c8-be6b-1694445dc539":{"componentFields":{}},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetName":"member-drafts-page","componentFields":{}},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"componentFields":{}},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"componentFields":{}},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetName":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","componentFields":{}},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetName":"member-posts-page","componentFields":{}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"componentFields":{}},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetName":"search_results","componentFields":{}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"componentFields":{}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetName":"faq_widget","componentFields":{}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"componentFields":{}},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"componentFields":{}},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"componentFields":{}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetName":"54fb025c-61dc-4286-87c7-0ac416c58744","componentFields":{}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetName":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","componentFields":{}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"componentFields":{}},"6e0d0836-6240-4688-b4c2-00095de015d9":{"componentFields":{}},"60039b18-5d94-45b7-bd03-b7008213f906":{"componentFields":{}},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"componentFields":{}},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"componentFields":{}},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"componentFields":{}},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"componentFields":{}},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"componentFields":{}},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"componentFields":{}},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"componentFields":{}},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"componentFields":{}},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"componentFields":{}},"9fa041da-f429-4a24-8579-46c57a985b33":{"componentFields":{}},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"componentFields":{}},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"componentFields":{}},"17315fb1-7be4-4492-a196-c1abb2817309":{"componentFields":{}},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"componentFields":{}},"f67f8f07-eac7-470e-99f5-213f121b5655":{"componentFields":{}},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"componentFields":{}},"db646d31-6817-4184-87df-c5496c9da6b9":{"componentFields":{}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{},"b976560c-3122-4351-878f-453f337b7245":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"componentFields":{}},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"componentFields":{}},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"componentFields":{}},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetName":"31aadcb0-9add-42cb-9b21-72f41e91389b","componentFields":{}},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetName":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","componentFields":{}},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"componentFields":{}},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"componentFields":{}},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"componentFields":{}},"596a6688-3ad7-46f7-bb9c-00023225876d":{"componentFields":{}}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetName":"member_info","componentFields":{}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetName":"my_wallet","componentFields":{}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"04462ba4-2137-41bd-9460-0814554aae07":{"widgetName":"04462ba4-2137-41bd-9460-0814554aae07","componentFields":{}},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetName":"settings","componentFields":{}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetName":"notifications_app","componentFields":{}},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetName":"6ca9273a-a775-407c-87e1-9685588c9aa7","componentFields":{}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetName":"about","componentFields":{}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetName":"profile","componentFields":{}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"componentFields":{}},"169204d8-21be-4b45-b263-a997d31723dc":{"componentFields":{}},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetName":"Booking Service Page","componentFields":{}},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetName":"3c675d25-41c7-437e-b13d-d0f99328e347","componentFields":{}},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetName":"bookings_member_area","componentFields":{}},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetName":"e86ab26e-a14f-46d1-9d74-7243b686923b","componentFields":{}},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetName":"bookings_list","componentFields":{}},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetName":"service_list_widget","componentFields":{}},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetName":"0eadb76d-b167-4f19-88d1-496a8207e92b","componentFields":{}},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetName":"bookings_timetable_daily","componentFields":{}},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetName":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","componentFields":{}},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetName":"2f22f475-3ed1-41fd-90b7-221e92134f3c","componentFields":{}},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"componentFields":{}},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetName":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","componentFields":{}},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetName":"widget","componentFields":{}},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetName":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","componentFields":{}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetName":"wix_visitors","componentFields":{}}},"dataBinding":{}},"essentials":{"appsConductedExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"bookings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"true","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}}},"forceEmptySdks":false,"appDefIdToIsMigratedToGetPlatformApi":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":false,"675bbcef-18d8-41f5-800e-131ec9e08762":false,"1380b703-ce81-ff05-f115-39571d94dfcd":false,"27fcc256-f3f8-47df-a66a-8f8176cc7f99":false,"a5dd7ce8-07c2-4251-8d58-9657c1a43163":false,"225dd912-7dea-4738-8688-4b8c6955ffc2":false,"14271d6f-ba62-d045-549b-ab972ae1f70e":false,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":false,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":false,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":false,"215238eb-22a5-4c36-9e7b-e7c08025e04e":false,"47e245ca-1a42-4d6a-a69a-c125bc839b40":false,"df892fe9-626f-44c9-a328-e29f93880b38":false,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":false,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":false,"b976560c-3122-4351-878f-453f337b7245":false,"14cffd81-5215-0a7f-22f8-074b0e2401fb":false,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":false,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":false,"14f25924-5664-31b2-9568-f9c5ed98c9b1":false,"14dbef06-cc42-5583-32a7-3abd44da4908":false,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":false,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":false,"14517e1a-3ff0-af98-408e-2bd6953c36a2":false,"dataBinding":false}},"appsScripts":{"urls":{},"scope":"page"},"debug":{"disablePlatform":false,"disableSnapshots":false,"enableSnapshots":false},"isBuilderComponentModel":false}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"experiments":{"specs.thunderbolt.DisableSentry":true,"specs.thunderbolt.cmsDprNamedQueryParam":true,"specs.thunderbolt.viewport_hydration_extended_react_18":true,"specs.thunderbolt.inMemoryPaypalAuthToken":true,"specs.thunderbolt.roundBordersInResponsiveContainer":true,"specs.thunderbolt.PanoramaErrorMonitor":true,"specs.thunderbolt.userAsFactory":true,"specs.thunderbolt.getMemberDetailsFromMembersNg":true,"specs.thunderbolt.UseEEImpress":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.promote.ar.reportRestPurchaseEventsInsteadOfKafka":true,"specs.thunderbolt.sendBiInlightbox":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.fixDisabledLinkButtonStyles":true,"specs.thunderbolt.UseEcomFemBi":true,"specs.thunderbolt.browserZoomHandler":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.siteMembersMultilingualLanguage":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.shouldRunCodEmbedsCallbackOnce":true,"specs.thunderbolt.componentCustomCss":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.useERCUndependentComp":true,"shouldUseEditorElementsLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.fedops_enableSampleRateForAppNames":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.dontTruncateScrollPosition":true,"specs.thunderbolt.excludeInstanceFromQueryParams":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.useLegacyLinkUtilsInPlatform":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.fullPageNavigationSpecificSites":true,"specs.thunderbolt.ComponentsRegistryFixAnonymousDefine":true,"specs.thunderbolt.newTransitionEndHandlerLogic":true,"specs.thunderbolt.postTransitionElementFocus":true,"specs.thunderbolt.LoginSocialBarSplitStateProps":true,"specs.thunderbolt.skipDecodeUri":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.uiTypeNativeMappers":true,"specs.thunderbolt.SetNoCacheOnAppError":true,"specs.thunderbolt.bundlerTrafficToAws":true,"specs.thunderbolt.HtmlComponentPropsMapper":true,"specs.thunderbolt.fixSafariTabHeight":true,"specs.thunderbolt.UseOriginalBlocksAppInstance":true,"specs.thunderbolt.showContentReflowBanner":true,"specs.thunderbolt.removeDynamicModelTopologyFromSiteAssets":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.pageUrlRegexIgnoreSpace":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.WRichTextPropsMapper":true,"specs.thunderbolt.wixRealtimeGetAppTokenFromPlatformUtils":true,"specs.thunderbolt.newLoginFlowOnProtectedCollection":true,"specs.thunderbolt.deprecatewixperf":true,"specs.thunderbolt.shouldSendCookiesForSiteMembersSettings":true,"specs.thunderbolt.calculateHeadEmbedsInSSR":true,"specs.thunderbolt.useNewRegisterLogin":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.shouldFixIosFlashBug":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"omriTest2":true,"specs.thunderbolt.headerUseMargins":true,"specs.thunderbolt.popupCustom404":true,"specs.thunderbolt.TextInputPrefixWidthFix":true,"specs.thunderbolt.loadWebpackRuntimeInHead":true,"specs.thunderbolt.returnToPreviousPageOnProtectedPageClose":true,"specs.thunderbolt.lightboxFocusRestore":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.UseNewLoginSocialBarCustomMenuPositioning":true,"specs.thunderbolt.siteButtonKeyboardBehavior":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.os.EnableErrorHandlerInViewer":true,"specs.thunderbolt.lazySiteServicesManager":true,"shouldUseMABuilderLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.ShouldUseNewIAMSocialFlow":true,"specs.thunderbolt.lazy_load_iframe":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.useIAMEnabledConnections":true,"specs.thunderbolt.StoresCartNullOnShippingInfo":true,"specs.thunderbolt.logViewerModelDiff":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.useElementoryRelativePath":true,"specs.thunderbolt.HamburgerMenuOverflowFix":true,"specs.thunderbolt.preventGetMemberDetailsWaterfall":true,"specs.thunderbolt.linkBarNativeMapper":true,"specs.thunderbolt.outlineCss":true,"specs.thunderbolt.wrichtextListInRtl":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.addPlatformizationOptionSignUpFlow":true,"specs.thunderbolt.scrollToRetries":true,"specs.thunderbolt.addPlatformizationOptionLoginFlow":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.pageBGTransitionHandler":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.EmitSeoBodyRenderingMetadata":true,"specs.thunderbolt.shouldFetchLoginUrlByClientId":true,"specs.thunderbolt.shouldLoadGoogleSdkEarly":true,"specs.promote.ar.useFacebookSetupV1Service":true,"specs.thunderbolt.loadNewerSentrySdk":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.shouldUseMemberPrivacySettingsService":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.membersArea.LoginBarRemake":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.alwaysApplySessionTokenOnIAM":true,"specs.thunderbolt.sendFedopsLoadStartedReplaced":true,"specs.thunderbolt.SlideshowStopMediaInNonActiveSlides":true,"specs.thunderbolt.removeDynamicModelTopology":true,"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.routerDynamicPageOverride":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.biForBrowserZoom":true,"specs.thunderbolt.paidPlansSdkUseV2Orders":true,"specs.thunderbolt.shouldValidateRedirectUrl":true,"specs.thunderbolt.StoresCartZeroOnShippingAndTax":true,"specs.thunderbolt.cmsStandalone":true,"specs.thunderbolt.enableSignUpPrivacyNoteType":true,"specs.thunderbolt.vectorImageDecorativeClickElementTitle":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.veloWixMembersAmbassadorV2":true,"specs.thunderbolt.customElemCollapsedheight":true,"specs.thunderbolt.EagerSpeculationRules":true,"specs.thunderbolt.megaMenuMouseLeave":true,"specs.thunderbolt.useUrlFromBrowserWindowInsteadOfViewerModel":true,"specs.thunderbolt.fixMpaWorkerBi":true,"specs.thunderbolt.contextProviders":true,"specs.thunderbolt.WRichTextVerticalAlignTopSafariAndIOS":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.viewportOnBPChange":true,"specs.thunderbolt.vsmViewerModel":true,"specs.thunderbolt.resolveDocumentLink":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.UseWixDataItemService":true,"specs.thunderbolt.VerticalMenu_uiType_NativeMapper":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.splitLinkUtils":true,"specs.thunderbolt.recoverAnchorsOnClientRender":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.useNewBuilderSdkApi":true,"specs.thunderbolt.migrateStylableMenuUiTypeMapper":true,"specs.thunderbolt.UseCloudDataUrlWithBaseExternalUrl":true,"specs.thunderbolt.skipMasterPageComponentManifestCss":true,"specs.thunderbolt.dontCleanLightboxState":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.promote.ar.reportEcomPlatformPurchaseEvents":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.useIAMPlatform":true,"specs.thunderbolt.filterRobotsForConvertedDynamicPages":true,"specs.thunderbolt.veloBundlerParastorageUrl":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.fixSectionAnchorUrlHash":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.AddRegisterEventListenerToWixWindow":true,"specs.thunderbolt.fetchSVGfromNetworkInCSR":true,"specs.thunderbolt.runMappersWithSpecificDeps":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.LottieUseCanvasForIOSDevices":true,"specs.ident.usePlatformizedSMAuth":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.shouldSearchForRouterPrefix":true,"specs.thunderbolt.carouselGalleryImageFitting":true,"specs.thunderbolt.deduplicateSvgFetches":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.scrollToAnchorSsr":true,"specs.thunderbolt.pricingPlansUserOrdersV2":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.loginSocialBarEnableUrlChangeListeners":true,"specs.thunderbolt.pageTransitionScrollSmoothly":true,"specs.thunderbolt.buttonUdp_loggedIn":true,"specs.thunderbolt.preventAnchorReloadBeforeHydration":true,"specs.thunderbolt.InitPlatformApiProvider":true,"specs.thunderbolt.magnifyKeyboardOperability":true,"specs.thunderbolt.shouldMapFullContactInfoToIdentityProfile":true,"specs.thunderbolt.isClassNameToRootEnabledNext":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.render_dom_store_before_site":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.imageEncodingAVIF":true,"displayWixAdsNewVersion":true,"specs.thunderbolt.BundlerTypescriptListExportedFunctions":true,"specs.thunderbolt.smModalsShouldWaitForAppDidMount":true,"specs.thunderbolt.autoScrollingOnIphoneMPA":true,"specs.thunderbolt.ooi_css_optimization":true,"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.fixGapBelowTextboxonMobileSite":true,"specs.thunderbolt.useBuilderComponentTypeInBi":true,"specs.odeditor.socialPlayerChangeSource":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.overrideFloatInDistance":true,"specs.thunderbolt.editorElementsRegistryEnsureComponentLoaderFix":true,"specs.thunderbolt.moveFedopsLoadStartToBody":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.deduplicateFAQPageStructuredData":true,"specs.thunderbolt.shouldFetchLogoutUrlByClientId":true,"specs.thunderbolt.newIsScrollBlockedCondition":true,"specs.thunderbolt.routerFetchExtendedUrlLength":true,"specs.thunderbolt.retainInternalQueryParams":true,"specs.thunderbolt.convertBirthdateToISOString":true,"specs.thunderbolt.textMaskFontFallbacks":true,"specs.thunderbolt.dynamicPageServiceManager":true,"specs.thunderbolt.getAppTokenForCustomElement":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.previewRegion":true,"specs.thunderbolt.HeaderSectionAddVisibilityTransition":true,"specs.promote.ar.reportScheduleEventsOnPurchaseIfNeeded":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.newAuthorizedPagesFlow":true,"specs.thunderbolt.viewerWithoutWixDynamicCustomElements":true,"specs.thunderbolt.newControllersModel":true,"specs.thunderbolt.textScaleAdjust":true,"specs.thunderbolt.Panorama":true,"specs.thunderbolt.fetchCurrentMemberFromMembersNg":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.logoutOnIAM":true,"specs.thunderbolt.resolveElementPropsSlotRefs":true,"slideshowSlideLtrDirection":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.suspenseInSlots":true,"specs.thunderbolt.useNewTelemetryAPI":true,"specs.thunderbolt.UseNewLoginBarColorWiringOnE3":true},"formFactor":"desktop","isMobileDevice":false,"viewMode":"desktop","requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"Rollout","code":1},"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","interactionSampleRatio":0.01,"isPartialRouteMatching":false,"siteAssetsTestModuleVersion":"1.334.0","useLocalPiler":false,"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"deviceInfo":{"deviceClass":"Desktop"},"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"0025592c-9487-40e4-b216-c53e00f1c467","isSEO":false,"appNameForBiEvents":"wix-studio"},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"language":{"userLanguage":"fr","userLanguageResolutionMethod":"QueryParam","siteLanguage":"fr","isMultilingualEnabled":true,"directionByLanguage":"ltr"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":true},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"anywhereConfig":{},"pilerExperiments":{"specs.piler.useEditorReactComponents":true},"rendererType":null,"siteAssets":{"dataFixersParams":{"experiments":{"dm_migrateOldHoverBoxToNewFixer":true,"dm_masterPageVariablesQueryFixer":true,"dm_bgScrubToMotionFixer":true},"dfVersion":"1.5507.0","isHttps":true,"isUrlMigrated":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","quickActionsMenuEnabled":false,"siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","siteRevision":4,"v":3,"cacheVersions":{"dataFixer":6}},"modulesParams":{"features":{"moduleName":"thunderbolt-features","contentType":"application\/json","resourceType":"features","languageResolutionMethod":"QueryParam","isMultilingualEnabled":true,"externalBaseUrl":"https:\/\/www.leshabitationssf.com","useSandboxInHTMLComp":false,"disableStaticPagesUrlHierarchy":false,"aboveTheFoldSectionsNum":null,"isTrackClicksAnalyticsEnabled":false,"isSocialElementsBlocked":false,"builderAppVersions":"","onlyInteractions":false},"platform":{"moduleName":"thunderbolt-platform","contentType":"application\/json","resourceType":"platform","externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/"},"css":{"moduleName":"thunderbolt-css","contentType":"application\/json","resourceType":"css","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"cssMappers":{"moduleName":"thunderbolt-css-mappers","contentType":"application\/json","resourceType":"cssMappers","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"siteMap":{"moduleName":"thunderbolt-site-map","contentType":"application\/json","resourceType":"siteMap","isDeployPreview":false},"mobileAppBuilder":{"moduleName":"thunderbolt-mobile-app-builder","resourceType":"mobileAppBuilder","contentType":"application\/json"},"builderComponentFeatures":{"moduleName":"builder-component-features","resourceType":"builderComponentFeatures","contentType":"application\/json"},"builderComponentCss":{"moduleName":"builder-component-css","resourceType":"builderComponentCss","contentType":"application\/json"},"builderComponentPlatform":{"moduleName":"builder-component-platform","resourceType":"builderComponentPlatform","contentType":"application\/json"},"componentManifestCss":{"moduleName":"component-manifest-css","resourceType":"componentManifestCss","contentType":"application\/json","builderAppVersions":""},"pilerSiteAssets":{"moduleName":"piler-siteassets","resourceType":"pilerSiteAssets","contentType":"application\/json","buildFullApp":"true","keepWidgetBuild":"false","modulesToHashes":"{\"thunderbolt-platform\":\"d5e7103e.bundle.min\",\"thunderbolt-css\":\"e5704498.bundle.min\",\"thunderbolt-site-map\":\"3169e028.bundle.min\",\"thunderbolt-mobile-app-builder\":\"a1b4126d.bundle.min\",\"builder-component-features\":\"48a1316f.bundle.min\",\"builder-component-css\":\"b3651fdb.bundle.min\",\"builder-component-platform\":\"df992019.bundle.min\",\"component-manifest-css\":\"e1431b1d.bundle.min\",\"thunderbolt-css-mappers\":\"fb2a75b6.bundle.min\",\"thunderbolt-services-configs\":\"af60292e.bundle.min\",\"thunderbolt-features\":\"b091b1da.bundle.min\"}","nonBeckyModuleVersions":"{\"remote-widget-structure-builder\":\"1.251.0\",\"blocks-app-descriptor\":\"1.118.0\"}"}},"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"},"siteScopeParams":{"rendererType":null,"wixCodePageIds":["ebqqm","ycxvu","wdvyd"],"hasTPAWorkerOnSite":false,"formFactor":"desktop","viewMode":"desktop","freemiumBanner":false,"coBrandingBanner":false,"dayfulBanner":false,"mobileActionsMenu":false,"isWixSite":false,"isResponsive":true,"editorName":"Studio","urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"pageJsonFileNames":{"nd5z8":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658.json","xbscd":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658.json","ir3c1":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658.json","tbw7n":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658.json","x1rjp":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658.json","fcpv5":"5ae170_bfa3a744011b18064588457b988e1a12_658.json","digmz":"5ae170_8753b09b9c3e820a689be83f44036cce_658.json","c1dmp":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658.json","ebqqm":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658.json","og9af":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658.json","ee5l4":"5ae170_797441264f67257d2b398b280f9566f8_658.json","p8nxp":"5ae170_0e06c7b14722b1df76d73a702836cd87_658.json","ycxvu":"5ae170_6ef9978913518d22e3ff9884b42e9766_658.json","mwate":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658.json","zoy0o":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658.json","tjnio":"5ae170_b758cd293bd2e09407018e3925e51e65_658.json","lbsg6":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658.json","o2kzs":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658.json","wdvyd":"5ae170_b86b7b332566ae1077a701be4c21b168_658.json","quqwi":"5ae170_adf9bd4deafc8141e4494d55c958864f_658.json","jlcw6":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658.json","ua72s":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658.json","yg0c4":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658.json","xsdnd":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658.json","msjef":"5ae170_a275d88f982fef975679f7c85059c3df_658.json","masterPage":"5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json"},"protectedPageIds":["dkrww"],"routersInfo":{"configMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"isPremiumDomain":true,"disableSiteAssetsCache":false,"migratingToOoiWidgetIds":"","siteRevisionConfig":{"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53"},"registryLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"isInSeo":false,"language":"fr","originalLanguage":"fr","appDefinitionIdToSiteRevision":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":"45","a5dd7ce8-07c2-4251-8d58-9657c1a43163":"219","14271d6f-ba62-d045-549b-ab972ae1f70e":"25","14bcded7-0066-7c35-14d7-466cb3f09103":"1335","7479d596-137c-4fa3-89cd-d7091042ba61":"132","75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":"305","a0c68605-c2e7-4c8d-9ea1-767f9770e087":"6855","b976560c-3122-4351-878f-453f337b7245":"1358","13d21c63-b5ec-5912-8397-c3a5ddb27a97":"440"},"isClientSdkOnSite":true,"appDefinitionIdsWithCustomCss":["a0c68605-c2e7-4c8d-9ea1-767f9770e087"],"isBuilderComponentModel":false,"hasUserDomainMedia":false,"userDomainMediaPrefixes":[],"useViewerAssetsProxy":false},"beckyExperiments":{"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.thunderbolt.imageEncodingAVIF":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.addIdAsClassName":true},"manifests":{"node":{"modulesToHashes":{"thunderbolt-platform":"d5e7103e.bundle.min","thunderbolt-css":"e5704498.bundle.min","thunderbolt-site-map":"3169e028.bundle.min","thunderbolt-mobile-app-builder":"a1b4126d.bundle.min","builder-component-features":"48a1316f.bundle.min","builder-component-css":"b3651fdb.bundle.min","builder-component-platform":"df992019.bundle.min","component-manifest-css":"e1431b1d.bundle.min","thunderbolt-css-mappers":"fb2a75b6.bundle.min","thunderbolt-services-configs":"af60292e.bundle.min","thunderbolt-features":"b091b1da.bundle.min"}},"web":{"modulesToHashes":{"builder-component-css":"0fa0bcbb.bundle.min","builder-component-platform":"01f84dc2.bundle.min","component-manifest-css":"18678f5d.bundle.min","thunderbolt-css-mappers":"64044630.bundle.min","thunderbolt-services-configs":"e5985f3a.bundle.min","webpack-runtime":"e9817151.bundle.min","thunderbolt-features":"3e7ca334.bundle.min","thunderbolt-platform":"75f0118a.bundle.min","thunderbolt-css":"4cc2beef.bundle.min","thunderbolt-site-map":"e2f383ea.bundle.min","thunderbolt-mobile-app-builder":"3f3cb31c.bundle.min","builder-component-features":"5fbe9976.bundle.min"},"webpackRuntimeBundle":"e9817151.bundle.min"},"webWorker":{"modulesToHashes":{"thunderbolt-features":"d4f44108.bundle.min","thunderbolt-platform":"3935fea7.bundle.min","thunderbolt-css":"727de52d.bundle.min","thunderbolt-site-map":"b757e573.bundle.min","thunderbolt-mobile-app-builder":"dd2d9c73.bundle.min","builder-component-features":"5bc8aedf.bundle.min","builder-component-css":"60103e60.bundle.min","builder-component-platform":"36e35f0f.bundle.min","component-manifest-css":"7711e6f9.bundle.min","thunderbolt-css-mappers":"6566f02e.bundle.min","thunderbolt-services-configs":"49fc45d7.bundle.min"}}},"siteAssetsVersions":{"viewer-assets-generator":"1.0.0","santa-data-fixer":"1.5507.0","@wix\/santa-main-r":"1.1643.0","santa-main-r":"1.1643.0","@wix\/blocks-app-descriptor":"1.118.0","simple-all-pages":"1.0.0","blocks-builder-manifest-generator":"1.151.0","@wix\/santa-data-fixer":"1.5507.0","remote-widget-structure-builder":"1.251.0","remote-widget-metadata":"1.2593.0","santa-site-metadata":"1.3427.0","piler-siteassets":"1.937.0","stylable-santa-flatten":"2.0.222","@wix\/piler-siteassets":"1.937.0"},"staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/","remoteWidgetStructureBuilderVersion":"1.251.0","blocksBuilderManifestGeneratorVersion":"1.129.0"},"react18Compatible":true,"react18HydrationBlackListWidgets":["14756c3d-f10a-45fc-4df1-808f22aabe80"],"mpaBlacklistWidgets":[],"excludeCompsForSSRList":[""],"mpaNavigationCompatible":true,"mpaIncompatibleWidgetsList":[],"mpaExclusionReasons":[],"siteCacheable":true,"isolatedRenderer":true,"siteOwnerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","hasInteractions":false,"componentsExternalVersions":{}}</script> | |
| 2512 | +<script>window.viewerModel = JSON.parse(document.getElementById('wix-viewer-model').textContent)</script> | |
| 2513 | +<!-- renderIndicator --> | |
| 2514 | + | |
| 2515 | + | |
| 2516 | +<!-- versionIndicator --> | |
| 2517 | + | |
| 2518 | + | |
| 2519 | +<!-- used platform apis start --> | |
| 2520 | +<script type="application/json" id="used-platform-apis-data">["location","window","site","seo","user"]</script> | |
| 2521 | +<script>window.usedPlatformApis = JSON.parse(document.getElementById('used-platform-apis-data').textContent)</script> | |
| 2522 | +<!-- used platform apis end --> | |
| 2523 | + | |
| 2524 | +<!-- Business Manager --> | |
| 2525 | + | |
| 2526 | +<!-- initCustomElements #2 --> | |
| 2527 | + | |
| 2528 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6747"],{99090(e,t,o){o.d(t,{O:()=>c});let c=(e,t="")=>t.toLowerCase().includes("forcereducedmotion")||!!e?.matchMedia("(prefers-reduced-motion: reduce)").matches}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=19787)}),e.O()}]); | |
| 2529 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js.map</script> | |
| 2530 | + | |
| 2531 | +<!-- react --> | |
| 2532 | +<script crossorigin="" src="https://static.parastorage.com/unpkg/react@18.3.1/umd/react.production.min.js" onload="resolveExternalsRegistryModule('react')"></script> | |
| 2533 | +<!-- react-dom --> | |
| 2534 | +<script crossorigin="" defer="" src="https://static.parastorage.com/unpkg/react-dom@18.3.1/umd/react-dom.production.min.js" onload="resolveExternalsRegistryModule('reactDOM')"></script> | |
| 2535 | +<!-- lodash script --> | |
| 2536 | +<script async="" src="https://static.parastorage.com/unpkg/lodash@4.17.23/lodash.min.js" onload="resolveExternalsRegistryModule('lodash')"></script> | |
| 2537 | +<!-- initial scripts --> | |
| 2538 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/thunderbolt-commons.ecf937b1.bundle.min.js"></script> | |
| 2539 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6008"],{68703(e,t,r){r.d(t,{L:()=>i});var a=r(8716),o=r(26778),n=r(49254);let i=(0,a.Og)([],()=>({definition:o.F,impl:n.J,config:{},platformConfig:{}}))},89973(e,t,r){r.d(t,{h:()=>i});var a=r(65672),o=r(48869);let n=({useBatch:e=!0,publishMethod:t=a.PublishMethods.Auto,endpoint:r,muteBi:o=!1,biStore:n,sessionManager:i,fetch:s,factory:d})=>d({useBatch:e,publishMethod:t,endpoint:r}).setMuted(o).withUoUContext({msid:n.msid}).withNonEssentialContext({visitorId:()=>i.getVisitorId(),siteMemberId:()=>i.getSiteMemberId()}).updateDefaults({vsi:n.viewerSessionId,_av:`thunderbolt-${n.viewerVersion}`,isb:n.is_headless,...n.is_headless&&{isbr:n.is_headless_reason}}),i={createBaseBiLoggerFactory:n,createBiLoggerFactoryForFedops:e=>{let{biStore:{session_id:t,initialTimestamp:r,initialRequestTimestamp:a,dc:i,microPop:s,is_headless:d,isCached:p,pageData:l,rolloutData:u,caching:c,checkVisibility:f=()=>"",viewerVersion:m,requestUrl:I,st:h,isSuccessfulSSR:A,mpaSessionId:_,siteOwnerId:E,uuid:S},muteBi:g=!1}=e;return n({...e,muteBi:g}).updateDefaults({ts:()=>Date.now()-r,tsn:()=>(function({initialRequestTimestamp:e,adjustForPrerender:t=!1}){if("undefined"==typeof window)return Math.round(performance.now()+(performance.timeOrigin-e));let r=t?(0,o.b)():0;return Math.round(performance.now()-r)})({initialRequestTimestamp:a,adjustForPrerender:!0}),dc:i,microPop:s,caching:c,session_id:t,st:h,url:I||l.pageUrl,ish:d,pn:l.pageNumber,isFirstNavigation:1===l.pageNumber,pv:f,pageId:l.pageId,isServerSide:!1,isSuccessfulSSR:A,is_lightbox:l.isLightbox,is_cached:p,is_sav_rollout:+!!u.siteAssetsVersionsRollout,is_dac_rollout:+!!u.isDACRollout,v:m,mpaSessionId:_,siteOwnerId:E,uuid:S,..."undefined"!=typeof document&&document.referrer&&{document_referrer:document.referrer},..."undefined"!=typeof navigator&&navigator.language&&{browserLanguage:navigator.language}})}}},48869(e,t,r){r.d(t,{b:()=>a});let a=()=>{let e=(()=>{if("undefined"==typeof performance||"function"!=typeof performance.getEntriesByType)return;let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e})();return e?.activationStart??0}},35499(e,t,r){r.d(t,{W:()=>p});var a=r(41394),o=r(41789),n=r(683),i=r(4291),s=r(6355),d=r(76526);let p=({biLoggerFactory:e,customParams:t={},phasesConfig:r="SEND_ON_FINISH",appName:p="thunderbolt",presetType:l=a.u.BOLT,reportBlackbox:u=!1,paramsOverrides:c={},factory:f,muteThunderboltEvents:m=!1,experiments:I={},monitoringData:h})=>{let A,_,E,S,g,N,R,b,v=f(p,{presetType:l,phasesConfig:r,isPersistent:!0,isServerSide:!1,reportBlackbox:u,customParams:t,biLoggerFactory:e,paramsOverrides:c,enableSampleRateForAppNames:(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames")??("undefined"!=typeof window&&(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames"))}),{interactionStarted:O,interactionEnded:w,appLoadingPhaseStart:T,appLoadingPhaseFinish:y,appLoadStarted:V,appLoaded:D}=v,C=(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedopsMuteErrors"),L=(0,d.isExperimentOpen)(I,"specs.thunderbolt.panoramaInSsr"),F="undefined"==typeof window,B=e=>e?.evid&&26===parseInt(e.evid,10),P=(A=(0,s.n)(),h?.viewerSessionId&&A.setSessionId(h.viewerSessionId),_=h?.metaSiteId??"",E=h?.dc??"",S=!!h?.isHeadless,g=!!h?.isCached,N=!!h?.rolloutData?.isTBRollout,R=!!h?.rolloutData?.isDACRollout,b=!!h?.rolloutData?.siteAssetsVersionsRollout,(0,n.V)({baseParams:{platform:i.OD.Viewer,msid:_,fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",artifactVersion:h?.artifactVersion,componentId:p},pluginParams:{useBatch:!0},data:{dataCenter:E,isHeadless:S,isCached:g,isRollout:N,isDacRollout:R,isSavRollout:b,isSsr:!1,presetType:l,customParams:t},reporterOptions:F?{fetchFn:fetch}:{}}).withGlobalConfig(A).client()),G=e=>{P&&(L||!F)&&(e?P.reportLoadStart():P.reportLoadFinish())},x=(e,t,r)=>{if(!P)return;let a=e.replaceAll(" ","_");t?P.transaction(a).start(r):P.transaction(a).finish(r)},M=(e,t,r,n)=>{if(o.iy.has(p))return!0;if(((e,t,r)=>{let n;return B(r)?C:(n=r?.siteAssetsModule??"",!(l!==a.u.BOLT||o.EQ.has(e)||t&&["thunderbolt-css","thunderbolt-features","thunderbolt-platform"].includes(n)))})(e,t,n))return!1;if(n?.siteAssetsModule)return!0;let i=!!r?.appId&&!o.S_.has(r.appId),s=o.S2.has(e),d=o.wV.has(e);return s||i||!d&&!m};return v.interactionStarted=(e,t)=>{if(B(t?.paramsOverrides)?((e={})=>{if(!P)return;let{errorInfo:t,errorType:r}=e,a=Error(t);P?.errorMonitor().reportError(a,{errorName:r,environment:"Viewer"})})(t?.paramsOverrides):(L||e.startsWith("platform_")||!F)&&x(e,!0),M(e,!0,void 0,t?.paramsOverrides))return O.call(v,e,t);try{performance.mark(`${e} started`)}catch(e){}return{timeoutId:0}},v.interactionEnded=(e,t)=>{if((L||e.startsWith("platform_")||!F)&&x(e,!1),M(e,!0,void 0,t?.paramsOverrides))w.call(v,e,t);else try{performance.mark(`${e} ended`)}catch(e){}},v.appLoadingPhaseStart=(e,t)=>{if(x(e,!0,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))T.call(v,e,t);else try{performance.mark(`${e} started`)}catch(e){}},v.appLoadingPhaseFinish=(e,t,r)=>{if(x(e,!1,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))y.call(v,e,t,r);else try{performance.mark(`${e} finished`)}catch(e){}},v.appLoadStarted=e=>{G(!0),V.call(v,e)},v.appLoaded=e=>{G(!1),D.call(v,e)},v}},81855(e,t,r){r.d(t,{c:()=>a});let a=e=>{let t="thunderbolt-commons";return{reportAsyncWithCustomKey:(r,a,o)=>e.reportAsyncWithCustomKey(r,t,a,o),runAsyncAndReport:(r,a)=>e.runAsyncAndReport(r,t,a),runAndReport:(r,a)=>e.runAndReport(r,t,a),reportError:r=>{e.captureError(r,{tags:{feature:t,clientMetricsReporterError:!0}})},meter:(t,r)=>{e.meter(t,r)},histogram:(e,t)=>{}}}},27256(e,t,r){r.r(t),r.d(t,{createBiReporter:()=>i,site:()=>s});var a=r(73388),o=r(60990);let n=(...e)=>console.log("[TB] ",...e);function i(e=n,t=n,r=()=>{},a=n,o=n){return{reportBI:e,sendBeat:t,setDynamicSessionData:r,reportPageNavigation:a,reportPageNavigationDone:o}}let s=({biReporter:e,wixBiSession:t,viewerModel:r})=>n=>{n(a.O$).toConstantValue(t),n(a.u6).toConstantValue(e),n(a.lR).toConstantValue((0,o.f)(r))}},94756(e,t,r){r.d(t,{lF:()=>n,mY:()=>s,w4:()=>i});var a,o,n=((a={})[a.START=1]="START",a[a.VISIBLE=2]="VISIBLE",a[a.PARTIALLY_VISIBLE=12]="PARTIALLY_VISIBLE",a[a.PAGE_FINISH=33]="PAGE_FINISH",a[a.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",a[a.TBD=-1]="TBD",a[a.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",a[a.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE",a),i=((o={})[o.NAVIGATION=1]="NAVIGATION",o[o.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",o[o.INNER_ROUTE=3]="INNER_ROUTE",o[o.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",o[o.CANCELED=5]="CANCELED",o);let s={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}},73388(e,t,r){r.d(t,{O$:()=>o,lR:()=>n,u6:()=>a});let a=Symbol.for("BI"),o=Symbol.for("WixBiSessionSymbol"),n=Symbol.for("appName")}}]); | |
| 2540 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js.map</script> | |
| 2541 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.df68986c.bundle.min.js"></script> | |
| 2542 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.99fa8096.bundle.min.js"></script> | |
| 2543 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["8426"],{7146(e,r,t){t.r(r),t.d(r,{platformWorkerPromise:()=>m});let s=window.viewerModel,a=s?.siteFeatures||[],o=s?.siteFeaturesConfigs?.platform,p=s?.siteAssets?.clientTopology,l=s?.site?.externalBaseUrl,i=window.usedPlatformApis,n="undefined"!=typeof Worker&&a.includes("platform")&&!!o,c=async()=>{let e;if(!o?.clientWorkerUrl||!o?.appsScripts||!o?.bootstrapData)return void console.warn("[create-worker] Platform config incomplete (missing clientWorkerUrl, appsScripts, or bootstrapData), skipping worker creation");let r="platform_create-worker started";performance.mark(r);let{clientWorkerUrl:t,appsScripts:s,bootstrapData:a,sdksStaticPaths:n}=o,{appsSpecData:c={},appDefIdToIsMigratedToGetPlatformApi:m={},forceEmptySdks:d}=a||{},f=new Worker(t.startsWith("http://localhost:")||document.baseURI!==location.href?(e=new Blob([`importScripts('${t}');`],{type:"application/javascript"}),URL.createObjectURL(e)):t.replace(p?.fileRepoUrl||"",`${l}/_partials`)),k=s?.urls||{},u=Object.keys(k).filter(e=>!c[e]?.isModuleFederated).reduce((e,r)=>(e[r]=k[r],e),{});n&&n.mainSdks&&n.nonMainSdks&&(Object.values(m).every(e=>e)||d?f.postMessage({type:"preloadNamespaces",namespaces:i}):f.postMessage({type:"preloadAllNamespaces",sdksStaticPaths:n})),f.postMessage({type:"platformScriptsToPreload",appScriptsUrls:u});let w="platform_create-worker ended";return performance.mark(w),performance.measure("Create Platform Web Worker",r,w),f},m=n?c():Promise.resolve()}},function(e){e(e.s=7146)}]); | |
| 2544 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js.map</script> | |
| 2545 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1625"],{97534(){var e;let n,a,t;e=window,n=new Set,a=[],t=e=>{let a=[];n.forEach(n=>{e.canHandleEvent(n)&&a.push(n)}),a.forEach(a=>{n.delete(a),e.handleEvent(a)})},e.addEventListener("message",e=>{let d={source:e.source,data:e.data,origin:e.origin},s=a.find(e=>e.canHandleEvent(d));s?(t(s),s.handleEvent(d)):n.add(d)}),e._addWindowMessageHandler=e=>{a.push(e),t(e)}}},function(e){e(e.s=97534)}]); | |
| 2546 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js.map</script> | |
| 2547 | + | |
| 2548 | +<!-- scriptTagsToPreload --> | |
| 2549 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2550 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2551 | +<link href="https://static.parastorage.com/services/pro-gallery-tpa/1.1531.0/WixProGalleryViewerWidget.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2552 | +<link href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2553 | + | |
| 2554 | + | |
| 2555 | + <!-- Old Browsers Deprecation --> | |
| 2556 | + <script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.bundle.es5.js"></script> | |
| 2557 | + | |
| 2558 | + | |
| 2559 | +<!-- bi --> | |
| 2560 | +<script> | |
| 2561 | + window.clientSideRender = false; | |
| 2562 | +</script> | |
| 2563 | +<!-- bi --> | |
| 2564 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["9114"],{80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>u});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},u=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:u}=window,p=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:p,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:u?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=u,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),u.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=80974)}),e.O()}]); | |
| 2565 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js.map</script> | |
| 2566 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1698"],{40250(e,i,n){var r=n(94756);n(80974).K.sendBeat(r.lF.PARTIALLY_VISIBLE,"Partially visible",{pageId:window.firstPageId})},80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>p});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},p=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:p}=window,u=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:u,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:p?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=p,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),p.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=40250)}),e.O()}]); | |
| 2567 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js.map</script> | |
| 2568 | +<script> | |
| 2569 | + window.firstPageId = 'ebqqm' | |
| 2570 | + | |
| 2571 | + if (window.requestCloseWelcomeScreen) { | |
| 2572 | + window.requestCloseWelcomeScreen() | |
| 2573 | + } | |
| 2574 | + if (!window.__browser_deprecation__) { | |
| 2575 | + window.fedops.phaseStarted('partially_visible', {paramsOverrides: { pageId: firstPageId, isSuccessfulSSR: !clientSideRender }}) | |
| 2576 | + } | |
| 2577 | +</script> | |
| 2578 | + | |
| 2579 | + <script> | |
| 2580 | + const wixAdsOffsetHeight = document.querySelector(':is(.WIX_ADS, #WIX_ADS)')?.offsetHeight || 0; | |
| 2581 | + const header = document.getElementsByTagName('header')[0]; | |
| 2582 | + | |
| 2583 | + let headerOffsetHeight = 0; | |
| 2584 | + | |
| 2585 | + if (header) { | |
| 2586 | + const headerPosition = window.getComputedStyle(header).getPropertyValue('position').toLowerCase(); | |
| 2587 | + const isHeaderStickyOrFixed = headerPosition === 'sticky' || headerPosition === 'fixed'; | |
| 2588 | + headerOffsetHeight = isHeaderStickyOrFixed ? header.offsetHeight : 0; | |
| 2589 | + } | |
| 2590 | + | |
| 2591 | + document.documentElement.style.scrollPaddingTop = `${wixAdsOffsetHeight + headerOffsetHeight}px`; | |
| 2592 | + </script> | |
| 2593 | + | |
| 2594 | + | |
| 2595 | + | |
| 2596 | + <script defer="" src="https://static.parastorage.com/services/tag-manager-client/1.1066.0/siteTags.bundle.min.js"></script> | |
| 2597 | + | |
| 2598 | + | |
| 2599 | + | |
| 2600 | + | |
| 2601 | + | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + <!--pageHtmlEmbeds.bodyEnd start--> | |
| 2607 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd start"></script> | |
| 2608 | + | |
| 2609 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd end"></script> | |
| 2610 | + <!--pageHtmlEmbeds.bodyEnd end--> | |
| 2611 | + | |
| 2612 | + | |
| 2613 | + | |
| 2614 | + | |
| 2615 | + | |
| 2616 | + | |
| 2617 | + | |
| 2618 | +<!-- warmup data start --> | |
| 2619 | +<script type="application/json" id="wix-warmup-data">{"platform":{"ssrPropsUpdates":[{"comp-m8omdber7":{"isValid":false,"options":[{"key":"0","value":"GRAND 5 1\/2 À LOUER ","text":"GRAND 5 1\/2 À LOUER "}]},"comp-m8omdbec15":{"isValid":false},"comp-m8omdbeg9":{"isValid":false},"comp-m8omdbeh9":{"isValid":false},"comp-m8omdbei9":{"isValid":false},"comp-m8omdben":{"isValid":true},"comp-m8or8zjr":{"isValid":false},"comp-m8omdbez":{"html":"<p class=\"font_8 wixui-rich-text__text\">Beau 5 ½ style condo avec entrée indépendante – St-Charles-Borromée<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Ce grand 5 ½ de style condo offre un cadre de vie lumineux, confortable et pratique.<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">642 boul. assomption ouest, Saint-Charles-Borromée<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Disponible le 1er septembre 2025 <\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">À proximité immédiate de l’hôpital, des écoles, des supermarchés et des parcs, l’emplacement est idéal pour les familles ou les professionnels.<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Vous profiterez d’une grande fenestration laissant entrer une abondance de lumière naturelle, ainsi que d’un balcon intime pour vos moments de détente.<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Caractéristiques du logement :<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • 1 stationnement extérieur déneigé<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Entrée laveuse-sécheuse dans la salle de bain<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Air climatisé mural<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Échangeur d’air<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Beaucoup d’espace de rangement<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Entrée indépendante<\/p>\n<p class=\"font_8 wixui-rich-text__text\"> • Non-fumeur<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Possibilité d'ajouter un garage à votre location<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">1600$\/mois<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Chats acceptés<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">Enquête de crédit obligatoire.<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><br class=\"wixui-rich-text__text\"><\/p>\n<p class=\"font_8 wixui-rich-text__text\">450-499-7978<\/p>\n<p class=\"font_8 wixui-rich-text__text\"><a data-auto-recognition=\"true\" href=\"mailto:info@leshabitationssf.com\" class=\"wixui-rich-text__text\">info@leshabitationssf.com<\/a><\/p>"},"comp-m8oqu8301":{"html":"<p class=\"font_8 wixui-rich-text__text\">GRAND 5 1\/2 À LOUER <\/p>"},"comp-m8omdbf39":{"html":"<p class=\"font_7 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">APPARTEMENT<\/span><\/p>"},"comp-m8omdbf68":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">3<\/span><\/p>"},"comp-m8omdbf916":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1<\/span><\/p>"},"comp-m8omdbfc10":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\"><span class=\"wixGuard\">​<\/span><\/span><\/p>"},"comp-m8omdbff":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1600<\/span><\/p>"},"comp-m8oobbzb":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">MOIS<\/span><\/p>"},"comp-m8omdbf211":{"html":"<h6 class=\"font_6 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">Disponible<\/span><\/h6>","corvid":{"hasColor":true}}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeu13":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Nous avons reçu votre demande. Nous vous contacterons sous-peu.<\/p><\/div>","ariaAttributes":{"live":"polite"}},"comp-m8omdbew":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Une erreur s'est produite. Veuillez réessayer.<\/p><\/div>","ariaAttributes":{"live":"polite"}}}],"ssrStyleUpdates":[{"comp-m8omdbf211":{"--corvid-color":"green"},"comp-m8omdbf2":{"--container-corvid-background-color":"#D1FFBD"}}],"ssrStructureUpdates":[]},"pages":{"compIdToTypeMap":{"masterPage":"MasterPage","SITE_HEADER":"HeaderContainer","PAGES_CONTAINER":"PagesContainer","SITE_FOOTER":"FooterContainer","SITE_PAGES":"PageGroup","BACKGROUND_GROUP":"BackgroundGroup","SCROLL_TO_TOP":"Anchor","SCROLL_TO_BOTTOM":"Anchor","SKIP_TO_CONTENT_BTN":"SkipToContentButton","comp-m8omcih82":"AppController","comp-m8oopad5":"AppController","comp-mfl8zvjs":"AppController","comp-m8omdbez":"WRichText","comp-m8oqbc3l":"GoogleMap","comp-m8omcigd2_r_comp-kd5pdf7t":"WRichText","comp-m8omcih716_r_comp-kd5px9kk":"ExpandableMenu","comp-m8omcih716_r_comp-kkmqi5tc":"VectorImage","comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID":"AppController","comp-m8oqu82u":"WRichText","comp-m8oqu82z":"WRichText","comp-m8oqu8301":"WRichText","comp-m8omdbf39":"WRichText","comp-m8omcigd2_r_comp-m2y12dql":"WRichText","comp-m8omdbea15":"WRichText","comp-m8omdbeb13":"WRichText","comp-m8omdbec15":"TextInput","comp-m8omdbeg9":"TextInput","comp-m8omdbeh9":"TextInput","comp-m8omdbei9":"TextInput","comp-m8omdben":"TextAreaInput","comp-m8omdber7":"ComboBoxInput","comp-m8omdbeu13":"WRichText","comp-m8omdbew":"WRichText","comp-m8omdbex1":"StylableButton","comp-m8or8zjr":"ComboBoxInput","comp-m8omdbf211":"WRichText","comp-m8omdbf510":"VectorImage","comp-m8omdbf813":"VectorImage","comp-m8omcigd2_r_comp-m2y1gkmp":"WRichText","comp-m8omcigd2_r_comp-m8j7o6oq":"VectorImage","comp-m8omcigd2_r_comp-m2y10ib8":"ExpandableMenu","comp-m8omcigd2_r_comp-mbweuill":"LanguageSelector","comp-m8omcihb_r_comp-m2xz2cwh":"SiteButton","comp-m8omcihb_r_comp-m8j7mq6v":"VectorImage","comp-m8omcihb_r_comp-mdez2caz":"VerticalLine","comp-m8omcihb_r_comp-mdeylyv3":"LinkBar","comp-m8omcihb_r_comp-mdf18wki":"WRichText","comp-m8omdbf68":"WRichText","comp-m8omdbf711":"WRichText","comp-m8omdbf916":"WRichText","comp-m8omdbfa13":"WRichText","comp-m8omdbfc10":"WRichText","comp-m8omdbfd11":"WRichText","comp-m8omdbff":"WRichText","comp-m8ooawu0":"WRichText","comp-m8omdbfg7":"WRichText","comp-m8oobbzb":"WRichText","comp-m8omcihb_r_comp-lxu2mi38":"HamburgerOpenButton","comp-m8omcihb_r_comp-lxu2mi3i1":"HamburgerCloseButton","comp-m8omcihb_r_comp-m5rceatr":"SiteButton","comp-m8omcihb_r_comp-lxubhuix":"ExpandableMenu","comp-m8omcihb_r_comp-mdezahz3":"LanguageSelector","comp-m8omcihb_r_comp-mdf0r6km":"WRichText","comp-m8omcihb_r_comp-mdf0tx18":"StylableButton","listModal_comp-m8omdber7":"ComboBoxInputListModal","listModal_comp-m8or8zjr":"ComboBoxInputListModal","portal-comp-m8omcihb_r_comp-m99166jr":"MenuContent","portal-comp-m8omcihb_r_comp-mdeyqfi8":"MenuContent","ebqqm":"Page","comp-m8omdbdn":"Section","comp-m8omcigd2":"RefComponent","comp-m8omcih716":"RefComponent","comp-m8omcihb":"RefComponent","comp-m9cxxt3r":"RefComponent","comp-m8oqdae2":"Container","comp-m8omdbdr7":"Container","comp-m8omdbdy12":"Container","comp-m8omdbey11":"Container","comp-m8omdbf0":"Container","comp-m8oqa661":"Container","comp-m8omcigd2_r_comp-kbgakgyt":"FooterSection","comp-m8omcih716_r_comp-kd5px9hr":"MenuContainer","comp-m8omcihb_r_comp-kbgajy18":"HeaderSection","comp-m9cxxt3r_r_comp-m9cxxr9c":"TPAGluedWidget","comp-m8omdbe910":"Container","comp-m8oqu82o":"Container","comp-m8omf94r":"Container","comp-m8omdbf1":"Container","comp-m8omcigd2_r_comp-m2y11976":"Container","comp-m8omcihb_r_comp-m6saac0q":"tpaWidgetNative","comp-m8omcihb_r_comp-m6saadbd":"GhostComp","comp-m8omcihb_r_comp-mdeyh2rw":"Container","comp-m8omdbea7":"Container","comp-m8omdbec6":"Container","comp-m8omf94t":"tpaWidgetNative","comp-m8omdbf2":"Container","comp-m8omdbf415":"Container","comp-m8omdbf82":"Container","comp-m8omdbfb14":"Container","comp-m8omdbfe":"Container","comp-m8omcigd2_r_comp-m2y1gxle":"Container","comp-m8omcigd2_r_comp-m8j7owsd":"Container","comp-m8omcihb_r_comp-m2xyvk9x":"Container","comp-m8omcihb_r_comp-mdeyhsow":"Container","comp-m8omdbf61":"Container","comp-m8omdbf97":"Container","comp-m8omdbfc3":"Container","comp-m8omdbfe11":"Container","comp-m8omcigd2_r_comp-m2y1awex":"tpaWidgetNative","comp-m8omcihb_r_comp-lxu2mi30":"HamburgerMenuRoot","comp-m8omcihb_r_comp-m73v5p0x":"tpaWidgetNative","comp-m8omcihb_r_comp-m99166jr":"Menu","comp-m8omcihb_r_comp-mdeyqfi8":"Menu","comp-m8omcihb_r_comp-lxu2mi3c":"HamburgerOverlay","comp-m8omcihb_r_comp-lxu2mi3d5":"HamburgerMenuContainer","comp-m8omcihb_r_comp-m5rceko6":"Container","comp-m8omcihb_r_comp-mdezy72f":"Repeater","comp-m8omcihb_r_comp-mdezy72s":"Container","comp-m8omcihb-pinned-layer":"PinnedLayer","PAGE_SECTIONSebqqm":"PageSections","comp-m8omcih716-pinned-layer":"PinnedLayer","comp-m8omcih82-pinned-layer":"PinnedLayer","comp-m8oopad5-pinned-layer":"PinnedLayer","comp-m9cxxt3r-pinned-layer":"PinnedLayer","comp-mfl8zvjs-pinned-layer":"PinnedLayer","Containerebqqm":"ResponsiveContainer","comp-m8omdbdn_relative":"ResponsiveContainer","comp-m8oqdae2_relative":"ResponsiveContainer","comp-m8omdbdr7_relative":"ResponsiveContainer","comp-m8omdbdy12_relative":"ResponsiveContainer","comp-m8omdbey11_relative":"ResponsiveContainer","comp-m8omdbf0_relative":"ResponsiveContainer","comp-m8oqa661_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-kbgakgyt_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-kbgajy18_relative":"ResponsiveContainer","comp-m8omdbe910_relative":"ResponsiveContainer","comp-m8oqu82o_relative":"ResponsiveContainer","comp-m8omf94r_relative":"ResponsiveContainer","comp-m8omdbf1_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y11976_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyh2rw_relative":"ResponsiveContainer","comp-m8omdbea7_relative":"ResponsiveContainer","comp-m8omdbec6_relative":"ResponsiveContainer","comp-m8omdbf2_relative":"ResponsiveContainer","comp-m8omdbf415_relative":"ResponsiveContainer","comp-m8omdbf82_relative":"ResponsiveContainer","comp-m8omdbfb14_relative":"ResponsiveContainer","comp-m8omdbfe_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y1gxle_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m8j7owsd_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m2xyvk9x_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyhsow_relative":"ResponsiveContainer","comp-m8omdbf61_relative":"ResponsiveContainer","comp-m8omdbf97_relative":"ResponsiveContainer","comp-m8omdbfc3_relative":"ResponsiveContainer","comp-m8omdbfe11_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m5rceko6_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdezy72s_relative":"ResponsiveContainer","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","ebqqm_grand-5-1%2F2-%C3%A0-louer-":"PageMountUnmount"}},"appsWarmupData":{"dataBinding":{"schemas":{"Location":{"displayName":"À Louer","plugins":{},"allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"id":"Location","fields":{"imageSecondaire":{"displayName":"Image Secondaire","sortable":true,"isDeleted":false,"type":"image","index":12},"nombreDeChambres":{"displayName":"Nombre de Chambre(s)","sortable":true,"isDeleted":false,"type":"text","index":14},"adresseCivique":{"displayName":"Adresse Civique","sortable":true,"isDeleted":false,"type":"text","index":8},"_id":{"displayName":"ID","sortable":true,"isDeleted":false,"type":"text","index":1},"imagePrinciple":{"displayName":"Image Principle","sortable":true,"isDeleted":false,"type":"image","index":11},"_owner":{"displayName":"Owner","sortable":true,"isDeleted":false,"type":"text","index":4},"_createdDate":{"displayName":"Created Date","sortable":true,"isDeleted":false,"type":"datetime","index":2},"imagesEtVideosDeLaProprit":{"displayName":"Images et Videos de la propriété","sortable":true,"isDeleted":false,"type":"media-gallery","index":13},"frquence":{"displayName":"Fréquence","sortable":true,"isDeleted":false,"type":"text","index":7},"link-location-title":{"displayName":"Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":5},"superficiePi2":{"displayName":"Superficie (Pi2)","sortable":true,"isDeleted":false,"type":"number","index":21},"descriptionDeLaProprit":{"displayName":"Description de la Propriété","sortable":true,"isDeleted":false,"type":"richtext","index":16},"_updatedDate":{"displayName":"Updated Date","sortable":true,"isDeleted":false,"type":"datetime","index":3},"enVedette":{"displayName":"En Vedette","sortable":true,"isDeleted":false,"type":"boolean","index":23},"nombreDeSallesDeBain":{"displayName":"Nombre de Salle(s) de bain","sortable":true,"isDeleted":false,"type":"text","index":15},"prix":{"displayName":"Prix","sortable":true,"isDeleted":false,"type":"number","index":6},"adresseComplte":{"displayName":"Adresse Complète","sortable":true,"isDeleted":false,"type":"address","index":10},"typeDimmeuble":{"displayName":"Type d'immeuble","sortable":true,"isDeleted":false,"type":"array<string>","index":18},"region":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"array<string>","index":22},"disponibilite":{"displayName":"Disponibilité","sortable":true,"isDeleted":false,"type":"boolean","index":19},"ville":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"text","index":9},"title":{"displayName":"Titre de l'annonce","sortable":true,"isDeleted":false,"type":"text","index":0},"link-copy-of-location-title":{"displayName":"Copy of Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/copy-of-location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":20},"nombreDeSallesDeBain1":{"displayName":"Nombre de Pièces","sortable":true,"isDeleted":false,"type":"text","index":17}},"displayField":"title","defaultSort":null,"pagingMode":["OFFSET","CURSOR"]},"DemandedereservationAlouer":{"id":"DemandedereservationAlouer","isDeleted":false,"namespace":null,"storage":"docstore","ownerAppId":null,"displayNamespace":null,"displayField":"prenom","allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"collectionOperations":["update","remove"],"fields":{"title":{"displayName":"Title","systemField":false,"sortable":true,"isDeleted":false,"index":0,"type":"text","plugins":{}},"_id":{"displayName":"ID","systemField":true,"sortable":true,"isDeleted":false,"index":1,"type":"text","plugins":{}},"_createdDate":{"displayName":"Created Date","systemField":true,"sortable":true,"isDeleted":false,"index":2,"type":"datetime","plugins":{}},"_updatedDate":{"displayName":"Updated Date","systemField":true,"sortable":true,"isDeleted":false,"index":3,"type":"datetime","plugins":{}},"_owner":{"displayName":"Owner","systemField":true,"sortable":true,"isDeleted":false,"index":4,"type":"text","plugins":{}},"prenom":{"displayName":"Prenom","systemField":false,"sortable":true,"isDeleted":false,"index":5,"type":"text","plugins":{}},"nomDeFamille":{"displayName":"Nom de Famille","systemField":false,"sortable":true,"isDeleted":false,"index":6,"type":"text","plugins":{}},"courriel":{"displayName":"Courriel","systemField":false,"sortable":true,"isDeleted":false,"index":7,"type":"text","plugins":{}},"message":{"displayName":"Message","systemField":false,"sortable":true,"isDeleted":false,"index":8,"type":"text","plugins":{}},"telephone":{"displayName":"Telephone","systemField":false,"sortable":true,"isDeleted":false,"index":9,"type":"text","plugins":{}},"units":{"displayName":"Units","systemField":false,"sortable":true,"isDeleted":false,"index":10,"type":"text","plugins":{}},"demandeDuClient":{"displayName":"Demande du client","systemField":false,"sortable":true,"isDeleted":false,"index":11,"type":"text","plugins":{}}},"displayName":"Demande de réservation(À louer)","permissions":{"read":"admin","insert":"anyone","remove":"admin","update":"admin"},"dataPermissions":{"itemRead":"CMS_EDITOR","itemInsert":"ANYONE","itemUpdate":"CMS_EDITOR","itemRemove":"CMS_EDITOR"},"defaultSort":null,"version":17,"plugins":{"multilingual":{"translatable":["title","prenom","nomDeFamille","courriel","message","telephone","units","demandeDuClient"]},"persistentPageLink":{"isPersisted":true,"isUpdatable":true}},"pagingMode":["OFFSET","CURSOR"],"translatable":false,"ttl":null,"capabilities":{"indexing":{"regular":3,"regular1Field":0,"compound":3,"unique":1,"total":4}},"updatedDate":"2025-06-14T15:46:48.449Z"}},"dataStore":{"recordInfosByDatasetId":{"comp-m8omcih82":{"itemIds":["f205c3fd-d554-4a78-a39c-7813a3f09838"],"datasetSize":{"total":1,"loaded":1},"collectionId":"Location"},"comp-mfl8zvjs":{"itemIds":["75c0dc6e-69fa-455c-941d-35d088470b1a"],"datasetSize":{"total":35,"loaded":1,"cursor":"IENwxRt3CSRtpgiKlz4LoFtsZ9JykN0FwCLwIL5A8v84OUyMSKt01wY3yt4\/v8jNml5LwP41F54yV457oq\/0+34xeMa1M3tSFzwn2SKuENb5Zf5uwJw13AGgwqiZEQbUFO1CJXV1AIHszGqwcNh9PMj3LTrdoZh3rRcr6JtoqSVl94kORdIWrtfjGB3slxlIjAJKissUOuBrt7W5Ji\/oxP+sp6oLY0n5+AiFZC4hR0mDitXDQ\/tEulfYKuupSlmOXFBgmKtANDm6zJh2Ve4oy2O5CIEYxcOqqr5hCRUjPZZbgW7fERas+UEDxCo7c48gfBE8ZDUYYPU32XNEGhtBB18IPTCoKD2HqJt5KAJl5DHWSqu6Oi1BLV34UyGKqxFL6HIJYjot2Y6Q8xztqkmtslTmIb7i+MSj7brPF4\/CDRU8Xa9Xn5ZDd8+NVPRVtNtucCUDxZ\/WBp4yyZ\/M\/U9NAw=="}}},"recordsByCollectionId":{"Location":{"f205c3fd-d554-4a78-a39c-7813a3f09838":{"imageSecondaire":"wix:image:\/\/v1\/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg\/IMG_7088.jpeg#originWidth=4284&originHeight=5712","nombreDeChambres":"3","adresseCivique":"642 Boul assomption ouest, Saint-Charles-Borromee","_id":"f205c3fd-d554-4a78-a39c-7813a3f09838","imagePrinciple":"wix:image:\/\/v1\/5ae170_6193ea69936446bba880dfc4f8731080~mv2.jpg\/640-Boulevard-lAssomption-SCB-2-2-1024x683.jpg#originWidth=1024&originHeight=683","_owner":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","_createdDate":{"$date":"2025-08-27T19:53:46.279Z"},"imagesEtVideosDeLaProprit":[{"description":"","fileName":"IMG_7088.jpeg","slug":"5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_67fb272f886d47d98067de2c0f161e5f~mv2.jpeg\/IMG_7088.jpeg#originWidth=4284&originHeight=5712","title":"IMG_7088.jpeg","type":"image","settings":{"width":4284,"height":5712,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7086.jpeg","slug":"5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_78b627ba3c814ddb92ef6bfb9091c5b3~mv2.jpeg\/IMG_7086.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7086.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7096.jpeg","slug":"5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_90fa4a970ffd48e2926422d17a39f112~mv2.jpeg\/IMG_7096.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7096.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7082.jpeg","slug":"5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_87175195240f4c85b404e0f9fb4c4a86~mv2.jpeg\/IMG_7082.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7082.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7084.jpeg","slug":"5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_d0f0c1dfb60f43b4b53cf7248c522798~mv2.jpeg\/IMG_7084.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7084.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7083.jpeg","slug":"5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_f8d82508042146fcb999dbbe2f6bbb66~mv2.jpeg\/IMG_7083.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7083.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7085.jpeg","slug":"5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_6af7c73ac47b49faa65efd00fa0bb031~mv2.jpeg\/IMG_7085.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7085.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7087.jpeg","slug":"5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_40f58e37dfce4d4382f7c2bcdc26a5d7~mv2.jpeg\/IMG_7087.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7087.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7090.jpeg","slug":"5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_322fbebb536842b6b7174a1048ec4fb2~mv2.jpeg\/IMG_7090.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7090.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7091.jpeg","slug":"5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_c393bea32809400aa5ee61cbaebf4bf2~mv2.jpeg\/IMG_7091.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7091.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7092.jpeg","slug":"5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_5e12aca763c24657a866bfca37b3488d~mv2.jpeg\/IMG_7092.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7092.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7094.jpeg","slug":"5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_2d830beea02249538f8f333ad5b95ea0~mv2.jpeg\/IMG_7094.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7094.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7093.jpeg","slug":"5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_6ae037647e494f5d8ab0770afe26167a~mv2.jpeg\/IMG_7093.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7093.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7095.jpeg","slug":"5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_3ab8b29eda5d472da0c0e47ceef1e759~mv2.jpeg\/IMG_7095.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7095.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7081.jpeg","slug":"5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_cb984c822b094ae68a8afdd737041f2e~mv2.jpeg\/IMG_7081.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7081.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"IMG_7097.jpeg","slug":"5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg","alt":"","src":"wix:image:\/\/v1\/5ae170_433e3892624740988fd0b5a44e38fd5a~mv2.jpeg\/IMG_7097.jpeg#originWidth=3024&originHeight=4032","title":"IMG_7097.jpeg","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}}],"frquence":"MOIS","link-location-title":"\/location\/grand-5-1%2F2-%C3%A0-louer-","descriptionDeLaProprit":"<p class=\"font_8\">Beau 5 ½ style condo avec entrée indépendante – St-Charles-Borromée<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Ce grand 5 ½ de style condo offre un cadre de vie lumineux, confortable et pratique.<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">642 boul. assomption ouest, Saint-Charles-Borromée<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Disponible le 1er septembre 2025 <\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">À proximité immédiate de l’hôpital, des écoles, des supermarchés et des parcs, l’emplacement est idéal pour les familles ou les professionnels.<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Vous profiterez d’une grande fenestration laissant entrer une abondance de lumière naturelle, ainsi que d’un balcon intime pour vos moments de détente.<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Caractéristiques du logement :<\/p>\n<p class=\"font_8\"> • 1 stationnement extérieur déneigé<\/p>\n<p class=\"font_8\"> • Entrée laveuse-sécheuse dans la salle de bain<\/p>\n<p class=\"font_8\"> • Air climatisé mural<\/p>\n<p class=\"font_8\"> • Échangeur d’air<\/p>\n<p class=\"font_8\"> • Beaucoup d’espace de rangement<\/p>\n<p class=\"font_8\"> • Entrée indépendante<\/p>\n<p class=\"font_8\"> • Non-fumeur<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Possibilité d'ajouter un garage à votre location<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">1600$\/mois<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Chats acceptés<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Enquête de crédit obligatoire.<\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">450-499-7978<\/p>\n<p class=\"font_8\">info@leshabitationssf.com<\/p>","_updatedDate":{"$date":"2025-08-27T19:53:46.279Z"},"enVedette":true,"nombreDeSallesDeBain":"1","prix":1600,"adresseComplte":{"subdivisions":[{"code":"QC","name":"Québec","type":"ADMINISTRATIVE_AREA_LEVEL_1"},{"code":"Lanaudière","name":"Lanaudière","type":"ADMINISTRATIVE_AREA_LEVEL_2"},{"code":"Saint-Charles-Borromã©E","name":"Saint-Charles-Borromã©E","type":"ADMINISTRATIVE_AREA_LEVEL_3"},{"code":"CA","name":"Canada","type":"COUNTRY"}],"city":"Saint-Charles-Borromã©E","location":{"latitude":46.036049,"longitude":-73.4650473},"countryFullname":"Canada","streetAddress":{"number":"642","name":"Boulevard l'Assomption Ouest","apt":"","formattedAddressLine":"642 Boulevard l'Assomption O"},"formatted":"642 Boulevard l'Assomption Ouest, Saint-Charles-Borromã©E, QC, Canada","country":"CA","postalCode":"J6E 0Y7","subdivision":"QC"},"typeDimmeuble":["APPARTEMENT"],"disponibilite":true,"ville":"Saint-Charles-Borromee","title":"GRAND 5 1\/2 À LOUER ","link-copy-of-location-title":"\/copy-of-location\/grand-5-1%2F2-%C3%A0-louer-","nombreDeSallesDeBain1":"5 "},"75c0dc6e-69fa-455c-941d-35d088470b1a":{"imageSecondaire":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","nombreDeChambres":"2","adresseCivique":"Boulevard l'Amérique- Francaise ","_id":"75c0dc6e-69fa-455c-941d-35d088470b1a","imagePrinciple":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","_owner":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","_createdDate":{"$date":"2025-09-08T14:54:28.981Z"},"imagesEtVideosDeLaProprit":[{"description":"","fileName":"514646087_24202612302683661_2141445117385405711_n.jpg","slug":"5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","title":"514646087_24202612302683661_2141445117385405711_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514346442_737519705440090_5625784311658989043_n.jpg","slug":"5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg\/514346442_737519705440090_5625784311658989043_n.jpg#originWidth=960&originHeight=638","title":"514346442_737519705440090_5625784311658989043_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513956748_605174219292282_4948914998556777853_n.jpg","slug":"5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg\/513956748_605174219292282_4948914998556777853_n.jpg#originWidth=960&originHeight=638","title":"513956748_605174219292282_4948914998556777853_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514707686_1924960548324105_4232948139591812700_n.jpg","slug":"5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg\/514707686_1924960548324105_4232948139591812700_n.jpg#originWidth=960&originHeight=638","title":"514707686_1924960548324105_4232948139591812700_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516197379_1447432313242521_4617035550820131745_n.jpg","slug":"5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg\/516197379_1447432313242521_4617035550820131745_n.jpg#originWidth=960&originHeight=638","title":"516197379_1447432313242521_4617035550820131745_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489373820_1016680700283430_8615493138739300961_n.jpg","slug":"5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg\/489373820_1016680700283430_8615493138739300961_n.jpg#originWidth=960&originHeight=638","title":"489373820_1016680700283430_8615493138739300961_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516022778_1755651455027777_937280568293922313_n.jpg","slug":"5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg\/516022778_1755651455027777_937280568293922313_n.jpg#originWidth=960&originHeight=638","title":"516022778_1755651455027777_937280568293922313_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515251778_653712071061254_5529898409053103548_n.jpg","slug":"5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg\/515251778_653712071061254_5529898409053103548_n.jpg#originWidth=960&originHeight=638","title":"515251778_653712071061254_5529898409053103548_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514972410_1293485992396146_3222863060244739430_n.jpg","slug":"5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg\/514972410_1293485992396146_3222863060244739430_n.jpg#originWidth=960&originHeight=638","title":"514972410_1293485992396146_3222863060244739430_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514540784_695018393347375_2888448066215732589_n.jpg","slug":"5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg\/514540784_695018393347375_2888448066215732589_n.jpg#originWidth=960&originHeight=638","title":"514540784_695018393347375_2888448066215732589_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514500119_702565739425128_1147449990054449884_n.jpg","slug":"5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg\/514500119_702565739425128_1147449990054449884_n.jpg#originWidth=960&originHeight=638","title":"514500119_702565739425128_1147449990054449884_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372762_2713660005498871_4733097477494250675_n.jpg","slug":"5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg\/489372762_2713660005498871_4733097477494250675_n.jpg#originWidth=960&originHeight=638","title":"489372762_2713660005498871_4733097477494250675_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515069041_1069138161850276_582622406997880659_n.jpg","slug":"5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg\/515069041_1069138161850276_582622406997880659_n.jpg#originWidth=960&originHeight=638","title":"515069041_1069138161850276_582622406997880659_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372713_984834983577770_8155438069471395066_n.jpg","slug":"5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","title":"489372713_984834983577770_8155438069471395066_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513825131_1436054440628551_5696716311336627229_n.jpg","slug":"5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg\/513825131_1436054440628551_5696716311336627229_n.jpg#originWidth=960&originHeight=638","title":"513825131_1436054440628551_5696716311336627229_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}}],"frquence":"Mois","link-location-title":"\/location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","descriptionDeLaProprit":"<p class=\"font_8\">Luxueux 4 ½ au cœur du Plateau <\/p>\n<p class=\"font_8\">• 1er étage <\/p>\n<p class=\"font_8\">• Disponible le 1er juillet <\/p>\n<p class=\"font_8\">• Thermopompe (air climatisé) <\/p>\n<p class=\"font_8\">• Pas d’animaux <\/p>\n<p class=\"font_8\">• Enquête de pré-location obligatoire <\/p>\n<p class=\"font_8\">• Construction 2019 <\/p>\n<p class=\"font_8\">• Très lumineux, plafonds de 8 pi <\/p>\n<p class=\"font_8\">• Salle de bain avec douche et bain séparés <\/p>\n<p class=\"font_8\">• Deux grandes chambres plus espace bureau <\/p>\n<p class=\"font_8\">• 1 espace de stationnement privé (déneigé) inclus <\/p>\n<p class=\"font_8\">• Espace de rangement (remise) <\/p>\n<p class=\"font_8\">• Cuisine tendance à aire ouverte <\/p>\n<p class=\"font_8\">• Électroménagers non inclus <\/p>\n<p class=\"font_8\">Courriel: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Tel: 450-499-7978 English <\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Luxurious 2-Bed (4 ½) in the heart of the Plateau <\/p>\n<p class=\"font_8\">• 1st floor <\/p>\n<p class=\"font_8\">• Available July 1 <\/p>\n<p class=\"font_8\">• Heat pump (A\/C) <\/p>\n<p class=\"font_8\">• No pets <\/p>\n<p class=\"font_8\">• Credit check required <\/p>\n<p class=\"font_8\">• New construction (2019) <\/p>\n<p class=\"font_8\">• Very bright with 8' ceilings <\/p>\n<p class=\"font_8\">• Bathroom with separate shower and tub <\/p>\n<p class=\"font_8\">• Two large bedrooms plus home office space <\/p>\n<p class=\"font_8\">• 1 private parking space included (snow-cleared) <\/p>\n<p class=\"font_8\">• Exterior storage unit <\/p>\n<p class=\"font_8\">• Trendy open-concept kitchen <\/p>\n<p class=\"font_8\">• Appliances not included <\/p>\n<p class=\"font_8\">E-mail: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Phone: 450-499-7978<\/p>","_updatedDate":{"$date":"2025-09-08T14:54:28.981Z"},"enVedette":false,"nombreDeSallesDeBain":"1","prix":1750,"adresseComplte":{"subdivisions":[{"code":"QC","name":"Québec","type":"ADMINISTRATIVE_AREA_LEVEL_1"},{"code":"Outaouais","name":"Outaouais","type":"ADMINISTRATIVE_AREA_LEVEL_2"},{"code":"Gatineau","name":"Gatineau","type":"ADMINISTRATIVE_AREA_LEVEL_3"},{"code":"Le Plateau","name":"Le Plateau","type":"ADMINISTRATIVE_AREA_LEVEL_4"},{"code":"CA","name":"Canada","type":"COUNTRY"}],"city":"Gatineau","location":{"latitude":45.4360266,"longitude":-75.8182333},"countryFullname":"Canada","streetAddress":{"number":"49","name":"Boulevard de l'Amérique-Française","apt":"2"},"formatted":"49 Boul. de l'Amérique-Française #2, Gatineau, QC J9J 4B6, Canada","country":"CA","postalCode":"J9J 4B6","subdivision":"QC"},"typeDimmeuble":["APPARTEMENT"],"region":["Gatineau"],"disponibilite":true,"ville":"Gatineau","title":"APPARTEMENT à LOUER 4 1\/2 GATINEAU","link-copy-of-location-title":"\/copy-of-location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","nombreDeSallesDeBain1":"5 "}}},"uniqueFieldValuesByCollection":{"Location":{}}}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"importedNamespaces":[]},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"form-viewer-comp-m2y1awex":{"formsById":{"39743f17-3b77-49be-b37c-a7284b6479cc":{"id":"39743f17-3b77-49be-b37c-a7284b6479cc","fields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","target":"email_443e","validation":{"string":{"format":"EMAIL","enum":[]},"required":true},"pii":true,"hidden":false,"view":{"label":"E-mail","fieldType":"CONTACTS_EMAIL","hideLabel":false},"readOnly":false},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","pii":false,"hidden":false,"view":{"submitText":"S'ABONNER","thankYouMessageDuration":8,"thankYouMessageText":{"nodes":[{"id":"06udw27","type":"PARAGRAPH","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Thanks, we received your submission.","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"id":"4eed8828-bee0-4b73-9a8d-3610631c9875","version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z"}},"nextText":"Next","submitAction":"THANK_YOU_MESSAGE","fieldType":"SUBMIT_BUTTON","previousText":"Back"},"readOnly":false},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","pii":false,"hidden":false,"view":{"content":{"nodes":[{"id":"cuu0z29","type":"HEADING","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a","version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z"},"documentStyle":{}},"fieldType":"HEADER"},"readOnly":false}],"formFields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","hidden":false,"identifier":"CONTACTS_EMAIL","fieldType":"INPUT","inputOptions":{"target":"email_443e","pii":true,"required":true,"inputType":"STRING","contactMapping":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}},"readOnly":false,"stringOptions":{"validation":{"format":"EMAIL","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"E-mail","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","hidden":false,"identifier":"SUBMIT_BUTTON","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"PAGE_NAVIGATION","pageNavigationOptions":{"nextPageText":"Next","previousPageText":"Back","submitText":"S'ABONNER"}}},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","hidden":false,"identifier":"HEADER","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"RICH_CONTENT","richContentOptions":{"richContent":{"nodes":[{"type":"HEADING","id":"cuu0z29","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z","id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a"},"documentStyle":{}}}}}],"steps":[{"id":"8f0147c8-3b42-47b8-af55-5f708dd9933d","name":"Page 1","hidden":false,"layout":{"large":{"items":[{"fieldId":"fa3b0aad-f2fe-47df-ee69-6441506710df","row":1,"column":0,"width":8,"height":1},{"fieldId":"d5df37db-369b-4f3c-f561-579e39eeee46","row":1,"column":8,"width":4,"height":1},{"fieldId":"9c5d853d-7654-4b58-5574-bf0262076a35","row":0,"column":0,"width":12,"height":1}],"sections":[]}}}],"rules":[],"revision":"5","createdDate":"2024-11-01T01:06:55.602Z","updatedDate":"2024-11-14T03:29:39.801Z","properties":{"name":"Abonnement","disabled":false},"deletedFields":[],"deletedFormFields":[],"kind":"REGULAR","postSubmissionTriggers":{"upsertContact":{"fieldsMapping":{"email_443e":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}}},"labels":[]}},"extendedFields":{"namespaces":{"@forms\/form-app":{"automationId":"07baafb0-a4af-4945-9d02-e93bb0e17a3a"}}},"namespace":"wix.form_app.form","nestedForms":[],"spamFilterProtectionLevel":"ADVANCED","submitSettings":{"submitSuccessAction":"THANK_YOU_MESSAGE","thankYouMessageOptions":{"durationInSeconds":8,"richContent":{"nodes":[{"type":"PARAGRAPH","id":"06udw27","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Merci pour votre envoi","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z","id":"4eed8828-bee0-4b73-9a8d-3610631c9875"},"documentStyle":{}}}},"fieldGroups":[],"enabled":true,"name":"Abonnement","formRules":[],"autoFillContact":"FORM_INPUT","submissionAccess":"OWNER_AND_COLLABORATORS"}},"translations":{"field-description.a11y.aria-label":"Lien de description {linkText}","form.submit-button.next-step":"Suivant","multiline-address.a11y.group-name":"Champ d'adresse","error.could-not-load-form.button.label":"Actualiser","submit.failed.message.SUBMISSION_LIMIT_PER_USER_EXCEEDED":"You've reached the submission limit for this form.","form.a11y.step.index.title":"Étape {index} sur {total}","form.disabled.fallback-message":"Sorry, but the form is closed.","submit.failed.message.DISABLED_FORM_ERROR":"Ce formulaire a expiré, vous ne pouvez plus le remplir.","bookings-address.a11y.group-name":"Address field","error.could-not-load-form.title":"Impossible de charger ce formulaire","form.submit-button.state.in-progress":"Envoi du formulaire...","checkbox.input.error.message.required":"Cochez la case pour continuer.","submit.failed.message.SITE_MUST_ACCEPT_PAYMENTS_TO_CREATE_CHECKOUT":"Nous ne pouvons pas accepter les paiements en ligne pour le moment. Contactez-nous pour effectuer votre transaction.","error.could-not-load-form.description":"Il semble qu'il y ait eu un problème temporaire de notre côté. Veuillez patienter quelques minutes, puis cliquez sur Actualiser pour réessayer.","form.submit-button.previous-step":"Retour","contacts-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field-context-menu.cut":"Couper","input.error.message.incomplete-date-error.day-time":"Saisissez un jour et une heure.","field.signature.a11y.action-description.type":"Utilisez le clavier pour écrire.","input.error.message.invalid-default-value-error":"Enter a valid default value","input.error.message.required-error-forced":"Ce champ est obligatoire.","field-context-menu.show-field":"Afficher le champ","date-picker.input.error.message.format-error":"Choisissez une date.","form.login-bar.actions.login":"Se connecter","date-picker.a11y.clear-button":"Effacer","form.file-upload.uploading":"Importation de {count, plural, =0 {...} other {#%...}}","rating-input.a11y.reaction-label":"{count, plural, one {{count} étoile} other {{count} étoiles}}","contacts-company.input.error.message.required-error":"Saisissez un nom d'entreprise.","dext-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.signature.clear-button.label":"Effacer","input.error.message.type-error":"Choisissez un {type}.","payment-input.input.error.message.required-error":"Saisissez un montant de paiement.","form.login-bar.action.logout":"Se déconnecter","date-picker.a11y.arrow-left":"Accéder au mois précédent","mla-subdivision.input.error.message.required-error.tr":"Choisissez une ville.","settings.scheduling.sync-external-calendars.modal.tooltip.kb-link":"https:\/\/support.wix.com\/fr\/article\/r%C3%A9unions-synchroniser-les-agendas-personnels-avec-r%C3%A9unions","input.error.message.value-range-error":"Saisissez un nombre entre {minLimit} et {maxLimit}.","input.error.message.incomplete-date-error.year-month":"Saisissez un mois et une année.","mla-address-line.input.error.message.required-error":"Saisissez une adresse.","contacts-position.input.error.message.required-error":"Saisissez un nom de poste.","bookings-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.year-month-time":"Saisissez un mois, une heure et une année.","field.number.aria-role-description":"Nombre","signature.input.error.message.required-error":"Signez dans la zone ci-dessus.","field.date.label.month":"Mois","field.rich-text.read-more-button.label":"Lire plus","field.time.label.period":"Réglage 24 h","submit.failed.message":"Nous n'avons pas pu envoyer votre formulaire. Veuillez réessayer plus tard.","image-choice.input.error.message.required-error":"Choisissez une option.","dext-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","mla-city.input.error.message.required-error.tr":"Saisissez un district.","date-picker.a11y.calendar-button.role-description":"Pop-up de la fenêtre de l'agenda réduit","field.signature.a11y.action-description.draw-or-type":"Signez dans la case ou utilisez le clavier pour écrire.","settings.scheduling.meeting-type.round-robin":"Rotation des organisateurs","field.time.perdiod.AM":"AM","form.login-bar.title.logged-out-state":"Avez-vous un compte ? ","form.appointment.slots-not-found.text":"Il n'y a aucune disponibilité pour cette date. Essayez de sélectionner une autre date.","input.error.message.format-error":"Utilisez le format « {format} ».","contacts-address.input.error.message.required-error":"Saisissez une adresse.","field-context-menu.copy":"Copier dans le presse-papiers","field.signature.a11y.state.empty":"Le champ de signature est vide.","dext-date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","payment-input.input.error.message.min-value-error":"Saisissez un montant de paiement supérieur à {limit} {currency}.","input.error.message.incomplete-date-error.year-time":"Saisissez une année et une heure à 4 chiffres.","field.signature.a11y.state.signed":"Signé.","field.quiz-answer-feedback.wrong":"Incorrect","mla-city.input.error.message.required-error":"Saisissez une ville.","full-name.input.error.message.required-error":"Saisissez le prénom et le nom.","field.rich-text.read-less-button.label":"Lire moins","form.appointment.accessibility.calendar.previous-week.aria-label":"Afficher la semaine précédente","field.signature.mode.upload.description":"Le mode d'importation a été sélectionné. Importez une image de votre signature.","field.quiz-file-upload.skipped":"Cette question a été ignorée. ","ecom.email.label":"E‑mail","input.error.message.incomplete-date-error.year-month-day":"Saisissez un mois, un jour et une année.","field-context-menu.make-optional":"Rendre facultatif","settings.scheduling.meeting-type.info-icon.round-robin.description":" - Les réunions alternent entre les organisateurs.","contacts-subscribe.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.signature.mode.draw.description":"Le mode de dessin a été sélectionné. Le dessin nécessite une souris ou un pavé tactile. Pour l'accessibilité du clavier, sélectionnez « Saisir » ou « Importer ».","checkbox.input.error.message.required-error":"Cochez la case pour continuer.","date-picker.input.error.message.required-error":"Choisissez une date.","dext-tags.input.error.message.required-error":"Choisissez une option.","field-context-menu.delete":"Supprimer","field.date.label.year":"Année","mla-address-line-2.input.error.message.required-error":"Saisissez une deuxième ligne d'adresse (ex. appartement, suite, étage).","form.login-bar.title.logged-in-state":"Connecté en tant que {user}","payment-input.input.error.message.max-value-error":"Saisissez un montant de paiement inférieur à {limit} {currency}.","ecom-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","payment-input.input.error.message.value-range-error":"Saisissez un montant de paiement compris entre {minLimit} {currency}et {maxLimit} {currency}.","settings.appointment.sync-external-calendars.hosts-title":"Synchroniser les agendas pour les organisateurs","input.error.message.incomplete-date-error.year-day":"Saisissez un jour et une année.","submission-table.signature.not-signed":"Non signé","dext-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","contacts-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","vat-id.input.error.message.required-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","input.error.message.incomplete-date-error.day":"Saisissez un jour.","date-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","input.error.message.invalid-location-id-error":"Location is invalid","input.error.message.max-length-error":"{limit, plural, one {Saisissez un maximum de {limit,number} caractère.} other {Saisissez un maximum de {limit,number} caractères.}}","field.date.placeholder.day":"Jour","services-dropdown.input.error.message.required-error":"Select a Service","ecom-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dext-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","dext-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","contacts-date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","signature.input.error.message.required-error.with-upload":"Signez dans la zone ci-dessus ou importez votre signature.","forms.widget.modals.show-password-tooltip":"Afficher le mot de passe","contacts-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.phone.country-selector-button.aria-label":"Sélectionnez l'indicatif du pays","field-context-menu.move-up":"Déplacer vers le haut","dext-text-input.input.error.message.required-error":"Saisissez une réponse.","settings.required-indicator-text":"(Obligatoire)","file-upload.dropzone.overlay.button":" Déposer vos fichiers ici","platform-quiz-radio-group.input.error.message.required-error":"Choose an option.","field.time.perdiod.PM":"PM","contacts-birthdate.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.quiz-answer-feedback.correct":"Bonne réponse","settings.appointment.duration.custom":"Personnalisée","vat-id.input.error.message.required-error":"Saisissez un numéro CPF\/CNPJ.","bookings-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","input.error.message.character-length-range-error":"Saisissez entre {minLimit} et {maxLimit} caractères.","bookings-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","contacts-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dropdown.input.error.message.required-error":"Choisissez une option.","dext-text-area.input.error.message.required-error":"Saisissez une réponse.","field.signature.settings.upload-button.label":"Importer une image","field.date.placeholder.month":"Mois","form.error.prefix.a11y":"Erreur :","contacts-tax-id.input.error.message.required-error":"Saisissez un numéro de TVA.","signature.text.placeholder":"Type your signature","contacts-number-input.input.error.message.required-error":"Enter a number.","date-picker.a11y.aria-label":"Afficher le sélecteur de date","field.phone.country-search-input.aria-label":"Rechercher","field.signature.a11y.state.drawing":"Signature en cours...","input.error.message.unknown-value-error":"Doit comporter des informations supplémentaires.","phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","dext-date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","form.appointment.empty-state.notification.text":"Il n'y a aucun créneau horaire disponible pour le moment. Veuillez nous contacter pour finaliser votre demande.","mla-country.input.error.message.required-error":"Choisissez un pays\/une région.","field.time.label.hours":"Heures","file-upload.delete-file.aria-label":"Supprimer le fichier","field.vat-id.label-br":"CPF\/CNPJ","ecom-header.contact-details":"Détails du client","input.error.message.invalid-staff-id-error":"This field is invalid.","date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","contacts-first-name.input.error.message.required-error":"Saisissez un prénom.","file-upload.dropzone.title":"Importer votre fichier","field-context-menu.move-down":"Déplacer vers le bas","contacts-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field.time.label.minutes":"Minutes","dext-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","bookings-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","form.file-upload.explanation-text":"{count, plural, one {{count,number} fichier importé} other {{count,number} fichiers importés}}","settings.scheduling.meeting-type.info-icon.intro":"Comment les organisateurs sont attribués :","pikachu.input.error.message.required-error":"Choose an option.","contacts-last-name.input.error.message.required-error":"Saisissez un nom de famille.","forms.widget.modals.hide-password-tooltip":"Masquer le mot de passe","field.signature.mode.selector.aria-label":"Mode de saisie de signature","phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif téléphonique ne sont pas acceptés.","field.signature.mode.draw.label":"Dessiner","mla-postal-code.input.error.message.pattern-error":"Saisissez un code postal valide.","date-picker.a11y.dropdown-year":"Sélectionner l'année","time-input.input.error.message.format-error":"Saisissez les heures et les minutes.","field-context-menu.hide-field":"Masquer le champ","input.error.message.not-allowed-value":"La valeur choisie n'est pas autorisée.","input.error.message.min-value-error":"Saisissez un nombre égal ou supérieur à {limit}.","input.error.message.incomplete-date-error.month-day":"Saisissez un mois et un jour.","field.date.placeholder.time":"HH:MM","submit.checkout.message":"Redirection vers la page de paiement...","form.file-upload.error.unsupported-file-format":"Le type de fichier n'est pas pris en charge.","settings.scheduling.meeting-type.info-icon.single-host.description":" - Un même organisateur est attribué à toutes les réunions.","input.error.message.invalid-phone-country-code-error":"Saisissez un indicatif de pays valide.","mla-street-name.input.error.message.required-error":"Saisissez un nom de rue.","settings.scheduling.sync-external-calendars.not-current-user.kb-link":"https:\/\/support.wix.com\/en\/article\/wix-meetings-syncing-personal-calendars-with-wix-meetings","bookings-first-name.input.error.message.required-error":"Saisissez un prénom.","vat-id.input.error.message.format-error":"Saisissez un numéro CPF\/CNPJ valide.","form.appointment.accessibility.calendar.next-week.aria-label":"Afficher la semaine prochaine","donation.input.error.message.required-error":"Choisissez un montant de don.","settings.appointment.duration.hours-error":"Les heures doivent être comprises entre 0 et 99.","input.error.message.incomplete-date-error.month":"Saisissez un mois.","input.error.message.incomplete-date-error.year":"Saisissez une année à 4 chiffres.","vat-id.input.error.message.format-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","settings.appointment.duration.hours-label":"Heures","field.phone.aria-label":"Téléphone","field.signature.canvas.aria-label.empty":"Zone de dessin de la signature (vide)","file-upload.dropzone.limit-reached.title":"Vous avez atteint la limite d'importation de fichiers.","form.appointment.accessibility.calendar.has-availability.aria-label":"Ce jour dispose de créneaux horaires disponibles.","bookings-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.month-time":"Saisissez un mois et une heure.","product-list.input.error.message.required-error":"Choisissez une option.","field-context-menu.move-to-next-page":"Déplacer vers la page suivante","mla-postal-code.input.error.message.required-error":"Saisissez un code postal.","file-upload.input.error.message.required-error":"Veuillez importer un fichier.","vat-id.input.error.message.format-error.br":"Enter a valid CPF\/CNPJ number.","input.error.message.exact-character-length-error":"{limit, plural, one {Saisissez exactement {limit,number} caractère.} other {Saisissez exactement {limit,number} caractères.}}","submission-table.signature.signed":"Signé","input.error.message.incomplete-date-error":"Saisissez un mois, un jour et une année.","ecom-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field.vat-id.label-il":"Numéro d’identité\/d’entreprise","text-input.input.error.message.required-error":"Saisissez une réponse.","url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-header.shipping-details":"Informations de livraison","service-dropdown.input.error.message.required-error":"Sélectionnez un service.","field.signature.mode.type.description":"Le mode de saisie a été sélectionné. Saisissez votre signature à l'aide du clavier.","input.error.message.incomplete-date-error.year-day-time":"Saisissez un jour, une heure et une année.","number-input.input.error.message.required-error":"Saisissez un nombre.","field.signature.mode.upload.label":"Importer","input.error.message.unknown-error":"Erreur inconnue, veuillez contacter l'Assistance.","input.error.message.max-items-error":"{limit, plural, one {Choisissez jusqu'à {limit,number} option.} other {Choisissez jusqu'à {limit,number} options.}}","file-upload.popover.aria-label":"Liste des fichiers importés","input.error.message.multiple-of-value-error":"Choisissez un multiple de {multipleOf}.","full-name-last-name.input.error.message.required-error":"Saisissez un nom de famille.","field-context-menu.paste":"Coller","input.error.message.pattern-error":"Correspond au modèle « {pattern} ».","dext-number-input.input.error.message.required-error":"Saisissez un nombre.","field-context-menu.ai-assistant":"AI Assistant","field-context-menu.move-to-previous-page":"Déplacer vers la page précédente","dext-date-picker.input.error.message.required-error":"Choisissez une date.","settings.appointment.duration.minutes-error":"Les minutes doivent être comprises entre 0 et 59.","date-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","dext-checkbox-group.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.subtitle":"Choisissez un fichier ou glissez-déposez-le ici.","dext-radio-group.input.error.message.required-error":"Choisissez une option.","checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","contacts-birthdate.input.error.message.max-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","input.error.message.incomplete-date-error.month-day-time":"Saisissez un mois, un jour et une heure.","file-upload.aria-roledescription":"Importation de fichier","settings.appointment.duration.minutes-label":"Minutes","contacts-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","mla-street-number.input.error.message.required-error":"Saisissez un numéro de bâtiment.","date-picker.a11y.dropdown-month":"Sélectionner le mois","field.signature.mode.type.label":"Saisir","settings.default-value-conflict.min-value-error":"Min characters must be at least the default text length. Update the character limit or shorten the text.","date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","settings.scheduling.meeting-type.personal":"Organisateur unique","date-time-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","dext-checkbox.input.error.message.required-error":"Cochez la case pour continuer.","url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","file-upload.file.uploading-spinner.aria-label":"Chargement du ficher","field.phone.country-code.aria-label":"Indicatif du pays","add-other.default-other-option-label":"Autre","dext-checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.date.placeholder.year":"Année","date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","field.signature.text.placeholder":"Saisissez votre signature","dext-date-picker.input.error.message.format-error":"Choisissez une date.","form.file-upload.error.upload-limit":"{limit, plural, one {Il y a une limite d'importation de {limit,number} fichier.} other {Il y a une limite d'importation de {limit,number} fichiers.}}","checkbox-group.input.error.message.required-error":"Choisissez une option.","rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.mla-apartment.label":"Appartement","text-area.input.error.message.required-error":"Saisissez une réponse.","field.phone.country-search-input.placeholder":"Rechercher","submission-table.appointment.meeting-tool-tip":"Go to Scheduled Meetings","donation.other-option.placeholder":"Saisissez un montant","dext-rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.signature.a11y.action-description.draw":"Signez dans la zone.","contacts-birthdate.input.error.message.min-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","mla-subdivision.input.error.message.required-error":"Choisissez une option.","dext-dropdown.input.error.message.required-error":"Choisissez une option.","contacts-text-input.input.error.message.required-error":"Enter an answer.","field.date.label.day":"Jour","vat-id.input.error.message.required-error.br":"Enter a CPF\/CNPJ number.","date-picker.calendar.close-button":"Fermer","settings.appointment.duration.zero-error":"La durée doit être d'au moins 1 minute.","phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.invalid-value-for-pattern":"Saisissez une réponse valide.","radio-group.input.error.message.required-error":"Choisissez une option.","input.error.message.min-items-error":"{limit, plural, one {Choisissez au moins {limit,number} option.} other {Choisissez au moins {limit,number} options.}}","ecom.form.field-type.ecom-subscriptions.label":"J'accepte de recevoir des actualités à l'adresse e-mail et\/ou aux numéros de téléphone ajoutés","input.error.message.decimal_point_error":"Ajouter {number} chiffre(s) après la virgule.","bookings-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","contacts-subscribe.input.error.message.required-error":"Cochez la case pour continuer.","form.appointment.show-more-slots.text":"Afficher plus de créneaux","form.file-upload.error.upload-failed":"Échec d'importation du fichier.","dext-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","full-name-first-name.input.error.message.required-error":"Saisissez un prénom.","field-context-menu.settings":"Paramètres","settings.default-value-conflict.max-value-error":"Max characters must be at least the default text length. Update the character limit or shorten the text.","bookings-last-name.input.error.message.required-error":"Saisissez un nom de famille.","appointment.input.error.message.required-error":"Ce champ est obligatoire.","field-context-menu.make-required":"Rendre obligatoire","date-time-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.date.label.time":"Heure","input.error.message.required-error":"Ce champ est obligatoire.","field.phone.country-selector-dropdown.no-result":"Aucun résultat","input.error.message.exact-items-number-error":"{limit, plural, one {Choisissez {limit,number} option.} other {Choisissez {limit,number} options.}}","form.appointment.timezone.label":"Fuseau horaire ","dext-date-time-input.input.error.message.required-error":"Saisissez le jour, le mois et l'année.","actions.rules.button.label":"Rules","date-time-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","date-picker.a11y.arrow-right":"Accéder au mois suivant","input.error.message.incomplete-date-error.time":"Saisissez une heure.","field.signature.canvas.aria-label.signed":"Zone de dessin de la signature (signée)","settings.default-value-conflict.regex-error":"The regex must be viable for the entered default value. Update the regex or change the text.","contacts-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","tags.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.limit-reached.subtitle":"Supprimez un fichier pour en ajouter un autre.","input.error.message.max-value-error":"Saisissez un nombre égal ou inférieur à {limit}.","input.error.message.min-length-error":"{limit, plural, one {Saisissez un minimum de {limit,number} caractère.} other {Saisissez un minimum de {limit,number} caractères.}}","form.appointment.meeting-format.in-person-location-method-os-location":"Emplacement de l’entreprise","form.file-upload.error.limit":"Vous avez atteint votre limite d'importation de {limit,number} fichiers.","contacts-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field-context-menu.duplicate":"Dupliquer"},"localeDataset":{},"fieldInitialData":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"comp-m8omf94t_appSettings":{"pageId":"d34uk","styleId":"style-jyem87tx","upgrades":{"fullscreen":{"date":"Tue Dec 11 2018 18:15:52 GMT+0300 (Москва, стандартное время)"}},"layoutTeaserShowed":true,"galleryId":"f69dcbf9-e1a7-426c-98ee-2da2f685c218","originGallerySettings":null},"comp-m8omf94t_galleryData":{"items":[{"itemId":"dbb93b00-91d8-4fb1-a372-e7cffcf44fcb","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":-287258,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1349,"width":2397,"fileName":"pexels-yaroslav-shuraev-1553961_edit.jpg","name":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},"mediaUrl":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},{"itemId":"d066ae7a-e300-4ffd-b33f-095f08f2c3da","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":844792578030.5,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3751,"width":2501,"fileName":"mathilde-langevin-6fz3ajqj88c-unsplash_edit.jpg","name":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},"mediaUrl":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},{"itemId":"d1d9c6a6-188f-41b8-8d0b-732ad02a0154","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1267189010674.75,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5862,"width":5685,"fileName":"florian-krumm-Fudi5uf5-m8-unsplash_edit.jpg","name":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},"mediaUrl":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},{"itemId":"537cf9e5-fb38-4855-a759-4da6163a4fc9","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1478387226996.875,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":933,"width":623,"focalPoint":[0.5,0.5],"fileName":"0_1 (6).jpg","name":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},"mediaUrl":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},{"itemId":"b5b299a3-71d8-4ae3-aa0b-dd1b388ddb4d","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1583986335157.9375,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4761,"width":3174,"fileName":"the-blowup-X5gIdTDxkYU-unsplash_edit.jpg","name":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},"mediaUrl":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},{"itemId":"96afa29d-6b92-4f99-be4f-13e82e9ee669","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1636785889238.4688,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3515,"width":2344,"fileName":"arctic-qu-Yn7NXC5SFQo-unsplash_edit.jpg","name":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},"mediaUrl":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},{"itemId":"e759f1da-099c-4a3a-81f1-c4ad0692ee6e","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1663185666278.7344,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1713,"width":1142,"fileName":"martin-jursitzka-5NSLhET_jmw-unsplash (1).png","name":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},"mediaUrl":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},{"itemId":"1255be04-9bec-4cba-8768-cfaa76be582b","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1676385554798.8672,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-arthouse-studio-5091109-1920x1080-50fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":720,"quality":"720p","width":1280},{"formats":["mp4"],"height":480,"quality":"480p","width":854},{"formats":["mp4"],"height":360,"quality":"360p","width":640}],"duration":20600},"mediaUrl":"8bb438_927f3e749a784536afbcdd81890e8064"},{"itemId":"b2b9804e-41a8-4cf2-b387-2332f1095e36","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1682985499058.9336,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":6000,"width":4000,"fileName":"almas-salakhov-r6tBVNU-mx4-unsplash_edit.jpg","name":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},"mediaUrl":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},{"itemId":"db9fee57-10cc-45f7-b45d-1833098c4eb5","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585443319,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5255,"width":3503,"fileName":"philippe-gauthier-KQsU_tQDH9k-unsplash_edit.jpg","name":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},"mediaUrl":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},{"itemId":"5146d337-7d0e-4010-a24e-63ae281a7631","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585444021,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4405,"width":4271,"fileName":"0220 (2).jpg","name":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},"mediaUrl":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},{"itemId":"57fb6172-1793-4e03-8a34-2059b664d4a0","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585851017,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-ксения-капустина-9350509-1080x1920-30fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":406,"quality":"720p","width":720},{"formats":["mp4"],"height":270,"quality":"480p","width":480},{"formats":["mp4"],"height":202,"quality":"360p","width":360}],"duration":10043},"mediaUrl":"8bb438_f6bbdd3a41df4bcab09c7333855ba583"}],"totalItemsCount":12}}},"builderComponentsWarmupData":{},"ooi":{"failedInSsr":{}}}</script> | |
| 2620 | +<!-- warmup data end --> | |
| 2621 | + | |
| 2622 | + | |
| 2623 | +<!-- presets polyfill --> | |
| 2624 | + | |
| 2625 | + | |
| 2626 | + | |
| 2627 | + | |
| 2628 | +<!-- detect browser zoom --> | |
| 2629 | + | |
| 2630 | + | |
| 2631 | + | |
| 2632 | + | |
| 2633 | + | |
| 2634 | + | |
| 2635 | + | |
| 2636 | + | |
| 2637 | + | |
| 2638 | + | |
| 2639 | + | |
| 2640 | +</body> | |
| 2641 | +</html> | |
added
tests/fixtures/habitations_sf/94eb6a0c5b2b7756e31f.html
+2631 −0
@@ -0,0 +1,2631 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + | |
| 5 | + <meta charset='utf-8'> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" id="wixDesktopViewport" /> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 8 | + <meta name="generator" content="Wix.com Website Builder"/> | |
| 9 | + | |
| 10 | + <link rel="icon" sizes="192x192" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 11 | + <link rel="shortcut icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 12 | + <link rel="apple-touch-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 13 | + | |
| 14 | + <!-- Safari Pinned Tab Icon --> | |
| 15 | + <!-- <link rel="mask-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg"> --> | |
| 16 | + | |
| 17 | + <!-- Segmenter Polyfill --> | |
| 18 | + <script> | |
| 19 | + if (!window.Intl || !window.Intl.Segmenter) { | |
| 20 | + (function() { | |
| 21 | + var script = document.createElement('script'); | |
| 22 | + script.src = 'https://static.parastorage.com/unpkg/@formatjs/intl-segmenter@11.7.10/polyfill.iife.js'; | |
| 23 | + document.head.appendChild(script); | |
| 24 | + })(); | |
| 25 | + } | |
| 26 | + </script> | |
| 27 | + | |
| 28 | + <!-- Legacy Polyfills --> | |
| 29 | + <script nomodule="" src="https://static.parastorage.com/unpkg/core-js-bundle@3.2.1/minified.js"></script> | |
| 30 | + <script nomodule="" src="https://static.parastorage.com/unpkg/focus-within-polyfill@5.0.9/dist/focus-within-polyfill.js"></script> | |
| 31 | + | |
| 32 | + <!-- Performance API Polyfills --> | |
| 33 | + <script> | |
| 34 | + (function () { | |
| 35 | + var noop = function noop() {}; | |
| 36 | + if ("performance" in window === false) { | |
| 37 | + window.performance = {}; | |
| 38 | + } | |
| 39 | + window.performance.mark = performance.mark || noop; | |
| 40 | + window.performance.measure = performance.measure || noop; | |
| 41 | + if ("now" in window.performance === false) { | |
| 42 | + var nowOffset = Date.now(); | |
| 43 | + if (performance.timing && performance.timing.navigationStart) { | |
| 44 | + nowOffset = performance.timing.navigationStart; | |
| 45 | + } | |
| 46 | + window.performance.now = function now() { | |
| 47 | + return Date.now() - nowOffset; | |
| 48 | + }; | |
| 49 | + } | |
| 50 | + })(); | |
| 51 | + </script> | |
| 52 | + | |
| 53 | + <!-- Essential Viewer Model --> | |
| 54 | + <script type="application/json" id="wix-essential-viewer-model">{"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"siteFeaturesConfigs":{"sessionManager":{"isRunningInDifferentSiteContext":false}},"language":{"userLanguage":"fr"},"siteAssets":{"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"site":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isSEO":false},"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"interactionSampleRatio":0.01,"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","experiments":{"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true}}</script> | |
| 55 | + <script>window.viewerModel = JSON.parse(document.getElementById('wix-essential-viewer-model').textContent)</script> | |
| 56 | + | |
| 57 | + <!-- Globals Definitions --> | |
| 58 | + <script> | |
| 59 | + (function () { | |
| 60 | + var now = Date.now() | |
| 61 | + var activationStart = 0 | |
| 62 | + try { | |
| 63 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 64 | + if (navEntry && navEntry.activationStart > 0) { | |
| 65 | + activationStart = navEntry.activationStart; | |
| 66 | + } | |
| 67 | + } catch (e) {} | |
| 68 | + window.initialTimestamps = { | |
| 69 | + initialTimestamp: now, | |
| 70 | + initialRequestTimestamp: Math.round(performance.timeOrigin ? performance.timeOrigin + activationStart : now - performance.now() + activationStart) | |
| 71 | + } | |
| 72 | + | |
| 73 | + window.thunderboltTag = "libs-releases-GA-local" | |
| 74 | + window.thunderboltVersion = "1.17718.0" | |
| 75 | + })(); | |
| 76 | + </script> | |
| 77 | + | |
| 78 | + <script> | |
| 79 | + window.commonConfig = viewerModel.commonConfig | |
| 80 | + </script> | |
| 81 | + | |
| 82 | + | |
| 83 | + <!-- BEGIN handleAccessTokens bundle --> | |
| 84 | + | |
| 85 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js">(()=>{"use strict";let e,t,r,o;var n={},i={};function l(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return n[e](r,r.exports,l),r.exports}function a(e){let{context:t,property:r,value:o,enumerable:n=!0}=e,i=e.get,l=e.set;if(!r||void 0===o&&!i&&!l)return Error("property and value are required");let a=t||globalThis,s=a?.[r],u={};if(void 0!==o)u.value=o;else{if(i){let e=c(i);e&&(u.get=e)}if(l){let e=c(l);e&&(u.set=e)}}let p={...u,enumerable:n||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(a,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function c(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}l.rv=()=>"1.6.8",l.ruid="bundler=rspack@1.6.8";try{a({property:"strictDefine",value:a})}catch{}try{a({property:"defineStrictObject",value:function e(t){let{context:r,property:o,propertiesToExclude:n=[],skipPrototype:i=!1,hardenPrototypePropertiesToExclude:l=[]}=t;if(!o)return Error("property is required");let c=(r||globalThis)[o],p={},f=u(r,o);c&&("object"==typeof c||"function"==typeof c)&&Reflect.ownKeys(c).forEach(e=>{if(!n.includes(e)&&!s.includes(e)){let t=u(c,e);if(t&&(t.writable||t.configurable)){let{value:r,get:o,set:n,enumerable:i=!1}=t,l={};void 0!==r?l.value=r:o?l.get=o:n&&(l.set=n);try{let t=a({context:c,property:e,...l,enumerable:i});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:c,originalProperties:p};if(!i&&c?.prototype!==void 0){let t=e({context:c,property:"prototype",propertiesToExclude:l,skipPrototype:!0});t instanceof Error||(d.originalPrototype=t?.originalObject,d.originalPrototypeProperties=t?.originalProperties)}return a({context:r,property:o,value:c,enumerable:f?.enumerable}),d}})}catch{}try{a({property:"defineStrictMethod",value:function(e,t){let r=(t||globalThis)[e],o=u(t||globalThis,e);return r&&o&&(o.writable||o.configurable)?(Object.freeze(r),a({context:globalThis,property:e,value:r})):r}})}catch{}var s=["toString","toLocaleString","valueOf","constructor","prototype"];function u(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function p(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function f(e,t){let r="";if("string"==typeof e)r=e.split("=")[0]?.trim()||"";else{if(!e||"string"!=typeof e.name)return!1;r=e.name}return t.has(p(r)||"")}function d(e,t){return("string"==typeof e?e.split(";").map(e=>e.trim()).filter(e=>e.length>0):e||[]).filter(e=>!f(e,t))}var y=null;function g(){return null===y&&(y=typeof Document>"u"?void 0:Object.getOwnPropertyDescriptor(Document.prototype,"cookie")),y}let b=(e,t)=>{try{let r=t?t.get.call(document):document.cookie;return r.split(";").map(e=>e.trim()).filter(t=>t?.startsWith(e))[0]?.split("=")[1]}catch(e){return""}},h=(e="",t="",r="/")=>`${e}=; ${t?`domain=${t};`:""} max-age=0; path=${r}; expires=Thu, 01 Jan 1970 00:00:01 GMT`;function m(e,t){try{return sessionStorage[e]("reload",t||"")}catch(e){console.error("ATS: Error calling sessionStorage:",e)}}var v=["true","b","c","new","enabled"];let w=[],S=(e,t)=>{let r;return w.includes(t)||!0===(r=e[t])||"string"==typeof r&&v.includes(r.toLowerCase())},T="client-session-bind",k="sec-fetch-unsupported",{experiments:x}=window.viewerModel,{cookie:E}=(e=new Set([T,"client-binding",k,"svSession","smSession","server-session-bind","wixSession2","wixSession3"].map(e=>e.toLowerCase())),a({context:document,property:"cookie",set:{func:t=>{var r,o;let n,i;return r=document,o=void 0,n=g(),i=p(t.split(";")[0]||"")||"",void([...e].every(e=>!i.startsWith(e.toLowerCase()))&&n?.set?n.set.call(r,t):o&&console.warn(o))}},get:{func:()=>(function(e,t){let r=g();if(!r?.get)throw Error("Cookie descriptor or getter not available");return d(r.get.call(e),t).join("; ")})(document,e)},enumerable:!0}),{cookieStore:function(e,t){if(!globalThis?.cookieStore)return;let r=globalThis.cookieStore.get.bind(globalThis.cookieStore),o=globalThis.cookieStore.getAll.bind(globalThis.cookieStore),n=globalThis.cookieStore.set.bind(globalThis.cookieStore),i=globalThis.cookieStore.delete.bind(globalThis.cookieStore);return a({context:globalThis.CookieStore.prototype,property:"get",value:async function(t){return f(("string"==typeof t?t:t.name)||"",e)?null:r.call(this,t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"getAll",value:async function(){let t=await o.apply(this,Array.from(arguments));return d(t,e)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"set",value:async function(){let r=Array.from(arguments);if(!f(1===r.length?r[0].name:r[0],e))return n.apply(this,r);t&&console.warn(t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"delete",value:async function(){let t=Array.from(arguments);if(!f(1===t.length?t[0].name:t[0],e))return i.apply(this,t)},enumerable:!0}),a({context:globalThis.cookieStore,property:"prototype",value:globalThis.CookieStore.prototype,enumerable:!1}),a({context:globalThis,property:"cookieStore",value:globalThis.cookieStore,enumerable:!0}),{get:r,getAll:o,set:n,delete:i}}(e,void 0),cookie:g()}),P="tbReady",C="security_overrideGlobals",{experiments:D,siteFeaturesConfigs:M,accessTokensUrl:O}=window.viewerModel,$={},j=(t=b(T,E),S(x,"specs.thunderbolt.browserCacheReload")&&(b(k,E)||t?m("removeItem"):function(){if("undefined"!=typeof window){let e=performance.getEntriesByType("navigation")[0];return"back_forward"===(e?.type||"")}return!1}()&&function(){let{counter:e}=function(){let e=m("getItem");if(e){let[t,r]=e.split("-"),o=r?parseInt(r,10):0;if(o>=3){let e=t?Number(t):0;if(Date.now()-e>6e4)return{counter:0}}return{counter:o}}return{counter:0}}();e<3?(function(e=1){m("setItem",`${Date.now()}-${e}`)}(e+1),window.location.reload()):console.error("ATS: Max reload attempts reached")}()),r=h(T),o=h(T,location.hostname),E.set.call(document,r),E.set.call(document,o),t);j&&($["client-binding"]=j);let A=fetch;addEventListener(P,function e(t){let{logger:r}=t.detail;try{window.tb.init({fetch:A,fetchHeaders:$})}catch(t){let e=Error("TB003");r.meter(`${C}_${e.message}`,{paramsOverrides:{errorType:C,eventString:e.message}}),window?.viewerModel?.mode.debug&&console.error(t)}finally{removeEventListener(P,e)}}),S(D,"specs.thunderbolt.hardenFetchAndXHR")||(window.fetchDynamicModel=()=>M.sessionManager.isRunningInDifferentSiteContext?Promise.resolve({}):fetch((()=>{try{let e="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,t=globalThis?.parent!==globalThis,r=new URL(O,location.href);return(t||e)&&(r.searchParams.set("ifr",String(t)),r.searchParams.set("worker",String(e))),r.href}catch{return O}})(),{credentials:"same-origin",headers:$}).then(function(e){if(!e.ok)throw Error(`[${e.status}]${e.statusText}`);return e.json()}),window.dynamicModelPromise=window.fetchDynamicModel())})(); | |
| 86 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js.map</script> | |
| 87 | + | |
| 88 | +<!-- END handleAccessTokens bundle --> | |
| 89 | + | |
| 90 | +<!-- BEGIN overrideGlobals bundle --> | |
| 91 | + | |
| 92 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js">(()=>{"use strict";var e={},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}function o(e){let{context:t,property:r,value:o,enumerable:i=!0}=e,c=e.get,a=e.set;if(!r||void 0===o&&!c&&!a)return Error("property and value are required");let l=t||globalThis,s=l?.[r],u={};if(void 0!==o)u.value=o;else{if(c){let e=n(c);e&&(u.get=e)}if(a){let e=n(a);e&&(u.set=e)}}let p={...u,enumerable:i||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(l,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function n(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}r.rv=()=>"1.6.8",r.ruid="bundler=rspack@1.6.8";try{o({property:"strictDefine",value:o})}catch{}try{o({property:"defineStrictObject",value:c})}catch{}try{o({property:"defineStrictMethod",value:a})}catch{}var i=["toString","toLocaleString","valueOf","constructor","prototype"];function c(e){let{context:t,property:r,propertiesToExclude:n=[],skipPrototype:a=!1,hardenPrototypePropertiesToExclude:s=[]}=e;if(!r)return Error("property is required");let u=(t||globalThis)[r],p={},f=l(t,r);u&&("object"==typeof u||"function"==typeof u)&&Reflect.ownKeys(u).forEach(e=>{if(!n.includes(e)&&!i.includes(e)){let t=l(u,e);if(t&&(t.writable||t.configurable)){let{value:r,get:n,set:i,enumerable:c=!1}=t,a={};void 0!==r?a.value=r:n?a.get=n:i&&(a.set=i);try{let t=o({context:u,property:e,...a,enumerable:c});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:u,originalProperties:p};if(!a&&u?.prototype!==void 0){let e=c({context:u,property:"prototype",propertiesToExclude:s,skipPrototype:!0});e instanceof Error||(d.originalPrototype=e?.originalObject,d.originalPrototypeProperties=e?.originalProperties)}return o({context:t,property:r,value:u,enumerable:f?.enumerable}),d}function a(e,t){let r=(t||globalThis)[e],n=l(t||globalThis,e);return r&&n&&(n.writable||n.configurable)?(Object.freeze(r),o({context:globalThis,property:e,value:r})):r}function l(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function s(e){return e.startsWith("//")&&/(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/g.test(`${location.protocol}:${e}`)&&(e=`${location.protocol}${e}`),!e.startsWith("http")||new URL(e).hostname===location.hostname}function u(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function p(e,t){return e instanceof Headers?e.forEach((r,o)=>{f(o,t)||e.delete(o)}):Object.keys(e).forEach(r=>{f(r,t)||delete e[r]}),e}function f(e,t){return!t.has(u(e)||"")}function d(e,t){let r=!0,o=u(function(e){let t,r;if(globalThis.Request&&e instanceof Request)t=e.url;else if("function"==typeof e?.toString)t=e.toString();else throw Error("Unsupported type for url");try{return new URL(t).pathname}catch{return(r=t.replace(/#.+/gi,"").split("?").shift()).startsWith("/")?r:`/${r}`}}(e));return o&&t.some(e=>o.includes(e))&&(r=!1),r}var y=["true","b","c","new","enabled"];let b=[],g=(e,t)=>{let r;return b.includes(t)||!0===(r=e[t])||"string"==typeof r&&y.includes(r.toLowerCase())};performance.mark("overrideGlobals started");let{experiments:m}=window.viewerModel,v=g(m,"specs.thunderbolt.securityExperiments");try{let e,t;!function(){let e=globalThis.open,t=document.open;function r(t,r,o){let n="string"!=typeof t,i=e.call(window,t,r,o);return n||t&&s(t)?{}:i}o({property:"open",value:r,context:globalThis,enumerable:!0}),o({property:"open",value:function(e,o,n){return e?r(e,o,n):t.call(document,e||"",o||"",n||"")},context:document,enumerable:!0})}(),v&&function(){let e=document.createElement,t=Element.prototype.setAttribute,r=Element.prototype.setAttributeNS,n=Element.prototype.removeAttribute,i=(Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow")?.get,Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"src")),c=i?.get,a=i?.set,l=Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"sandbox")?.get,s=DOMTokenList.prototype.add,p=DOMTokenList.prototype.remove,f=DOMTokenList.prototype.toggle,d=DOMTokenList.prototype.replace,y=Object.getOwnPropertyDescriptor(DOMTokenList.prototype,"value"),b=y?.get,g=y?.set,m=new WeakSet;o({property:"createElement",context:document,value:function(n,i){let c=e.call(document,n,i);return"iframe"===u(n)&&(o({property:"srcdoc",context:c,get:()=>"",set:()=>{console.warn("`srcdoc` is not allowed in iframe elements.")}}),o({property:"setAttribute",context:c,value:function(e,r){if("srcdoc"===e.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");t.call(c,e,r);e.toLowerCase()},enumerable:!1}),o({property:"setAttributeNS",context:c,value:function(e,t,o){if("srcdoc"===t.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");r.call(c,e,t,o);t.toLowerCase()},enumerable:!1})),c},enumerable:!0})}(),g(m,"specs.thunderbolt.hardenFetchAndXHR")&&v&&function(e,t,r){let n=fetch,i=XMLHttpRequest,c=new Set(t);function a(){let t=new i,o=t.open,n=t.setRequestHeader;return t.open=function(){let n=Array.from(arguments),i=n[1];if(n.length<2||d(i,e))return o.apply(t,n);throw Error(r||`Request not allowed for path ${i}`)},t.setRequestHeader=function(e,r){f(decodeURIComponent(e),c)&&n.call(t,e,r)},t}o({property:"fetch",value:function(){var t;let o=(t=arguments,globalThis.Request&&t[0]instanceof Request&&t[0]?.headers?p(t[0].headers,c):t[1]?.headers&&p(t[1].headers,c),t);return d(arguments[0],e)?n.apply(globalThis,Array.from(o)):new Promise((e,t)=>{let o=Error(r||`Request not allowed for path ${arguments[0]}`);t(o)})},enumerable:!0}),o({property:"XMLHttpRequest",value:a,enumerable:!0}),Object.keys(i).forEach(e=>{a[e]=i[e]})}(["/_api/v1/access-tokens","/_api/v2/dynamicmodel","/_api/one-app-session-web/v3/businesses"],["client-binding"]),function(){if(navigator&&"serviceWorker"in navigator)navigator.serviceWorker.register,o({context:navigator.serviceWorker,property:"register",value:function(){console.log("Service worker registration is not allowed")},enumerable:!0})}(),e=[],t=(t=[]).concat(["TextEncoder","TextDecoder"]),v&&(t=t.concat(["XMLHttpRequestEventTarget","EventTarget"])),t=t.concat(["URL","JSON"]),v&&(e=e.concat(["addEventListener","removeEventListener"])),e=e.concat(["encodeURI","encodeURIComponent","decodeURI","decodeURIComponent"]),t=t.concat(["String","Number"]),v&&t.push("Object"),t=t.concat(["Reflect"]),e.forEach(e=>{a(e),["addEventListener","removeEventListener"].includes(e)&&a(e,document)}),t.forEach(e=>{c({property:e})}),v&&function(){return e("setTimeout",0,globalThis),e("setInterval",0,globalThis);function e(e,t,r){let n=r||globalThis,i=n[e];if(!i||"function"!=typeof i)throw Error(`Function ${e} not found or is not a function`);o({property:e,value:function(){let r=Array.from(arguments);if("string"!=typeof r[t])return i.apply(n,r);console.warn(`Calling ${e} with a String Argument at index ${t} is not allowed`)},context:r,enumerable:!0})}}()}catch(t){window?.viewerModel?.mode.debug&&console.error(t);let e=Error("TB006");window.fedops?.reportError(e,"security_overrideGlobals"),window.Sentry?window.Sentry.captureException(e):globalThis.defineStrictProperty("sentryBuffer",[e],window,!1)}performance.mark("overrideGlobals ended")})(); | |
| 93 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js.map</script> | |
| 94 | + | |
| 95 | +<!-- END overrideGlobals bundle --> | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + <script> | |
| 101 | + window.commonConfig = viewerModel.commonConfig | |
| 102 | + | |
| 103 | + | |
| 104 | + window.clientSdk = new Proxy({}, {get: (target, prop) => (...args) => window.externalsRegistry.clientSdk.loaded.then(() => window.__clientSdk__[prop](...args))}) | |
| 105 | + | |
| 106 | + </script> | |
| 107 | + | |
| 108 | + <!-- Initial CSS --> | |
| 109 | + <style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css">@keyframes slide-horizontal-new{0%{transform:translate(100%)}}@keyframes slide-horizontal-old{80%{opacity:1}to{opacity:0;transform:translate(-100%)}}@keyframes slide-vertical-new{0%{transform:translateY(-100%)}}@keyframes slide-vertical-old{80%{opacity:1}to{opacity:0;transform:translateY(100%)}}@keyframes out-in-new{0%{opacity:0}}@keyframes out-in-old{to{opacity:0}}:root:active-view-transition{view-transition-name:none}:root:active-view-transition::view-transition-group(*){animation:none}:root:active-view-transition::view-transition-old(*){animation:none}:root:active-view-transition::view-transition-new(*){animation:none}:root::view-transition{pointer-events:none}:root:active-view-transition #SITE_HEADER{view-transition-name:header-group}:root:active-view-transition #WIX_ADS{view-transition-name:wix-ads-group}:root:active-view-transition #SITE_FOOTER{view-transition-name:footer-group}:root:active-view-transition #BACKGROUND_GROUP_TRANSITION_GROUP>div{view-transition-name:background-group}:root:active-view-transition::view-transition-group(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-old(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-new(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-horizontal-old}:root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-horizontal-new}:root:active-view-transition-type(SlideVertical)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-vertical-old}:root:active-view-transition-type(SlideVertical)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-vertical-new}:root:active-view-transition-type(OutIn)::view-transition-old(page-group){animation:.35s cubic-bezier(.22,1,.36,1) forwards out-in-old}:root:active-view-transition-type(OutIn)::view-transition-new(page-group){animation:.35s cubic-bezier(.64,0,.78,0) .35s backwards out-in-new}@media (prefers-reduced-motion:reduce){::view-transition-group(*){animation:none!important}::view-transition-old(*){animation:none!important}::view-transition-new(*){animation:none!important}}html,body{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}body{--scrollbar-width:0px;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;font-family:Arial,Helvetica,sans-serif;font-size:10px}html,body{height:100%}body{overflow-x:auto;overflow-y:scroll}body:not(.responsive) #site-root{width:100%;min-width:var(--site-width)}body:not([data-js-loaded]) [data-hide-prejs]{visibility:hidden}interact-element{display:contents}#SITE_CONTAINER{position:relative}:root{--one-unit:1vw;--section-max-width:9999px;--spx-stopper-max:9999px;--spx-stopper-min:0px;--browser-zoom:1}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){:root{--safari-sticky-fix:opacity;--experimental-safari-sticky-fix:translateZ(0)}}@supports (container-type:inline-size){:root{--one-unit:1cqw}}[id^=oldHoverBox-]{mix-blend-mode:plus-lighter;transition:opacity .5s,visibility .5s}[data-mesh-id$=inlineContent-gridContainer]:has(>[id^=oldHoverBox-]){isolation:isolate} | |
| 110 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css.map*/</style> | |
| 111 | +<style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css">div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,nav,button,section,header,footer,title{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}textarea,input,select{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif}ol,ul{list-style:none}blockquote,q{quotes:none}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a{cursor:pointer;text-decoration:none}.testStyles{overflow-y:hidden}.reset-button{color:inherit;font:inherit;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;background:0 0;border:0;outline:0;padding:0;line-height:normal;overflow:visible}:focus{outline:none}body.device-mobile-optimized:not(.disable-site-overflow){overflow-x:hidden;overflow-y:scroll}body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER{width:320px;margin-left:auto;margin-right:auto;position:relative;overflow-x:visible}body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling) #SITE_CONTAINER{margin-top:0}body.device-mobile-optimized>*{max-width:100%!important}body.device-mobile-optimized #site-root{overflow:hidden}@supports (overflow:clip){body.device-mobile-optimized #site-root{overflow:clip}}body.device-mobile-non-optimized #SITE_CONTAINER #site-root{overflow:clip}body.device-mobile-non-optimized.fullScreenMode{background-color:#5f6360}body.device-mobile-non-optimized.fullScreenMode #site-root,body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,body.fullScreenMode #WIX_ADS{visibility:hidden}body.fullScreenMode{overflow:hidden!important}body.fullScreenMode.device-mobile-optimized #TINY_MENU{opacity:0;pointer-events:none}body.fullScreenMode-scrollable.device-mobile-optimized{overflow-x:hidden!important;overflow-y:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #site-root,body.fullScreenMode-scrollable.device-mobile-optimized #masterPage{overflow:hidden!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND{height:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout{height:0!important}body.blockSiteScrolling,body.siteScrollingBlocked{width:100%;position:fixed}body.siteScrollingBlockedIOSFix{overflow:hidden!important}body.blockSiteScrolling #SITE_CONTAINER{margin-top:calc(var(--blocked-site-scroll-margin-top)*-1)}#site-root{top:var(--wix-ads-height);min-height:100%;margin:0 auto;position:relative}#site-root img:not([src]){visibility:hidden}#site-root svg img:not([src]){visibility:visible}.auto-generated-link{color:inherit}#SCROLL_TO_TOP,#SCROLL_TO_BOTTOM{height:0}.has-click-trigger{cursor:pointer}.fullScreenOverlay{z-index:1005;justify-content:center;display:flex;position:fixed;top:-60px;bottom:0;left:0;right:0;overflow-y:hidden}.fullScreenOverlay>.fullScreenOverlayContent{margin:0 auto;position:absolute;top:60px;bottom:0;left:0;right:0;overflow:hidden;transform:translateZ(0)}[data-mesh-id$=inlineContent],[data-mesh-id$=centeredContent],[data-mesh-id$=form]{pointer-events:none;position:relative}[data-mesh-id$=-gridWrapper],[data-mesh-id$=-rotated-wrapper]{pointer-events:none}[data-mesh-id$=-gridContainer]>*,[data-mesh-id$=-rotated-wrapper]>*,[data-mesh-id$=inlineContent]>:not([data-mesh-id$=-gridContainer]){pointer-events:auto}.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID{-ms-grid-row:2;grid-area:2/1/3/2;position:relative}#masterPage.mesh-layout{display:-ms-grid;-ms-grid-rows:max-content max-content min-content max-content;-ms-grid-columns:100%;grid-template-rows:max-content max-content min-content max-content;grid-template-columns:100%;justify-content:stretch;align-items:start;display:grid}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~=mobileView],#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-column:1;-ms-grid-row-align:start;-ms-grid-column-align:start}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder{-ms-grid-row:1;grid-area:1/1/2/2}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{-ms-grid-row:3;grid-area:3/1/4/2}#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{width:100%}#masterPage.mesh-layout #PAGES_CONTAINER{align-self:stretch}#masterPage.mesh-layout main#PAGES_CONTAINER{display:block}#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-row:4;grid-area:4/1/5/2}#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERcenteredContent],#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERinlineContent],#masterPage.mesh-layout #SITE_PAGES{height:100%}#masterPage.mesh-layout.desktop>*{width:100%}#masterPage.mesh-layout #SITE_PAGES,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #masterPageinlineContent,#masterPage.mesh-layout #SITE_FOOTER,#masterPage.mesh-layout #SITE_HEADER{position:relative}#masterPage.mesh-layout #SITE_HEADER{grid-area:1/1/2/2}#masterPage.mesh-layout #SITE_FOOTER{grid-area:4/1/5/2}#masterPage.mesh-layout.overflow-x-clip #SITE_HEADER,#masterPage.mesh-layout.overflow-x-clip #SITE_FOOTER{overflow-x:clip}[data-z-counter]{z-index:0}[data-z-counter="0"]{z-index:auto}.wixSiteProperties{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--wst-button-color-fill-primary:rgb(var(--color_48));--wst-button-color-border-primary:rgb(var(--color_49));--wst-button-color-text-primary:rgb(var(--color_50));--wst-button-color-fill-primary-hover:rgb(var(--color_51));--wst-button-color-border-primary-hover:rgb(var(--color_52));--wst-button-color-text-primary-hover:rgb(var(--color_53));--wst-button-color-fill-primary-disabled:rgb(var(--color_54));--wst-button-color-border-primary-disabled:rgb(var(--color_55));--wst-button-color-text-primary-disabled:rgb(var(--color_56));--wst-button-color-fill-secondary:rgb(var(--color_57));--wst-button-color-border-secondary:rgb(var(--color_58));--wst-button-color-text-secondary:rgb(var(--color_59));--wst-button-color-fill-secondary-hover:rgb(var(--color_60));--wst-button-color-border-secondary-hover:rgb(var(--color_61));--wst-button-color-text-secondary-hover:rgb(var(--color_62));--wst-button-color-fill-secondary-disabled:rgb(var(--color_63));--wst-button-color-border-secondary-disabled:rgb(var(--color_64));--wst-button-color-text-secondary-disabled:rgb(var(--color_65));--wst-color-fill-base-1:rgb(var(--color_36));--wst-color-fill-base-2:rgb(var(--color_37));--wst-color-fill-base-shade-1:rgb(var(--color_38));--wst-color-fill-base-shade-2:rgb(var(--color_39));--wst-color-fill-base-shade-3:rgb(var(--color_40));--wst-color-fill-accent-1:rgb(var(--color_41));--wst-color-fill-accent-2:rgb(var(--color_42));--wst-color-fill-accent-3:rgb(var(--color_43));--wst-color-fill-accent-4:rgb(var(--color_44));--wst-color-fill-background-primary:rgb(var(--color_11));--wst-color-fill-background-secondary:rgb(var(--color_12));--wst-color-text-primary:rgb(var(--color_15));--wst-color-text-secondary:rgb(var(--color_14));--wst-color-action:rgb(var(--color_18));--wst-color-disabled:rgb(var(--color_39));--wst-color-title:rgb(var(--color_45));--wst-color-subtitle:rgb(var(--color_46));--wst-color-line:rgb(var(--color_47));--wst-font-style-h2:var(--font_2);--wst-font-style-h3:var(--font_3);--wst-font-style-h4:var(--font_4);--wst-font-style-h5:var(--font_5);--wst-font-style-h6:var(--font_6);--wst-font-style-body-large:var(--font_7);--wst-font-style-body-medium:var(--font_8);--wst-font-style-body-small:var(--font_9);--wst-font-style-body-x-small:var(--font_10);--wst-color-custom-1:rgb(var(--color_13));--wst-color-custom-2:rgb(var(--color_16));--wst-color-custom-3:rgb(var(--color_17));--wst-color-custom-4:rgb(var(--color_19));--wst-color-custom-5:rgb(var(--color_20));--wst-color-custom-6:rgb(var(--color_21));--wst-color-custom-7:rgb(var(--color_22));--wst-color-custom-8:rgb(var(--color_23));--wst-color-custom-9:rgb(var(--color_24));--wst-color-custom-10:rgb(var(--color_25));--wst-color-custom-11:rgb(var(--color_26));--wst-color-custom-12:rgb(var(--color_27));--wst-color-custom-13:rgb(var(--color_28));--wst-color-custom-14:rgb(var(--color_29));--wst-color-custom-15:rgb(var(--color_30));--wst-color-custom-16:rgb(var(--color_31));--wst-color-custom-17:rgb(var(--color_32));--wst-color-custom-18:rgb(var(--color_33));--wst-color-custom-19:rgb(var(--color_34));--wst-color-custom-20:rgb(var(--color_35))}.wix-presets-wrapper{display:contents}.builder-root{box-sizing:border-box}#main_MF .wix-visibility-hidden{visibility:hidden}#main_MF .wix-visibility-collapsed.wix-visibility-collapsed{--l_display:none;display:none}#main_MF .wix-visibility-revealed:after{content:"";box-sizing:border-box;z-index:1;pointer-events:none;border-radius:inherit;background-image:repeating-linear-gradient(-45deg,transparent,transparent 40%,rgba(43,86,114,.5) 40%,rgba(43,86,114,.5) 45%,rgba(255,255,255,.333) 45%,rgba(255,255,255,.333) 50%,transparent 50%);background-size:10px 10px;background-clip:padding-box;border:1px solid rgba(43,86,114,.5);position:absolute;top:0;bottom:0;left:0;right:0} | |
| 112 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css.map*/</style> | |
| 113 | + | |
| 114 | + <meta name="format-detection" content="telephone=no"> | |
| 115 | + <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + <!--pageHtmlEmbeds.head start--> | |
| 123 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head start"></script> | |
| 124 | + | |
| 125 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head end"></script> | |
| 126 | + <!--pageHtmlEmbeds.head end--> | |
| 127 | + | |
| 128 | + | |
| 129 | + <!-- head performance data start --> | |
| 130 | + | |
| 131 | + <!-- head performance data end --> | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + <style id="a11y-contrast"> | |
| 138 | + @media (forced-colors: active) { | |
| 139 | + #SITE_CONTAINER.focus-ring-active | |
| 140 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus, | |
| 141 | + #SITE_CONTAINER.focus-ring-active | |
| 142 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus | |
| 143 | + ~ .wixSdkShowFocusOnSibling { | |
| 144 | + outline: 2px solid CanvasText; | |
| 145 | + outline-offset: 2px; | |
| 146 | + } | |
| 147 | + } | |
| 148 | + </style> | |
| 149 | + | |
| 150 | + | |
| 151 | + <script id="wix-skip-played-animations-setup"> | |
| 152 | + (function() { | |
| 153 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 154 | + if (navEntry && navEntry.type === 'reload') { | |
| 155 | + return; | |
| 156 | + } | |
| 157 | + if ('PageRevealEvent' in window) { | |
| 158 | + window.__pageRevealPromise = new Promise(function(resolve) { | |
| 159 | + window.addEventListener('pagereveal', resolve, { once: true }); | |
| 160 | + }); | |
| 161 | + } else { | |
| 162 | + window.__pageRevealPromise = Promise.resolve(); | |
| 163 | + } | |
| 164 | + })(); | |
| 165 | + </script> | |
| 166 | + | |
| 167 | +<meta http-equiv="X-Wix-Meta-Site-Id" content="39b9882f-9e71-4f93-bb6d-a87166c85cda"> | |
| 168 | +<meta http-equiv="X-Wix-Application-Instance-Id" content="452071c1-a99b-44c2-b686-dd15b11264a3"> | |
| 169 | + | |
| 170 | + <meta http-equiv="X-Wix-Published-Version" content="4"/> | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + <meta http-equiv="etag" content="bug"/> | |
| 175 | + | |
| 176 | +<!-- render-head end --> | |
| 177 | + | |
| 178 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap.2c161780.min.css">.EtmdIW{cursor:pointer}.XWeqiF{opacity:0}.bWoigz{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.HTrn1j{opacity:1}.sAGPNe{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.cCFKrw{opacity:0}.yifJnQ{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.64,0,.78,0)}._mj5qU{opacity:1}.gG6uhp{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.22,1,.36,1)}.k0CnHT{transform:translate(100%)}.URQNsX{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.CCwVTE{transform:translate(0)}.TX_1qK{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(-100%)}.JMRv7x{transform:translate(-100%)}.AOzCGi{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.WzSMGx{transform:translate(0)}.I76Pz6{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(100%)}.bX95uQ{transform:translateY(100%)}.Ogwj62{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.GdyWfW{transform:translateY(0)}.YxqFze{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(-100%)}.NrDww4{transform:translateY(-100%)}.ciVV17{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.BMKrqh{transform:translateY(0)}.jNxMkI{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(100%)}body:not(.responsive) .Y3K28_{overflow-x:clip}:root:active-view-transition .Y3K28_{view-transition-name:page-group}.uvik8H{grid-template-rows:1fr;grid-template-columns:1fr;height:100%;display:grid}.uvik8H>div{grid-area:1/1/2/2;align-self:stretch!important;justify-self:stretch!important}.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}ul.font_100,ol.font_100{color:#080808;font-variant:normal;letter-spacing:normal;margin:0;font-family:"Arial, Helvetica, sans-serif",serif;font-size:10px;font-style:normal;font-weight:400;line-height:normal;text-decoration:none}ul.font_100 li,ol.font_100 li{margin-bottom:12px}ul.wix-list-text-align,ol.wix-list-text-align{list-style-position:inside}ul.wix-list-text-align p,ul.wix-list-text-align h1,ul.wix-list-text-align h2,ul.wix-list-text-align h3,ul.wix-list-text-align h4,ul.wix-list-text-align h5,ul.wix-list-text-align h6,ol.wix-list-text-align p,ol.wix-list-text-align h1,ol.wix-list-text-align h2,ol.wix-list-text-align h3,ol.wix-list-text-align h4,ol.wix-list-text-align h5,ol.wix-list-text-align h6{display:inline}.E28gHm{cursor:pointer}.V9ooqn{clip:rect(0 0 0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){._v6ohL>*>:first-child{vertical-align:top}}@supports (-webkit-touch-callout:none){._v6ohL>*>:first-child{vertical-align:top}}._v6ohL [data-attr-richtext-marker=true]{display:block}._v6ohL [data-attr-richtext-marker=true] table{border-collapse:collapse;width:100%;margin:15px 0}._v6ohL [data-attr-richtext-marker=true] table td{padding:12px;position:relative}._v6ohL [data-attr-richtext-marker=true] table td:after{content:"";opacity:.2;border-bottom:1px solid;border-left:1px solid;position:absolute;inset:0}._v6ohL [data-attr-richtext-marker=true] table tr td:last-child:after{border-right:1px solid}._v6ohL [data-attr-richtext-marker=true] table tr:first-child td:after{border-top:1px solid}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) [class$=rich-text__text],.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div)[class$=rich-text__text]{color:var(--corvid-color,currentColor)}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) span[style*=color]{color:var(--corvid-color,currentColor)!important}.V3wkP4{min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction)}.V3wkP4 .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.V3wkP4 .nzCBBu ul{list-style:inside}.V3wkP4 .nzCBBu li{margin-bottom:12px}.UwkEpO p,.UwkEpO h1,.UwkEpO h2,.UwkEpO h3,.UwkEpO h4,.UwkEpO h5,.UwkEpO h6,.UwkEpO blockquote,.UwkEpO div{letter-spacing:normal;line-height:normal}.JykKzs{min-height:var(--min-height);min-width:var(--min-width)}.JykKzs .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.JykKzs .nzCBBu ol,.JykKzs .nzCBBu ul{letter-spacing:normal;margin-inline-start:.5em;padding-inline-start:1.3em;line-height:normal}.JykKzs .nzCBBu ul{list-style-type:disc}.JykKzs .nzCBBu ol{list-style-type:decimal}.JykKzs .nzCBBu ul ul,.JykKzs .nzCBBu ol ul{line-height:normal;list-style-type:circle}.JykKzs .nzCBBu ol ol ul,.JykKzs .nzCBBu ol ul ul,.JykKzs .nzCBBu ul ol ul,.JykKzs .nzCBBu ul ul ul{line-height:normal;list-style-type:square}.JykKzs .nzCBBu li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.JykKzs .nzCBBu p,.JykKzs .nzCBBu h1,.JykKzs .nzCBBu h2,.JykKzs .nzCBBu h3,.JykKzs .nzCBBu h4,.JykKzs .nzCBBu h5,.JykKzs .nzCBBu h6{margin-block:0;letter-spacing:normal;margin:0;line-height:normal}.JykKzs .nzCBBu a{color:inherit}.N8MGzv,.UwkEpO{word-wrap:break-word;overflow-wrap:break-word;text-align:start;pointer-events:none;min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction);mix-blend-mode:var(--blendMode,normal);text-transform:var(--textTransform,"none");text-shadow:var(--textOutline,0px 0px transparent),var(--textShadow,0px 0px transparent)}.N8MGzv>*,.UwkEpO>*{pointer-events:auto}.N8MGzv li,.UwkEpO li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.N8MGzv ol,.UwkEpO ol,.N8MGzv ul,.UwkEpO ul{letter-spacing:normal;margin-inline:.5em 0;line-height:normal}.N8MGzv:not(.PO9MfV) ol,.UwkEpO:not(.PO9MfV) ol,.N8MGzv:not(.PO9MfV) ul,.UwkEpO:not(.PO9MfV) ul{padding-inline:1.3em 0}.N8MGzv ul,.UwkEpO ul{list-style-type:disc}.N8MGzv ol,.UwkEpO ol{list-style-type:decimal}.N8MGzv ul ul,.UwkEpO ul ul,.N8MGzv ol ul,.UwkEpO ol ul{list-style-type:circle}.N8MGzv ul ul ul,.UwkEpO ul ul ul,.N8MGzv ol ul ul,.UwkEpO ol ul ul,.N8MGzv ul ol ul,.UwkEpO ul ol ul,.N8MGzv ol ol ul,.UwkEpO ol ol ul{list-style-type:square}.N8MGzv p,.UwkEpO p,.N8MGzv h1,.UwkEpO h1,.N8MGzv h2,.UwkEpO h2,.N8MGzv h3,.UwkEpO h3,.N8MGzv h4,.UwkEpO h4,.N8MGzv h5,.UwkEpO h5,.N8MGzv h6,.UwkEpO h6,.N8MGzv blockquote,.UwkEpO blockquote,.N8MGzv div,.UwkEpO div{margin-block:0;margin:0}.N8MGzv a,.UwkEpO a{color:inherit}.PO9MfV li{margin-inline:1.3em 0}.qe3oTb{pointer-events:none;white-space:nowrap;padding:0;overflow:hidden}.TvbeET{display:none}.CNHfeA{width:100%;position:absolute;inset:0}.ZfNvr6{transition:all .2s ease-in;transform:translateY(-100%)}.ICcIQy{transition:all .2s}.xL7MJu{opacity:0;transition:all .2s ease-in}.xL7MJu.Dbjboh{pointer-events:none}.xg8z1A{opacity:1;transition:all .2s}.G6vvJF{width:100%;height:auto;position:relative}.ZgDNL8{width:100%;position:relative}body:not(.device-mobile-optimized) ._c_gnD,:host(:not(.device-mobile-optimized)) ._c_gnD{margin-left:calc((100% - var(--site-width))/2);width:var(--site-width)}.HQtdHX[data-focuscycled=active]{outline:1px solid #0000}.HQtdHX[data-focuscycled=active]:not(:focus-within){outline:2px solid #0000;transition:outline 10ms}.HQtdHX ._c_gnD{position:absolute;inset:0}.w4DepW{direction:var(--direction)}.w4DepW .tN_ggS .re13Ik{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.w4DepW .tN_ggS .re13Ik:last-child{margin-block:0;margin-inline:0}.w4DepW .tN_ggS .re13Ik .twXk19{display:block}.w4DepW .tN_ggS .re13Ik .twXk19 .ZK9snE{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.w4DepW .tN_ggS .re13Ik .twXk19{outline-offset:0;outline:2px solid buttontext}.w4DepW .tN_ggS .re13Ik .twXk19:hover{outline-offset:-2px;outline:3px solid highlight}.w4DepW .tN_ggS .re13Ik .twXk19:focus,.w4DepW .tN_ggS .re13Ik .twXk19:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.w4DepW .tN_ggS{white-space:nowrap;width:100%;height:100%;position:absolute}body.device-mobile-optimized .w4DepW .tN_ggS,:host(.device-mobile-optimized) .w4DepW .tN_ggS{white-space:normal}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.QED8q1{width:100%;height:calc(100% - var(--wix-ads-height));margin-top:var(--wix-ads-height);pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container));grid-template-rows:1fr;grid-template-columns:1fr;display:grid;position:fixed;top:0;left:0}.MswS0Y{pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container))}</style> | |
| 179 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SkipToContentButton].c9649c22.min.css">.BqYkvS{pointer-events:none;z-index:9999;color:#116dff;opacity:0;cursor:pointer;background:#fff;border-radius:24px;width:0;height:0;margin-left:-94px;padding:0 24px;font-family:Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;position:absolute;top:60px;left:50%}.BqYkvS:focus{opacity:1;pointer-events:auto;border:2px solid;width:auto;height:40px}</style> | |
| 180 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[GoogleMap].c573a625.min.css">.DDi8v8 .oD_vT7{position:absolute;inset:0}.ZzH1gE{background:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ZzH1gE .oD_vT7{border-radius:var(--rd,0);top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);display:inline-block;position:absolute;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff,#000);mask-image:radial-gradient(circle,#fff,#000)}.d45pDW .oD_vT7{position:absolute;inset:9px}.d45pDW .BIO33b{background-image:url(https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/media/sloppyframe.3214ce8e.png);background-repeat:no-repeat;position:absolute;inset:0}.d45pDW .tq8JQN{background-position:0 0;bottom:3px;right:3px}.d45pDW .wiMpk0{background-position:100% 100%;top:3px;left:3px}.PhoT72{background-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.PhoT72 .oD_vT7{top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);position:absolute;overflow:hidden}.PhoT72 .Yg0Qgp{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAAaCAYAAADR0BVGAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAACIFJREFUeNrsnOuS2ygQhRuBnWTf/1k3O5aA/QNbJ8enQfJkapMJXeWyrPul+TjdjRzsmgUxvbXpYGaxfTaYTmZ2a597+/5Cn69t2b1NfzWzbzTvrzadYH5q2+O+Uzvunc7lDucU27q4HM85nLwfta1bzeyAeWo9M7O9fZe2foDlxcxy+53bukebLmb2ZmYPM/unffY2f2+ft7Y+/v7etu/bHm3bA/bff/flfZ+5/eZPhk+B6X4NBab7d7/G6kxf8b3gTHc/xO9t4JfdN/nTfWMDX0vNBxP42FdY/qVt9w388Ub+2fd5Ax/v227UVmK7pgjX0O9VavOsrWuOv/Z5CXz0il/zMy7gl+gDD1r+AN/Z22/0zwf42sPM/m4+2Od/Bx9/gM+/0Qf3vZNvsl+yH9pF37P0Tkiik24ETXbKbfIJ4kEVuOn/tOkbNMLeeBM47Y0cLzrnEcHpAp2LUSPb6Nw6TO5tnQOuuztkXye043QnqgQjfrA7LNsBnOhIbwBPXPeN9vFGkEWQ7rDsgPtc6HwOmH8Q1BUUq/gwHD1HrQOf834zNAP5IH8jfBIAMQkfSeAnXwB0CEKEHUIxwu8IAqGvh0IgAvgi7YMBf4Pz79v259KXYQfe4VqbD9xEeyvU2Rn4AT5b7LgLATPT8h18DjvZNwdweA74fGfciOR3BbbDawt0X4ymfxooZ865OWqSp28CYOzQrLQOghj2lgykO91EPgY3IgPnMoKiEQDZQSJsh5AJcN47bVsEmDJArwhFyeoRHbDvn6F5DJxYTSvgeUrRTsJw1nvXF3zvTAc+g6gNlKcCLHaqajqKCArhGMDvsUNHlcnbbrB9FOBmkXGD+ZVg3+9BFp1BcDqxAtsVao+VwMRRRgEfrSRqdhGxFIKX6tzw/vZjJEctZmJIeK/vpYvOGcT3iPTbQNEpOFbRS20UsvYeFIHLob/6vcFDC7C/Sje1kqIt4mFnguFIIT4EYHeC5iHCml0ALgvAsfLmkCM7Sq8IB5sB72y4XO1jrL4DqDbxYw+wKnIKjkhgv0uOeNiEWkyUEooEUITjTbSn+0SBIkRxn4HacRSdSiWVVmF5oXZbB78P6sQPEgeZtgtOOgWVJLbR6HTcCFNOmYUzvpVe7MFn4c4ovOZGmCE3V+giOjASfG8UOkVHLaBjc6NHFXg4gDwEpDBkrSJUzk4eJ4tw1oR6PCj0OURYwdNGDjkKdT8aZL+KfTTIw8VoK5KwCM50It9NQmWaSBNEJ/8eRSgfKIXAsE4OMBOpU+5cCvmuEh4HddKHyIVj7rEQH4zEjseZSqBV56vSPPUVUHr5oBEkgwhnvAQ7XvgB4UIliByOGq2kXI16DXN6lkygG+XldgHOMoDh7oS6nNcxgnUeFIPqBHrLfh0Q1xehGwb5WAy3cX50orc0ACYXMRmMtxP52jBQnnwNnCcsBNUi0kO7KBB5eUvV2WxwnDBQx+qZubBML0DSU49B5D42UUXmm4e/N1JJ2MNGCBU8J6t0Y6tTmVVwLATIQqDEYgbnV7C4pMLk7OT0gggLlv150B0B9qBoTLXHOAjnA8EOgZcItpgzTU6aYKMiaBTV+UDtvjrpnIOiycPJXSJouY4QKAzfBkwpJzo4Cct0ITluE+XofQcnX3DQfgx6g11UnKOjRk1Uy7OTbOaqnVe5O0h1IggLqeAiCjomKsNV3NPL1bdlf5wFBzLoO4eIrriQg+kqDPVZ0KhRACqii0J5qtqAxxYeElec3LqJiE4JjgD82ChC3Qa8MJGnfGqP6YUK4izsDgOaqzF32Z6H5KhjbuLGqyStGr7AYXZ2FGUm1RjsueJbBoWQM+O1FhCXfUS+NduP1d6thbCjoXycEqukNqOjKKMIx9U6r7TfKpaVicLktjdj0xlA/gDLq8ODgo3HsiEUuVLGlXKjB6dOHMdFKdLzUBaz52E43s3NYlkGpVvoeAz8Zct+RZjOwkwj5cltqwNTqcUOQLPnMambPQ9bMnsecqVC3CpEEl8LXg8Pa+NquQm1qQThuwechwkcR5bhogvk+6KTDxjlaxB63lgoVIaBch9cIebKHALdU4orLF722YzBE4TKyqQ0gz2/kKHSbJgbrfZct1BtmOHqcYfZwKNKlEo9I/6m7T0NgDV7K8JIyamL64DDga78cIJQhwzNTMvMgWlxZLval9cbz94WWbbss4Xz3pjZ4rR/VJaqzuCF+QpSal8mVGgVEMuCDSpVlp12HCb34r9jp4laPDO6PRDkuIfBJOtuz4nV4PRyZn5hhC+Uh94EB+Q2uGnLli0biwYj8cHhPKsz9QaQgiRC1py0nOIFg1GNN569JHEmcgzpxM0KJw5U6ILUMIaN8iDm9Fyequx5CXN6P7xBGPpn59yWLVv2OkSLgNZGy6qNx1kmey7AmOk6hopUZ1Ac/f/A6HVb80LvV+S6US5DqU6vis3vT9sg/Ma3dIqNq8kqx+lVopctW/a6FfPHLzMoVfiOOUxeVxV/1Jt9dZAqYAFlE1AObVaomb0Ly6oxODkIJZ25N7KBVOZxVWdyLcuWLft/bVbnUMOIRsMDzXRV20sHjNTj6L8MToHQBj3A6IJHAPYGXHsnulHPVWwVWpYt+4zg5Gq6UTg+Y8aINSbEmNn1Mc71TGX7TM8QJoA9m1Advb1yivzLli37bYDpia96UciFCfCu/n6aP/t/v7M9w5ntgkN3m+QLtgvrLlu27PcAZZiovtG6KhS3GewuRqI/rBNfhOJsOcMsXAQx7yss31q27NOCslyEahhEpK/+s9Nwebx4cbNlKjQOJ06wnjz+UpPLln0uYP6sP2NWbDjzqmL9GQe/sn2dXHh478kuW7bsjwXqVXao4UkvcybUuhi1bNmyZSPb1i1YtmzZsgXKZcuWLVugXLZs2bKPtH8HADJQ9p+EtD02AAAAAElFTkSuQmCC);background-repeat:no-repeat;width:165px;height:26px;position:absolute;bottom:-26px}.PhoT72 .u2ipRh{background-position:0 0;left:-20px}.PhoT72 .JNSeQ8{background-position:100% 0;right:-20px}.tE8VE3{width:100%;height:100%}.TlDFAU{font-size:14px;font-weight:500;line-height:15px}.erPUts{color:#333;font-size:13px;font-weight:400}.dKbVyb{color:var(--wst-links-and-actions-color,#1a73e8);font-size:13px;font-weight:400;text-decoration:underline;display:block}.ug7ltv svg{width:32px;height:32px}.gTl8fV{clip-path:polygon(0 0,0 0,0 0,0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}</style> | |
| 181 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_mobile.a7aaff2a.min.css">.BZjmPL{direction:var(--direction,ltr)}.BZjmPL>ul{box-sizing:border-box;width:100%}.BZjmPL>ul li{display:block}.BZjmPL>ul li>div:focus,.BZjmPL>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.BZjmPL .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);position:relative;-webkit-transform:translateZ(0)}.d2V6sy{display:var(--display);--display:grid;direction:var(--direction,ltr);grid-template-columns:minmax(0,1fr)}.d2V6sy>ul{box-sizing:border-box;width:100%}.d2V6sy>ul li{display:block}.d2V6sy>ul li>div:focus,.d2V6sy>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.d2V6sy .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);min-height:1px;position:relative;-webkit-transform:translateZ(0)}.FWN1UT{--padding-start-lvl1:var(--padding-start,0);--padding-end-lvl1:var(--padding-end,0);--padding-start-lvl2:var(--sub-padding-start,0);--padding-end-lvl2:var(--sub-padding-end,0);--padding-start-lvl3:calc(2*var(--padding-start-lvl2) - var(--padding-start-lvl1));--padding-end-lvl3:calc(2*var(--padding-end-lvl2) - var(--padding-end-lvl1));background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;min-width:100px;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.FWN1UT .keDKhi{cursor:pointer;height:var(--item-height,50px);grid-template-columns:1fr;display:grid;position:relative}.FWN1UT .keDKhi>.j945c8{text-overflow:ellipsis;position:relative}.FWN1UT .keDKhi>.j945c8>.G7GdaI{-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:absolute;inset:0;overflow:hidden}.FWN1UT .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_14,color_14)))}@supports (-webkit-touch-callout:none){.FWN1UT .keDKhi>.j945c8>.G7GdaI{text-decoration:underline #0000}}.FWN1UT.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.FWN1UT.Hp2waC>.keDKhi>.j945c8{grid-area:label}.FWN1UT.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.FWN1UT.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.FWN1UT.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.FWN1UT.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.FWN1UT>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.FWN1UT>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.FWN1UT>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--padding-start-lvl2,0);padding-inline-end:var(--padding-end-lvl2,0)}.FWN1UT>.tFexI9 .tFexI9 .G7GdaI{padding-inline-start:var(--padding-start-lvl3,0);padding-inline-end:var(--padding-end-lvl3,0)}.FWN1UT .DpFF8A{opacity:0;position:absolute}.FWN1UT .G7GdaI{padding-inline-start:var(--padding-start-lvl1,0);padding-inline-end:var(--padding-end-lvl1,0)}.Onlmt7{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.Onlmt7 .keDKhi{cursor:pointer;grid-template-columns:1fr;height:auto;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8{text-overflow:ellipsis;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8>.G7GdaI{padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:relative;overflow:hidden}.Onlmt7 .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_15,color_15)))}.Onlmt7.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.Onlmt7.Hp2waC>.keDKhi>.j945c8{grid-area:label}.Onlmt7.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.Onlmt7.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.Onlmt7.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.Onlmt7.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.Onlmt7>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.Onlmt7>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.Onlmt7>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--sub-padding-start,0);padding-inline-end:var(--sub-padding-end,0)}.Onlmt7 .DpFF8A{opacity:0;position:absolute}.Onlmt7 .G7GdaI{padding-inline-start:var(--padding-start,0);padding-inline-end:var(--padding-end,0)}.WIf5uD .keDKhi{direction:var(--item-depth0-direction);text-align:var(--item-depth0-align,var(--text-align))}.jieHoL .keDKhi{direction:var(--item-depth1-direction);text-align:var(--item-depth1-align,var(--text-align))}.pk6ct0 .keDKhi{direction:var(--item-depth2-direction);text-align:var(--item-depth2-align,var(--text-align))}.Uym66v{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.Uym66v.I_VSKP{opacity:1;visibility:visible}.Uym66v[data-undisplayed=true]{display:none}.Uym66v:not([data-is-mesh]) .a6myrz,.Uym66v:not([data-is-mesh]) .vaRtfC{position:absolute;inset:0}.PuJkmm{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.PuJkmm.nQIUtw{display:none}body.device-mobile-optimized .PuJkmm,:host(.device-mobile-optimized) .PuJkmm{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.nQIUtw,:host(.device-mobile-optimized) .Uym66v.nQIUtw{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.PV8CZu,:host(.device-mobile-optimized) .Uym66v.PV8CZu{height:100vh}body:not(.device-mobile-optimized) .Uym66v.PV8CZu,:host(:not(.device-mobile-optimized)) .Uym66v.PV8CZu{height:100vh}.JssDma.PV8CZu{height:calc(var(--menu-height) - var(--wix-ads-height))}.JssDma.PV8CZu>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.Uym66v.PV8CZu{top:0}.vaRtfC{width:100%;height:100%}.Uym66v{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.GtYgZN{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.GtYgZN.DhNUBc{opacity:1;visibility:visible}.GtYgZN[data-undisplayed=true]{display:none}.GtYgZN:not([data-is-mesh]) .PGRltO,.GtYgZN:not([data-is-mesh]) .ontAlD{position:absolute;inset:0}.bKMmNw{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.bKMmNw.XiExOX{display:none}body.device-mobile-optimized .bKMmNw,:host(.device-mobile-optimized) .bKMmNw{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.XiExOX,:host(.device-mobile-optimized) .GtYgZN.XiExOX{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.u1yVmb,:host(.device-mobile-optimized) .GtYgZN.u1yVmb{height:100vh}body:not(.device-mobile-optimized) .GtYgZN.u1yVmb,:host(:not(.device-mobile-optimized)) .GtYgZN.u1yVmb{height:100vh}.fgXcGP.u1yVmb{height:calc(var(--menu-height) - var(--wix-ads-height))}.fgXcGP.u1yVmb>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.GtYgZN.u1yVmb{top:0}.ontAlD{width:100%;height:100%}.GtYgZN{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.fgXcGP{scrollbar-width:none;overflow-x:hidden;overflow-y:scroll;overflow:-moz-scrollbars-none;-ms-overflow-style:none;position:relative}.fgXcGP::-webkit-scrollbar{width:0;height:0}.ml3dss{display:inherit;height:inherit;width:auto}.qJB7LV{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .ml3dss,body:not(.responsive) .qJB7LV{z-index:var(--above-all-in-container)}.ml3dss.d0L2ow,.qJB7LV.d0L2ow{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.qJB7LV{touch-action:manipulation}}.vlJDcR{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.vlJDcR.d0L2ow{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.Pfl7LL{display:inherit;height:inherit;width:auto}.SOW3kh{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .Pfl7LL,body:not(.responsive) .SOW3kh{z-index:var(--above-all-in-container)}.Pfl7LL.EstcUq,.SOW3kh.EstcUq{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.SOW3kh{touch-action:manipulation}}.xC357X{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.xC357X.EstcUq{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.JJE8Wh{cursor:pointer;border-radius:50%;width:22px;height:22px;transition:all .3s linear;display:block;position:relative}.JJE8Wh:before,.JJE8Wh:after{content:"";background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:5px;margin:auto;position:absolute;inset:0}.JJE8Wh:before{width:22px;height:3px}.JJE8Wh:after{width:22px;height:3px;transition:all .12s linear;transform:rotate(90deg)}.JJE8Wh.EstcUq{transform:rotate(180deg)}.JJE8Wh.EstcUq:before{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.JJE8Wh.EstcUq:after{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(180deg)}.igzAYe{display:inherit;height:inherit;width:auto}.ISBHB0{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .igzAYe,body:not(.responsive) .ISBHB0{z-index:var(--above-all-in-container)}.igzAYe.v_eR1n,.ISBHB0.v_eR1n{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ISBHB0{touch-action:manipulation}}.FVpEn7{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.FVpEn7.v_eR1n{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.vWwHt3{cursor:pointer;flex-direction:column;justify-content:space-between;width:26px;height:21px;transition:transform .33s ease-out;display:flex}.vWwHt3.v_eR1n{transform:rotate(-45deg)}.jECeES{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1.5px;width:100%;height:3px}.jECeES.wjOCYk{width:50%}.jECeES.IgM_eH{transform-origin:100%;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.IgM_eH{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(4px)}.jECeES.Zp0zoK{transform-origin:0;align-self:flex-end;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.Zp0zoK{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(-4px)}.v_eR1n .jECeES.GVKWTt{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wsSrN4{display:inherit;height:inherit;width:auto}.dfqkHk{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wsSrN4,body:not(.responsive) .dfqkHk{z-index:var(--above-all-in-container)}.wsSrN4.n_2AWG,.dfqkHk.n_2AWG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.dfqkHk{touch-action:manipulation}}.XTpFTd{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.XTpFTd.n_2AWG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.voZlI_{width:22px;height:20px;position:absolute}.LhBFsy{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.KMI4iR{width:50%;top:0}.b6pJLW,.sItLyG{width:100%;top:9px}.erfbYp{width:50%;bottom:0}.Os6vNa{left:0}.HryFHb{right:0}.b6pJLW.LhBFsy,.sItLyG.LhBFsy{transform-origin:50%}.KMI4iR.LhBFsy.Os6vNa{transform-origin:0 0}.KMI4iR.LhBFsy.HryFHb{transform-origin:100% 0}.erfbYp.LhBFsy.Os6vNa{transform-origin:0 100%}.erfbYp.LhBFsy.HryFHb{transform-origin:100% 100%}.voZlI_.n_2AWG .KMI4iR.LhBFsy.Os6vNa,.voZlI_.n_2AWG .KMI4iR.LhBFsy.HryFHb,.voZlI_.n_2AWG .erfbYp.LhBFsy.Os6vNa,.voZlI_.n_2AWG .erfbYp.LhBFsy.HryFHb{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.voZlI_.n_2AWG .b6pJLW.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-45deg)scaleX(1)}.voZlI_.n_2AWG .sItLyG.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(45deg)scaleX(1)}.VK1Hr1{display:inherit;height:inherit;width:auto}.PbaYul{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .VK1Hr1,body:not(.responsive) .PbaYul{z-index:var(--above-all-in-container)}.VK1Hr1.sqDofR,.PbaYul.sqDofR{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.PbaYul{touch-action:manipulation}}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.pp3XSB{width:22px;height:20px;margin:auto;position:relative}.Z_qSkN{background-color:rgba(var(--lineColor,var(--color_11,color_11)),var(--alpha-lineColor,1));border-radius:2px;width:100%;height:2px;transition:all .25s ease-in-out;position:absolute;left:0}.hczDnO{margin:auto;top:0;bottom:0}.VmRHI1{bottom:0}.pp3XSB.sqDofR .Z_qSkN{background-color:rgba(var(--lineColorOpen,var(--color_11,color_11)),var(--alpha-lineColorOpen,1))}.pp3XSB.sqDofR .bYgNSB{transform:translateY(10px)translateY(-50%)rotate(-45deg)}.pp3XSB.sqDofR .hczDnO{opacity:0}.pp3XSB.sqDofR .VmRHI1{transform:translateY(-10px)translateY(50%)rotate(45deg)}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_15,color_15)),var(--alpha-bordercolor,1))}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_15,color_15)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_15,color_15)),var(--alpha-bordercolorOpen,1))}.aYkftZ{display:inherit;height:inherit;width:auto}.xFZxP2{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .aYkftZ,body:not(.responsive) .xFZxP2{z-index:var(--above-all-in-container)}.aYkftZ.DJyiS4,.xFZxP2.DJyiS4{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.xFZxP2{touch-action:manipulation}}.uFKDKj{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.uFKDKj.DJyiS4{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.D_1muR{cursor:pointer;width:26px;height:26px}.mV6DGf{opacity:1;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;transition:opacity .5s}.YBeTIR{color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));letter-spacing:5px;font-family:Helvetica-bold;font-size:12px;transition:all .25s;position:absolute;top:50%;left:55%;transform:translate(-50%,-50%)}.g_9F_D,.MMZbiz{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;width:0;height:2px;position:absolute;top:50%;left:50%}.g_9F_D{transition:all .3s;transform:translate(-50%,-50%)rotate(45deg)}.MMZbiz{transition:all .3s .3s;transform:translate(-50%,-50%)rotate(-45deg)}.D_1muR.DJyiS4 .g_9F_D,.D_1muR.DJyiS4 .MMZbiz{opacity:1;width:24px}.D_1muR.DJyiS4 .mV6DGf{opacity:0}.mi7tiY{display:inherit;height:inherit;width:auto}.ajCUJZ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .mi7tiY,body:not(.responsive) .ajCUJZ{z-index:var(--above-all-in-container)}.mi7tiY.WpOYnf,.ajCUJZ.WpOYnf{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ajCUJZ{touch-action:manipulation}}.zBWfOh{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.zBWfOh.WpOYnf{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.VOuQ3v{width:22px;height:22px;display:block;position:relative}.VOuQ3v *,.VOuQ3v :before,.VOuQ3v :after{box-sizing:border-box}.VOuQ3v .Ieo4Vm{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:100%;width:4.4px;height:4.4px;transition:all .2s ease-in-out;position:absolute}.VOuQ3v .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v .Ieo4Vm:nth-of-type(2){transform:translate(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(4){transform:translateY(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(5){transform:translate(8.8px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(6){transform:translate(17.6px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(8){transform:translate(8.8px,17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.VOuQ3v.WpOYnf .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(2){transform:translate(4.4px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(4){transform:translate(4.4px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(6){transform:translate(13.2px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(8){transform:translate(13.2px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.tAZggB{display:inherit;height:inherit;width:auto}.DQvE55{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .tAZggB,body:not(.responsive) .DQvE55{z-index:var(--above-all-in-container)}.tAZggB.Afzcr2,.DQvE55.Afzcr2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.DQvE55{touch-action:manipulation}}.cGMrez{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.cGMrez.Afzcr2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.lPW_G3{width:25px;height:20px;transition:transform .3s ease-in-out}.lPW_G3 span{content:"";background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1px;width:100%;height:3px;transition:width .3s ease-in-out,transform .3s ease-in-out,opacity .3s ease-in-out;display:block;position:relative}.lPW_G3 span:first-child{top:0}.lPW_G3 span:nth-child(2){top:5px}.lPW_G3 span:nth-child(3){top:10px}.Afzcr2.lPW_G3{transform:rotate(180deg)}.Afzcr2.lPW_G3 span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:16px}.Afzcr2.lPW_G3 span:first-child{opacity:0}.Afzcr2.lPW_G3 span:nth-child(2){transform:rotate(45deg)translate(0)translateY(1px)}.Afzcr2.lPW_G3 span:nth-child(3){transform:rotate(-45deg)translate(12px)translateY(1px)}.iT1uR5{display:inherit;height:inherit;width:auto}.H8XzQw{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .iT1uR5,body:not(.responsive) .H8XzQw{z-index:var(--above-all-in-container)}.iT1uR5.xL58zS,.H8XzQw.xL58zS{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.H8XzQw{touch-action:manipulation}}.ph3zmg{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.ph3zmg.xL58zS{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}._2OyzB{width:24px;height:20px;display:block;position:relative}._2OyzB span,._2OyzB span:before,._2OyzB span:after{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:24px;height:2px;margin-top:-1px;position:absolute;top:50%}._2OyzB span:before,._2OyzB span:after{content:"";transition:all .2s}._2OyzB span:before{transform:translateY(-9px)}._2OyzB span:after{transform:translateY(9px)}.xL58zS span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:23px;transform:translate(1px)}.xL58zS span:before{transform-origin:0 100%;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(-35deg)}.xL58zS span:after{transform-origin:0 0;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(35deg)}.ADO5Zm{justify-content:center;align-items:center;display:flex}.nUIszS{transform-origin:100%;opacity:0;transition:all .5s;transform:translate(50%)}.hRUbUe{opacity:1;transform:translate(0%)}._xk4dL{display:inherit;height:inherit;width:auto}.JA1Uo1{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) ._xk4dL,body:not(.responsive) .JA1Uo1{z-index:var(--above-all-in-container)}._xk4dL.suGS6F,.JA1Uo1.suGS6F{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.JA1Uo1{touch-action:manipulation}}.Tnmpzm{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Tnmpzm.suGS6F{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.XYRJOb{flex-direction:column;justify-content:space-around;align-items:center;width:26px;height:26px;transition:transform .2s;display:flex}.wzUA2b{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:30px;height:2px;transition:opacity .2s,transform .2s;transform:rotate(-45deg)}.UEwx1J{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:17px;height:2px;transition:transform .2s,border-color .2s}.UEwx1J.trUHhA{transform:rotate(-45deg)translate(-7px,-3px)}.UEwx1J.rjaPi6{transform:rotate(-45deg)translate(6px,2px)}.XYRJOb.suGS6F .trUHhA{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(9px)rotate(135deg)}.XYRJOb.suGS6F .rjaPi6{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(-9px)rotate(45deg)}.XYRJOb.suGS6F .wzUA2b{opacity:0;transform:rotate(45deg)}.h2hVnU{display:inherit;height:inherit;width:auto}.Iyw1gJ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .h2hVnU,body:not(.responsive) .Iyw1gJ{z-index:var(--above-all-in-container)}.h2hVnU.m_Fqbp,.Iyw1gJ.m_Fqbp{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Iyw1gJ{touch-action:manipulation}}.CnBWJM{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.CnBWJM.m_Fqbp{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.GlYaWf,.KHg340{cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:#0000;width:22px;transition:all .2s ease-in-out;position:relative}.GlYaWf span,.KHg340 span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:#0000;border-radius:2em;width:100%;height:3px;transition:all .2s ease-in-out;position:absolute}.GlYaWf span:nth-child(2),.KHg340 span:nth-child(2){transform:rotate(90deg)}.GlYaWf.m_Fqbp,.m_Fqbp.KHg340{transform:rotate(135deg)}.GlYaWf.m_Fqbp span,.m_Fqbp.KHg340 span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.KHg340{justify-content:center;align-items:center;display:flex}.KHg340 span{left:0}.KHg340 span:nth-child(2){transform:rotate(90deg)}.KHg340.m_Fqbp{transform:rotate(135deg)}.KHg340.m_Fqbp span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.jxFaGF{display:inherit;height:inherit;width:auto}.wu4jpM{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .jxFaGF,body:not(.responsive) .wu4jpM{z-index:var(--above-all-in-container)}.jxFaGF.diaQsa,.wu4jpM.diaQsa{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.wu4jpM{touch-action:manipulation}}.e2jpjV{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.e2jpjV.diaQsa{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.DS2KZ9{cursor:pointer;width:26px;height:20px;display:block;position:relative}.DS2KZ9 div{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:2px;height:2px;transition:transform .45s cubic-bezier(.9,-.6,.3,1.6),width .2s .2s;position:absolute}.DS2KZ9 .MLWS98{transform-origin:50%;width:26px;margin:-2px 0 0;top:11px;left:0}.DS2KZ9 .LTPYyD{transform-origin:0;width:13px;left:0}.DS2KZ9 .VaoqxS{transform-origin:100%;width:18px;bottom:0}.DS2KZ9.diaQsa .MLWS98{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s;transform:rotate(-45deg)translate(0)}.DS2KZ9.diaQsa .LTPYyD{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(4px)rotate(45deg)}.DS2KZ9.diaQsa .VaoqxS{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(9px)rotate(45deg)}.NxdLn2{display:inherit;height:inherit;width:auto}.NvEdZv{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .NxdLn2,body:not(.responsive) .NvEdZv{z-index:var(--above-all-in-container)}.NxdLn2.nq0ZU6,.NvEdZv.nq0ZU6{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.NvEdZv{touch-action:manipulation}}.PSaCAQ{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.PSaCAQ.nq0ZU6{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.IjZy4M{cursor:pointer;position:absolute}.LtWZVJ{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:19px;height:2px;margin-bottom:6px;transition:all .3s cubic-bezier(0,1,.5,1);position:relative}.LtWZVJ:first-child{top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:first-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;left:0;transform:rotate(-45deg)}.LtWZVJ:nth-child(2){opacity:1;right:-5px}.nq0ZU6 .LtWZVJ:nth-child(2){background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;right:0}.LtWZVJ:last-child{margin:0;top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:last-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:-8px;left:0;transform:rotate(45deg)}.nq0ZU6 .LtWZVJ{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wLzWM9{display:inherit;height:inherit;width:auto}.YFvXED{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wLzWM9,body:not(.responsive) .YFvXED{z-index:var(--above-all-in-container)}.wLzWM9.DlhxCV,.YFvXED.DlhxCV{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.YFvXED{touch-action:manipulation}}._G4uuH{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}._G4uuH.DlhxCV{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.rP06EV{width:26px;height:18px}.woYbvh{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:4px;height:2px;transition:all .4s;position:relative}.yawLPy{width:26px;top:0}.DKfMJX{width:26px;top:6px}.Upme0v{width:13px;top:12px}.DlhxCV .yawLPy{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px}.DlhxCV .DKfMJX{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.DlhxCV .Upme0v{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:4px}.fkVx4H{display:inherit;height:inherit;width:auto}.AX0rkT{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .fkVx4H,body:not(.responsive) .AX0rkT{z-index:var(--above-all-in-container)}.fkVx4H.pf7lKG,.AX0rkT.pf7lKG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.AX0rkT{touch-action:manipulation}}.X43m5R{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.X43m5R.pf7lKG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CpmaBD{width:22px;height:22px;margin:auto;position:absolute}.CpmaBD span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:22px;height:2px;transition:transform .2s cubic-bezier(.25,.46,.45,.94),top .2s cubic-bezier(.3,1.4,.7,1) .2s,bottom .2s cubic-bezier(.3,1.4,.7,1) .2s;display:block;position:relative}.CpmaBD span:first-of-type{top:5px}.CpmaBD span:last-of-type{top:13px}.CpmaBD.pf7lKG span{transition:transform .2s cubic-bezier(.25,.46,.45,.94) .2s,top .2s cubic-bezier(.3,1.4,.7,1),bottom .2s cubic-bezier(.3,1.4,.7,1)}.CpmaBD.pf7lKG span:first-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:10px;transform:rotate(45deg)}.CpmaBD.pf7lKG span:last-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;transform:rotate(-45deg)}.L1tNuO{display:inherit;height:inherit;width:auto}.Ae0iFd{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .L1tNuO,body:not(.responsive) .Ae0iFd{z-index:var(--above-all-in-container)}.L1tNuO.tUxMan,.Ae0iFd.tUxMan{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Ae0iFd{touch-action:manipulation}}.Hmm20G{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Hmm20G.tUxMan{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.AuZIx7{width:22px;height:19px;position:absolute}.BQuno6{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:3px;transition:all .25s;position:absolute}.oP04HO{width:50%;top:0}.p_ySCY{width:100%;top:8px}.u6J0wc{width:50%;bottom:0}.P03akj{left:0}.WBsrGG{right:0}.oP04HO.BQuno6.P03akj{transform-origin:0 0}.oP04HO.BQuno6.WBsrGG{transform-origin:100% 0}.u6J0wc.BQuno6.P03akj{transform-origin:0 100%}.u6J0wc.BQuno6.WBsrGG{transform-origin:100% 100%}.AuZIx7.tUxMan .oP04HO.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,2px)rotate(45deg)}.AuZIx7.tUxMan .oP04HO.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,2px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,-1px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,-1px)rotate(45deg)}.AuZIx7.tUxMan .p_ySCY.BQuno6{transform:scaleX(0)}.p2xU2j{display:inherit;height:inherit;width:auto}.tB06Km{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .p2xU2j,body:not(.responsive) .tB06Km{z-index:var(--above-all-in-container)}.p2xU2j.sb2ja2,.tB06Km.sb2ja2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.tB06Km{touch-action:manipulation}}.bSvkl8{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.bSvkl8.sb2ja2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CT0UM6{width:22px;height:20px;position:absolute}.i2Blxa{background-color:rgba(var(--lineColor,var(--color_15,color_15)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.NL9V92{width:100%;top:0}.xp7A7t{width:100%;top:9px}.dMTSgd{width:100%;bottom:0}.NL9V92.i2Blxa{transform-origin:0 0}.dMTSgd.i2Blxa{transform-origin:0 100%}.CT0UM6.sb2ja2 .NL9V92.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,2px)rotate(45deg)}.CT0UM6.sb2ja2 .dMTSgd.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,-1px)rotate(-45deg)}.CT0UM6.sb2ja2 .xp7A7t.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.PzP3Ka{cursor:pointer;opacity:0;visibility:hidden;display:var(--display);--display:flex;transition:visibility 0s .5s,opacity .5s}.PzP3Ka .XdXNO7{width:100%;height:100%;opacity:var(--icon-opacity,1)}.PzP3Ka .XdXNO7 svg{overflow:visible}.z7UpAt{opacity:1;visibility:visible;z-index:var(--above-all-z-index);transition-delay:0s;position:relative}</style> | |
| 182 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VectorImage_VectorButton].8d19a428.min.css">.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}</style> | |
| 183 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextInput].ff8b5cd8.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nbaJII:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nbaJII:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nbaJII.BOzGbm[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;-moz-appearance:none;margin:0}.nbaJII[disabled]{pointer-events:none}.Q1MQrw{min-height:25px;display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);flex-direction:column;position:relative}.Q1MQrw .nuFEsg{height:var(--inputHeight);position:relative}.Q1MQrw .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Q1MQrw .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;max-width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");min-height:var(--inputHeight);border-style:solid;width:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Q1MQrw .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;width:100%}.Q1MQrw .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Q1MQrw .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Q1MQrw .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Q1MQrw:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Q1MQrw.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw .QyrExM{display:none}.Q1MQrw.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Q1MQrw.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Yz8ZCc{display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);justify-content:var(--align,start);flex-direction:column}.Yz8ZCc .nuFEsg{flex-direction:column;flex:1;display:flex;position:relative}.Yz8ZCc .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Yz8ZCc .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");border-style:solid;flex:1;min-height:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Yz8ZCc .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield}.Yz8ZCc .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Yz8ZCc .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Yz8ZCc .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Yz8ZCc:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Yz8ZCc.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc .QyrExM{display:none}.Yz8ZCc.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Yz8ZCc.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 184 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextAreaInput].1476131e.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.fRbOAc{text-align:var(--align);direction:var(--direction)}.fRbOAc .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);min-width:100%;max-width:100%;height:var(--inputHeight);direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");margin:0;padding-top:.75em;display:block;overflow-y:auto;box-sizing:border-box!important}.fRbOAc .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .fRbOAc .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.fRbOAc .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.fRbOAc .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.fRbOAc .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.fRbOAc:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.fRbOAc.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc .P3lL3X{display:none}.fRbOAc.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.fRbOAc.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.YbkIHV{display:var(--display);--display:flex;text-align:var(--align);direction:var(--direction);flex-direction:column}.YbkIHV .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;width:100%;height:100%;direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");flex:1;margin:0;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);overflow-y:auto;box-sizing:border-box!important}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .YbkIHV .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.YbkIHV .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.YbkIHV .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.YbkIHV .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.YbkIHV .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.YbkIHV:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.YbkIHV.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV .P3lL3X{display:none}.YbkIHV.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.YbkIHV.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 185 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInput].2af36bd9.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}.alMCqG{opacity:0;pointer-events:none;justify-content:center;width:100%;height:0;display:flex}.vkQCnw{max-width:0;max-height:0;overflow:hidden}.l5LWAe .qKjd3E,.l5LWAe .Hae_iI:invalid{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.qa3D4M .Hae_iI:disabled{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.qa3D4M{display:var(--display);--display:flex;flex-direction:column}.qa3D4M .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight)}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .qa3D4M .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.qa3D4M .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.qa3D4M .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.qa3D4M .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}.qa3D4M .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.qa3D4M .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.qa3D4M .Hae_iI:disabled+.R8pbpf{border:none}.qa3D4M .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.qa3D4M .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.nYCc7p{display:var(--display);--display:flex;flex-direction:column}.nYCc7p .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight);border-width:1px 0;border-color:#0003}.nYCc7p .Hae_iI:hover:not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nYCc7p .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nYCc7p .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nYCc7p .Hae_iI:focus{border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.nYCc7p .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.nYCc7p .Hae_iI:disabled+.R8pbpf{border:none}.nYCc7p .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.nYCc7p .UuIgyh{flex:1;position:relative}.nYCc7p .R8pbpf{border-style:solid;border-color:#0003;border-width:var(--arrowBorderWidth,0)}.l5LWAe .Hae_iI:invalid,.l5LWAe .qKjd3E{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.nYCc7p .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.uvl2Tw{text-align:var(--align);text-align-last:var(--align);direction:var(--direction)}.UuIgyh{direction:var(--inputDirection)}.Hae_iI{direction:var(--inputDirection);text-align-last:var(--inputAlign,"inherit");border-radius:var(--corvid-border-radius,var(--rd,5px));-webkit-appearance:none;-moz-appearance:none;box-shadow:var(--shd,0 0 0 #0000);background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_8,color_8)),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,136,136,136)));cursor:pointer;text-overflow:ellipsis;white-space:nowrap;font:var(--fnt);border-style:solid;margin:0;padding-inline-start:var(--textPaddingInput_start);padding-inline-end:var(--textPaddingInput_end);display:block;position:relative}.Hae_iI option{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.Hae_iI option.QfNCKR{color:rgb(var(--txt2,var(--color_15,color_15)));display:none}.Hae_iI.ztWMYz{color:rgb(var(--txt_placeholder,136,136,136));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Hae_iI::placeholder{color:rgb(var(--txt_placeholder,136,136,136))}.Hae_iI:-moz-focusring{color:#0000;text-shadow:0 0 #000}.Hae_iI::-ms-expand{display:none}.Hae_iI:focus::-ms-value{background:0 0}.Hae_iI:disabled+.R8pbpf .ue5GsJ{fill:rgb(var(--txtd,255,255,255))}.R8pbpf{pointer-events:none;top:0;bottom:0;box-sizing:border-box;height:inherit;align-items:center;padding-left:20px;padding-right:20px;display:flex;position:absolute;inset-inline-start:var(--arrowInsetInlineStart);inset-inline-end:var(--arrowInsetInlineEnd)}.R8pbpf .XiOJeV{width:12px}.R8pbpf .XiOJeV .ue5GsJ{height:100%;fill:rgba(var(--arrowColor,var(--color_12,color_12)),var(--alpha-arrowColor,1))}.R8pbpf .XiOJeV.xlNOHs{transform:rotate(180deg)}.lo03zG{display:none}.VYqX7C .lo03zG{font:var(--fntlbl);text-align:var(--labelAlign,"inherit");direction:var(--labelDirection);color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.DCgvoa .lo03zG:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Y_w4j4{display:var(--display);--display:flex;flex-direction:column}.Y_w4j4 .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI{box-sizing:border-box;flex:1;align-items:center;width:100%;display:flex}.Y_w4j4 .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Y_w4j4 .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .Y_w4j4 .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.Y_w4j4 .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.Y_w4j4 .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf{border:none}</style> | |
| 186 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_Default].24db2c41.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 187 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LanguageSelector].1814237c.min.css">.d53IyJ .CjkVyx>button,.d53IyJ .drWYz5 .SVOqp3,.drWYz5 .d53IyJ .SVOqp3,.d53IyJ .drWYz5 .clBgzu,.drWYz5 .d53IyJ .clBgzu{justify-content:flex-start}.kyRJB9 .CjkVyx>button,.kyRJB9 .drWYz5 .SVOqp3,.drWYz5 .kyRJB9 .SVOqp3,.kyRJB9 .drWYz5 .clBgzu,.drWYz5 .kyRJB9 .clBgzu{justify-content:center}.OIbSKK .CjkVyx>button,.OIbSKK .drWYz5 .SVOqp3,.drWYz5 .OIbSKK .SVOqp3,.OIbSKK .drWYz5 .clBgzu,.drWYz5 .OIbSKK .clBgzu{direction:rtl}.CjkVyx .z6NAhm img,.drWYz5 .vDrjru .gEOfRC img,.drWYz5 .clBgzu .gEOfRC img{height:var(--iconSize);display:block}.drWYz5 .SVOqp3.tJr0E9,.CjkVyx>button:hover,.drWYz5 .SVOqp3:hover,.drWYz5 .clBgzu:hover{color:rgb(var(--itemTextColorHover,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorHover,var(--color_4,color_4)),var(--alpha-backgroundColorHover,1))}.drWYz5 .SVOqp3.tJr0E9 path,.CjkVyx>button:hover path,.drWYz5 .SVOqp3:hover path,.drWYz5 .clBgzu:hover path{fill:rgb(var(--itemTextColorHover,var(--color_1,color_1)))}.CjkVyx>button:active,.drWYz5 .SVOqp3:active,.drWYz5 .clBgzu:active,.CjkVyx>button.nOw6jW,.drWYz5 .nOw6jW.SVOqp3,.drWYz5 .nOw6jW.clBgzu{color:rgb(var(--itemTextColorActive,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorActive,var(--color_4,color_4)),var(--alpha-backgroundColorActive,1));cursor:default}.CjkVyx>button:active path,.drWYz5 .SVOqp3:active path,.drWYz5 .clBgzu:active path,.CjkVyx>button.nOw6jW path,.drWYz5 .nOw6jW.SVOqp3 path,.drWYz5 .nOw6jW.clBgzu path{fill:rgb(var(--itemTextColorActive,var(--color_1,color_1)))}.xDaLqh{width:var(--width);height:100%}body.device-mobile-optimized .xDaLqh,:host(.device-mobile-optimized) .xDaLqh{display:var(--display);--display:table}.xDaLqh.uEjKHu{opacity:.38}.xDaLqh.uEjKHu *,.xDaLqh.uEjKHu:active{pointer-events:none}.drWYz5 .SVOqp3,.drWYz5 .clBgzu{height:calc(var(--height) - var(--borderWidth,1px)*2);align-items:center;display:flex}.drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .clBgzu .YvJYK8{line-height:0}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{position:absolute;right:0}.OIbSKK .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .OIbSKK .SVOqp3 .YvJYK8,.OIbSKK .drWYz5 .clBgzu .YvJYK8,.drWYz5 .OIbSKK .clBgzu .YvJYK8,.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{margin:0 20px 0 14px}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8,.d53IyJ .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .d53IyJ .SVOqp3 .YvJYK8,.d53IyJ .drWYz5 .clBgzu .YvJYK8,.drWYz5 .d53IyJ .clBgzu .YvJYK8{margin:0 14px 0 20px}.d53IyJ .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .d53IyJ .SVOqp3 .GZ9kig,.d53IyJ .drWYz5 .clBgzu .GZ9kig,.drWYz5 .d53IyJ .clBgzu .GZ9kig,.OIbSKK .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .OIbSKK .SVOqp3 .GZ9kig,.OIbSKK .drWYz5 .clBgzu .GZ9kig,.drWYz5 .OIbSKK .clBgzu .GZ9kig{flex-grow:1}.kyRJB9 .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .kyRJB9 .SVOqp3 .GZ9kig,.kyRJB9 .drWYz5 .clBgzu .GZ9kig,.drWYz5 .kyRJB9 .clBgzu .GZ9kig{flex-shrink:0;width:20px}.drWYz5 .SVOqp3 svg,.drWYz5 .clBgzu svg{width:12px;height:auto}.drWYz5 .SVOqp3 path,.drWYz5 .clBgzu path{fill:rgb(var(--itemTextColor,var(--color_9,color_9)))}.drWYz5 .vDrjru,.drWYz5 .clBgzu{border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));overflow:hidden}.drWYz5 .vDrjru .gEOfRC,.drWYz5 .clBgzu .gEOfRC{margin:0 -6px 0 14px}.kyRJB9 .drWYz5 .vDrjru .gEOfRC,.drWYz5 .kyRJB9 .vDrjru .gEOfRC,.kyRJB9 .drWYz5 .clBgzu .gEOfRC,.drWYz5 .kyRJB9 .clBgzu .gEOfRC{margin:0 4px}.OIbSKK .drWYz5 .vDrjru .gEOfRC,.drWYz5 .OIbSKK .vDrjru .gEOfRC,.OIbSKK .drWYz5 .clBgzu .gEOfRC,.drWYz5 .OIbSKK .clBgzu .gEOfRC{margin:0 14px 0 -6px}.xDaLqh{height:100%}.drWYz5{cursor:pointer;width:var(--width);font:var(--itemFont,var(--font_0));color:rgb(var(--itemTextColor,var(--color_9,color_9)));height:100%;position:relative}.drWYz5 *{box-sizing:border-box}.drWYz5 .clBgzu{z-index:1;height:100%;position:relative}.FDTMKK.drWYz5 .clBgzu{display:none!important}.drWYz5 .yHM59W{text-overflow:ellipsis;white-space:nowrap;margin:0 0 0 14px;overflow:hidden}.kyRJB9 .drWYz5 .yHM59W{margin:0 4px}.OIbSKK .drWYz5 .yHM59W{margin:0 14px 0 0}.drWYz5 .vDrjru{z-index:1;min-width:100%;max-height:calc(var(--height)*5.5);flex-direction:column;display:flex;position:absolute;overflow-y:auto}.drWYz5 .vDrjru:not(.jLVp_T){--itemBorder:1px 0 0;top:0}.drWYz5 .vDrjru.jLVp_T{--itemBorder:0 0 1px;flex-direction:column-reverse;bottom:0}.FDTMKK.drWYz5 .vDrjru svg{transform:rotate(180deg)}.drWYz5.FDTMKK{z-index:47}.drWYz5:not(.FDTMKK) .vDrjru{display:none}.drWYz5 .SVOqp3{flex-shrink:0}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .drWYz5 .SVOqp3:focus{outline-offset:1px;outline-offset:-2px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.drWYz5 .SVOqp3:focus{box-shadow:none;outline-offset:-3px!important;outline:3px solid highlight!important}}.drWYz5 .SVOqp3:not(:first-child){--force-state-metadata:false;border-width:var(--itemBorder);border-style:solid;border-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.Q0JjLQ{height:100%}body.device-mobile-optimized .Q0JjLQ,:host(.device-mobile-optimized) .Q0JjLQ{width:100%;display:table}.CjkVyx{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);height:100%;color:rgb(var(--itemTextColor,var(--color_9,color_9)));border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);font:var(--itemFont,var(--font_0));display:flex}.CjkVyx,.CjkVyx *{box-sizing:border-box}.CjkVyx>button{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));height:100%;color:inherit;cursor:pointer;font:inherit;flex:auto;align-items:center;display:flex}.CjkVyx>button:not(:first-child){--force-state-metadata:false;border-left-style:solid;border-left-width:1px;border-left-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.CjkVyx>button:first-child,.CjkVyx>button:last-child{border-radius:var(--borderRadius,5px)}.CjkVyx>button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.CjkVyx>button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.OIbSKK .CjkVyx .z6NAhm{margin:0 14px 0 -6px}.kyRJB9 .CjkVyx .z6NAhm{margin:0 4px}.d53IyJ .CjkVyx .z6NAhm{margin:0 -6px 0 14px}.CjkVyx ._L5t7V{margin:0 14px}.kyRJB9 .CjkVyx ._L5t7V{margin:0 4px}._1Ry_8 select{opacity:0;z-index:1;width:100%;height:100%;position:absolute;top:0;left:0}._1Ry_8 .XDBTy_{display:none}</style> | |
| 188 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SiteButton_WrappingButton].339c1169.min.css">.ZhVEJq{touch-action:manipulation}.PoVCDy{text-align:initial;box-sizing:border-box;align-items:center;justify-content:var(--label-align);width:max-content;min-width:100%;display:flex}@media (forced-colors:active){.PoVCDy{outline-offset:0px;outline:2px solid buttontext}.PoVCDy:hover{outline-offset:1px;outline:3px solid highlight}.PoVCDy:focus,.PoVCDy:focus-visible{outline-offset:1px;outline:3px solid highlight!important}[aria-disabled=true] .PoVCDy{outline:none}}.PoVCDy:before{content:"";max-width:var(--margin-start,0px);flex-grow:1;align-self:stretch}.PoVCDy:after{content:"";max-width:var(--margin-end,0px);flex-grow:1;align-self:stretch}.lIkFMb{display:var(--display);--display:grid;grid-template-columns:minmax(0,1fr)}.lIkFMb .PoVCDy{border-radius:var(--corvid-border-radius,var(--rd,0));transition:var(--trans1,border-color .4s ease 0s,background-color .4s ease 0s);box-shadow:var(--shd,0 1px 4px #0009);padding-left:var(--horizontalPadding,0);padding-right:var(--horizontalPadding,0);padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);width:auto;position:relative}.lIkFMb .PoVCDy:before{width:var(--margin-start,0px);flex-shrink:0}.lIkFMb .PoVCDy:after{width:var(--margin-end,0px);flex-shrink:0}.lIkFMb .Gf1CuA{font:var(--fnt,var(--font_5));transition:var(--trans2,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));position:relative}.lIkFMb[aria-disabled=false] .PoVCDy{background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17,color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)))var(--corvid-border-width,var(--brw,0));cursor:pointer!important}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .PoVCDy,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .Gf1CuA,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .PoVCDy,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .Gf1CuA,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}.lIkFMb[aria-disabled=true] .PoVCDy{background-color:var(--corvid-disabled-background-color,rgba(var(--bgd,204,204,204),var(--alpha-bgd,1)));border-color:var(--corvid-disabled-border-color,rgba(var(--brdd,204,204,204),var(--alpha-brdd,1)))}.lIkFMb[aria-disabled=true] .Gf1CuA{color:var(--corvid-disabled-color,rgb(var(--txtd,255,255,255)))}.lIkFMb .Gf1CuA{text-align:var(--label-text-align)}</style> | |
| 189 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VerticalLine_VerticalSolidLine].81222752.min.css">.n8bAtI .zACo20{border-left:var(--lnw,3px)solid rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));height:100%}</style> | |
| 190 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LinkBar_Responsive].9d761e03.min.css">.eAOB3n{direction:var(--direction)}.eAOB3n .tDHQQD .VGXFRO{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.eAOB3n .tDHQQD .VGXFRO:last-child{margin-block:0;margin-inline:0}.eAOB3n .tDHQQD .VGXFRO .FvIvPq{display:block}.eAOB3n .tDHQQD .VGXFRO .FvIvPq .IKlnHc{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.eAOB3n .tDHQQD .VGXFRO .FvIvPq{outline-offset:0;outline:2px solid buttontext}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:hover{outline-offset:-2px;outline:3px solid highlight}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus,.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.eAOB3n{display:var(--display);--display:initial;width:-moz-fit-content;width:fit-content}.eAOB3n .tDHQQD{flex-direction:var(--flex-direction);display:flex}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}</style> | |
| 191 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_menu.d7f69225.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.umBpNq{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.umBpNq:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.umBpNq:not(:disabled):hover,.umBpNq:not(:disabled)[aria-pressed=true],.umBpNq:not(:disabled)[aria-selected=true],.umBpNq:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.umBpNq:not(:disabled):focus,.umBpNq:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.umBpNq.b5wzzG:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.umBpNq.IdBKRQ:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.umBpNq:hover,.umBpNq [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.umBpNq.olGtjp:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.umBpNq.H4kLBj:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.umBpNq:disabled,.umBpNq [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.umBpNq.jRfRxf:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.umBpNq.yNUpJa:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.xuJAxK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.umBpNq.EOdpK9:not(:hover):not(:disabled) .xuJAxK{color:var(--corvid-color,var(--color))}.umBpNq:hover .xuJAxK,.umBpNq [data-preview=hover] .xuJAxK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.umBpNq.wCtkkB:hover:not(:disabled) .xuJAxK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.umBpNq:disabled .xuJAxK,.umBpNq [data-preview=disabled] .xuJAxK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.umBpNq.GsVIhZ:disabled:not(:hover) .xuJAxK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.wVQcpq{box-sizing:border-box;color:#000;text-decoration:none}.NZHz_8{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.GvoWb8{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.umBpNq.LwoP3t:not(:hover):not(:disabled) .GvoWb8{fill:var(--corvid-icon-color,var(--icon-color))}.umBpNq:hover .GvoWb8,.umBpNq [data-preview=hover] .GvoWb8{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.umBpNq.Sbl9_q:hover:not(:disabled) .GvoWb8{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.umBpNq:disabled .GvoWb8,.umBpNq [data-preview=disabled] .GvoWb8{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.umBpNq.ET2QWr:disabled:not(:hover) .GvoWb8{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.GvoWb8>span,.GvoWb8 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.GvoWb8,.GvoWb8 svg,.GvoWb8 svg *{fill:currentColor!important;stroke:currentColor!important}}.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}.gDZ5xr{border-radius:var(--overflow-wrapper-border-radius)}.ZBf0K1{opacity:var(--hamburger-menu-container-initial-opacity)}.ZBf0K1>*{transform:var(--hamburger-menu-container-initial-transform)}.ZBf0K1[data-animation-name=revealFromRight]{clip-path:inset(0)}.ZBf0K1[data-animation-name=revealFromRight]>*{transition:transform .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterActive]>*,.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterDone]>*{transform:translate(0)}.ZBf0K1[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterActive],.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.fy6eJk{--container-overflow-y:hidden}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1{clip-path:inset(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1>*{transition:transform .4s cubic-bezier(.645,.045,.355,1);transform:translate(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=fadeIn]:checked) .ZBf0K1{opacity:1;transition:opacity .4s cubic-bezier(.645,.045,.355,1)}[data-prehydration]:has([data-hamburger-toggle]:checked) .ZBf0K1{z-index:2;position:relative}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1{opacity:1}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1>*{transform:translate(0)}.HamburgerMenuContainer502174924__root{-archetype:paintBox;box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.Qkigz2{box-sizing:border-box;top:0;background:var(--background);border:var(--border);border-radius:var(--border-radius);width:100%;height:100%;box-shadow:var(--box-shadow);position:absolute;inset-inline-start:0}.NxO5nt{flex-direction:var(--container-flex-direction);flex-grow:var(--menu-items-flex-grow);align-items:center;gap:var(--menu-items-main-axis-gap);flex-wrap:nowrap;display:flex}.fYThT1{height:var(--menu-item-wrapper-height);display:var(--item-wrapper-display);width:var(--item-wrapper-width);justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow)}.FBAIyH{width:var(--item-width);box-sizing:border-box;align-items:center;height:100%;display:flex;position:relative}.FBAIyH a{color:inherit}.FBAIyH.QFOPOz{border-left:var(--item-border-left);border-right:var(--item-border-right);border-radius:var(--item-border-radius);padding-left:var(--item-padding-left,var(--item-horizontal-padding));padding-right:var(--item-padding-right,var(--item-horizontal-padding))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8{background:var(--item-hover-background,var(--item-background));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow));border-top:var(--item-hover-border-top,var(--item-border-top));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH.QFOPOz,.FBAIyH[data-interactive=true]:hover.QFOPOz,.FBAIyH[data-preview=hover].QFOPOz,.FBAIyH.BjD2X8.QFOPOz{border-left:var(--item-hover-border-left,var(--item-border-left));border-right:var(--item-hover-border-right,var(--item-border-right));border-radius:var(--item-hover-border-radius,var(--item-border-radius))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .ijO_Jr,.FBAIyH[data-interactive=true]:hover .ijO_Jr,.FBAIyH[data-preview=hover] .ijO_Jr,.FBAIyH.BjD2X8 .ijO_Jr{color:var(--item-hover-color,var(--item-color));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration));text-shadow:var(--item-hover-text-outline,var(--item-text-outline)),var(--item-hover-text-shadow,var(--item-text-shadow));background-color:var(--item-hover-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH path,.FBAIyH[data-interactive=true]:hover path,.FBAIyH[data-preview=hover] path,.FBAIyH.BjD2X8 path{fill:var(--item-hover-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH[data-selected],.FBAIyH[data-preview=selected],.FBAIyH.aH0Njg{background:var(--item-selected-background,var(--item-background));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow));border-top:var(--item-selected-border-top,var(--item-border-top));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom))}.FBAIyH[data-selected].QFOPOz,.FBAIyH[data-preview=selected].QFOPOz,.FBAIyH.aH0Njg.QFOPOz{border-left:var(--item-selected-border-left,var(--item-border-left));border-right:var(--item-selected-border-right,var(--item-border-right));border-radius:var(--item-selected-border-radius,var(--item-border-radius))}.FBAIyH[data-selected] .ijO_Jr,.FBAIyH[data-preview=selected] .ijO_Jr,.FBAIyH.aH0Njg .ijO_Jr{color:var(--item-selected-color,var(--item-color));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration));text-shadow:var(--item-selected-text-outline,var(--item-text-outline)),var(--item-selected-text-shadow,var(--item-text-shadow));background-color:var(--item-selected-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}.FBAIyH[data-selected] path,.FBAIyH[data-preview=selected] path,.FBAIyH.aH0Njg path{fill:var(--item-selected-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH>a:before{content:"";position:absolute;inset:0}@media (forced-colors:active){.FBAIyH{outline-offset:-1px;outline:2px solid buttontext}.FBAIyH .RXCM8H{color:buttontext}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8,.FBAIyH[data-selected],.FBAIyH[data-preview=selected]{outline-offset:-2px;outline:3px solid highlight}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .RXCM8H,.FBAIyH[data-interactive=true]:hover .RXCM8H,.FBAIyH[data-preview=hover] .RXCM8H,.FBAIyH.BjD2X8 .RXCM8H,.FBAIyH[data-selected] .RXCM8H,.FBAIyH[data-preview=selected] .RXCM8H{color:highlight}.FBAIyH:focus-within{outline-offset:-2px!important;outline:3px solid highlight!important}.FBAIyH:focus-within .RXCM8H{color:highlight}.FBAIyH>a:focus,.FBAIyH>a:focus-visible{outline:none!important}.FBAIyH .RXCM8H:focus,.FBAIyH .RXCM8H:focus-visible{outline-offset:1px!important;outline:3px solid highlight!important}}.ijO_Jr{direction:var(--item-direction);background-color:var(--item-text-highlight);white-space:nowrap}.rpHatU{--computed-anchor:var(--anchor,var(--dropdown-anchor));--computed-align:var(--align,var(--dropdown-align));--computed-space-above:var(--space-above,var(--dropdown-space-above));--computed-horizontal-margin:var(--horizontal-margin,var(--dropdown-horizontal-margin));--before-el-top:calc(-1*var(--computed-space-above));visibility:hidden;z-index:var(--above-all-z-index);margin-top:var(--computed-space-above)!important;inset:auto!important;left:var(--dropdown-left)!important;display:none!important;position:absolute!important}.rpHatU:before{content:"";height:var(--computed-space-above);top:var(--before-el-top);width:100%;display:block;position:absolute}.rpHatU[data-open=true]{visibility:visible}.NxO5nt[data-open=calculating] .rpHatU,.NxO5nt[data-open=true] .rpHatU{display:grid!important}.RXCM8H{cursor:pointer;display:var(--item-icon-display,flex)}.RXCM8H svg{height:var(--item-icon-size);width:var(--item-icon-size)}.RXCM8H path{fill:var(--item-icon-color,currentcolor)}.RXCM8H.wWora8:before{content:"";position:absolute;inset:0}.RXCM8H.G_xd9z{display:var(--sr-only-item-icon-display,flex);clip:rect(0 0 0 0);clip-path:inset(50%);position:absolute}.RXCM8H.G_xd9z:focus,.RXCM8H.G_xd9z:active{clip-path:unset;position:static}.kbbiAh[data-open]{transform:rotate(-180deg)}.iincGk{display:var(--vertical-expand-collapse-display,var(--item-icon-display,flex))}.RXCM8H:not(.wWora8):not(.G_xd9z){position:relative}.RXCM8H:not(.wWora8):before{content:"";height:max(100%,24px);width:max(var(--item-icon-size),24px);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@media (forced-colors:active){.RXCM8H,.RXCM8H svg,.RXCM8H svg *,.RXCM8H path{fill:currentColor!important;stroke:currentColor!important}}.JFWRCg{display:var(--horizontal-menu-dropdown-display,block)}.lmsYvh{display:var(--vertical-menu-dropdown-display);margin-top:calc(var(--menu-items-main-axis-gap,0)*-1);width:100%}.t_wvYI{--computed-space-above:var(--space-above,var(--dropdown-space-above));visibility:var(--vertical-dropdown-visibility);height:var(--vertical-dropdown-height);margin-top:var(--vertical-dropdown-height,var(--computed-space-above))!important}.Rfl5du .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}.BDrALc{display:var(--divider-display,none);border-left:var(--horizontal-menu-item-divider,none);border-top:var(--vertical-menu-item-divider,none);align-self:stretch}.NxO5nt:last-child .BDrALc{display:none}.jGiW2t{display:contents}.twZzaW{display:none}.WCS58T{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}[data-prehydration] [data-submenu-toggle]:checked~.lmsYvh .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}[data-prehydration] .jGiW2t{z-index:1;display:flex;position:relative}[data-prehydration] .jGiW2t .RXCM8H{pointer-events:none}[data-prehydration] .twZzaW{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}[data-prehydration] .twZzaW:before{content:"";min-width:44px;min-height:44px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}[data-prehydration] [data-submenu-toggle]:checked~.fYThT1 .kbbiAh{transform:rotate(-180deg)}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=screen]{visibility:visible;left:var(--computed-horizontal-margin)!important;width:calc(100vw - 2*var(--computed-horizontal-margin))!important;display:grid!important;position:fixed!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuStretched]{visibility:visible;width:100%!important;display:grid!important;left:0!important}[data-prehydration] .NxO5nt:hover{anchor-name:--ee-hovered-menu-item}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth]{visibility:visible;display:grid!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{left:0!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:0!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:50%!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:0!important}@supports (anchor-name:--a){[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{width:max-content!important;min-width:anchor-size(--ee-hovered-menu-item width)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=start],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:anchor(--ee-hovered-menu-item left)!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=center],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:anchor(--ee-hovered-menu-item center)!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=end],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:anchor(--ee-hovered-menu-item right)!important}}.cVnJ7u{justify-content:var(--item-text-align);background:var(--item-background);box-shadow:var(--item-box-shadow);border-top:var(--item-border-top);border-bottom:var(--item-border-bottom);padding-top:var(--item-padding-top,var(--item-vertical-padding));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding));gap:var(--spacing-between-label-and-dropdown-icon)}.GPIJZi{font:var(--item-font,font_6);color:var(--item-color);text-decoration-line:var(--item-text-decoration);text-transform:var(--item-text-transform);text-shadow:var(--item-text-outline),var(--item-text-shadow);letter-spacing:var(--item-letter-spacing);line-height:var(--item-line-height)}.Y4Cdvx [data-part=menu-item]{--underline-scale:scaleX(0);--wash-scale:scaleX(0);--circle-clip-path:circle(0%);--dropdown-icon-transform:rotate(0);--bullet-translate:translateX(-150%);--bullet-opacity:0;--wave-tarnslate:scaleY(0)}.Y4Cdvx [data-part=menu-item]:not([data-animation-name=none]) [data-part=dropdown-icon]{transition-property:transform;transition-duration:.4s}.Y4Cdvx [data-part=menu-item] [data-part=label]:after,.Y4Cdvx [data-part=menu-item] [data-part=dropdown-item-label]:after{content:"";width:100%;height:1px;display:block;display:var(--item-label-underline-display,block);background-color:currentColor;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item] [data-part=label]:before{content:"•"/"";display:var(--item-label-bullet-display,inline-block);opacity:0;padding-inline-end:3px}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:after{display:var(--item-selected-label-underline-display,block);transform:scaleX(1)}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:before{opacity:1}.Y4Cdvx [data-part=menu-item][data-open=true],.Y4Cdvx [data-part=menu-item][data-animation-state=enterActive],.Y4Cdvx [data-part=menu-item][data-animation-state=enterDone]{--underline-scale:scaleX(1);--wash-scale:scaleX(1);--circle-clip-path:circle(100%);--dropdown-icon-transform:rotate(-540deg);--bullet-translate:translateX(0%);--bullet-opacity:1;--wave-tarnslate:scaleY(1.5)}.Y4Cdvx [data-part=menu-item] [data-selected]{--underline-scale:scaleX(1);--wash-scale:scaleX(0);--bullet-translate:translateX(0%);--bullet-opacity:1}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=label]:after{transform-origin:0;transform:var(--underline-scale);transition:transform .3s}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item-label]:after{transform-origin:0;transition-property:transform;transition-duration:.3s;display:block;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item]:hover [data-part=dropdown-item-label]:after{transform:scaleX(1)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);transform-origin:0;transform:var(--wash-scale);transition:transform .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);clip-path:var(--circle-clip-path);transition:clip-path .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=dropdown-icon]{transform:var(--dropdown-icon-transform)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);height:135%;inset:0;bottom:unset;transform-origin:bottom;transform:var(--wave-tarnslate);transition:transform .4s;display:block;position:absolute;-webkit-mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100% 100%;mask-size:100% 100%}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=bullet] [data-part=label]:before{transform:var(--bullet-translate);opacity:var(--bullet-opacity);transition-duration:.3s;display:inline-block}.Y4Cdvx{width:100%;height:100%;overflow-x:var(--container-overflow-x,unset);overflow-y:var(--container-overflow-y,visible);scrollbar-width:none;box-sizing:border-box;display:flex}.Y4Cdvx.VxjUGd{border-left:var(--container-border-left);border-right:var(--container-border-right);border-radius:var(--container-border-radius);padding-right:var(--container-padding-right,0);padding-left:var(--container-padding-left,0)}.tn8ZSa{direction:var(--direction)}.OD_PyT{width:100%;min-width:-moz-fit-content;height:auto;justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow);flex-direction:var(--container-flex-direction);flex-wrap:var(--container-flex-wrap,unset);scrollbar-width:none;row-gap:var(--menu-items-row-gap);column-gap:var(--menu-items-column-gap);min-width:fit-content;display:flex;overflow-x:visible}.YUEUpV{background:var(--container-background);box-shadow:var(--container-box-shadow);border-top:var(--container-border-top);border-bottom:var(--container-border-bottom);padding-top:var(--container-padding-top,0);padding-bottom:var(--container-padding-bottom,0)}.PnnIOa{cursor:pointer;pointer-events:auto;visibility:hidden;transform:var(--scroll-button-transform);--icon-rotation:var(--scroll-button-icon-rotation-deg,calc(var(--scroll-button-icon-rotation)*1deg));--icon-rotation-hover:var(--scroll-button-hover-icon-rotation-deg,calc(var(--scroll-button-hover-icon-rotation)*1deg));justify-content:center;align-items:center;display:flex;overflow:hidden}.PnnIOa.hcRPG3{border-left:var(--scroll-button-border-left);border-right:var(--scroll-button-border-right);border-radius:var(--scroll-button-border-radius)}.PnnIOa.hcRPG3 .KEUNmX{padding-right:var(--scroll-button-padding-right,0);padding-left:var(--scroll-button-padding-left,0)}.PnnIOa.Od2sOd .KEUNmX{padding-inline-start:var(--scroll-button-padding-inline-start,0);padding-inline-end:var(--scroll-button-padding-inline-end,0)}.PnnIOa:hover,.PnnIOa[data-preview=hover]{background:var(--scroll-button-hover-background,var(--scroll-button-background));box-shadow:var(--scroll-button-hover-box-shadow,var(--scroll-button-box-shadow));border-top:var(--scroll-button-hover-border-top,var(--scroll-button-border-top));border-bottom:var(--scroll-button-hover-border-bottom,var(--scroll-button-border-bottom))}.PnnIOa:hover.hcRPG3,.PnnIOa[data-preview=hover].hcRPG3{border-left:var(--scroll-button-hover-border-left,var(--scroll-button-border-left));border-right:var(--scroll-button-hover-border-right,var(--scroll-button-border-right));border-radius:var(--scroll-button-hover-border-radius,var(--scroll-button-border-radius))}.PnnIOa:hover.hcRPG3 .KEUNmX,.PnnIOa[data-preview=hover].hcRPG3 .KEUNmX{padding-right:var(--scroll-button-hover-padding-right,var(--scroll-button-padding-right,0));padding-left:var(--scroll-button-hover-padding-left,var(--scroll-button-padding-left,0))}.PnnIOa:hover .KEUNmX,.PnnIOa[data-preview=hover] .KEUNmX{fill:var(--scroll-button-hover-icon-color,var(--scroll-button-icon-color));transform:rotate(var(--icon-rotation-hover,var(--icon-rotation)));height:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size));width:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size))}.PnnIOa:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.fXBvwp{visibility:visible;pointer-events:auto}.sLcDXV{visibility:hidden;pointer-events:none}.KEUNmX{min-width:1px;max-width:100%;max-height:100%;fill:var(--scroll-button-icon-color);transform:rotate(var(--icon-rotation));height:var(--scroll-button-icon-size);width:var(--scroll-button-icon-size)}.KEUNmX>svg{width:inherit;height:inherit}@media (forced-colors:active){.PnnIOa.fXBvwp{outline-offset:0px;color:buttontext;outline:2px solid buttontext}.PnnIOa.fXBvwp:hover,.PnnIOa[data-preview=hover]{outline-offset:1px;color:highlight;outline:3px solid highlight}.KEUNmX,.KEUNmX *{fill:currentColor;stroke:currentColor}}.MXA4tA{background:var(--scroll-button-background);box-shadow:var(--scroll-button-box-shadow);border-top:var(--scroll-button-border-top);border-bottom:var(--scroll-button-border-bottom)}.UU6mel{padding-top:inherit;padding-bottom:inherit;border:inherit;pointer-events:none;display:var(--scroll-button-icon-display,flex);border-color:#0000;justify-content:space-between;position:absolute;inset:0}.toi7Rj{direction:var(--submenu-direction,var(--dropdown-menu-direction,var(--direction)));box-sizing:border-box;background:var(--container-background,var(--dropdown-menu-container-background));border-top:var(--container-border-top,var(--dropdown-menu-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-menu-container-border-bottom));border-left:var(--container-border-left,var(--dropdown-menu-container-border-left));border-right:var(--container-border-right,var(--dropdown-menu-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-menu-container-border-radius));box-shadow:var(--container-box-shadow,var(--dropdown-menu-container-box-shadow));text-align:var(--align,var(--dropdown-menu-align));padding-top:var(--container-padding-top,var(--container-vertical-padding,var(--dropdown-menu-container-padding-top,var(--dropdown-menu-container-vertical-padding))));padding-bottom:var(--container-padding-bottom,var(--container-vertical-padding,var(--dropdown-menu-container-padding-bottom,var(--dropdown-menu-container-vertical-padding))));min-width:min-content!important}.toi7Rj.x0UOau{padding-right:var(--container-padding-right,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-right,var(--dropdown-menu-container-horizontal-padding))));padding-left:var(--container-padding-left,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-left,var(--dropdown-menu-container-horizontal-padding))))}.toi7Rj.esKf1e{padding-inline-start:var(--container-padding-inline-start);padding-inline-end:var(--container-padding-inline-end)}@media (forced-colors:active){.toi7Rj{outline-offset:0px;outline:2px solid buttontext}.toi7Rj:focus-within{outline-offset:1px;outline:3px solid highlight!important}}.sbxaYn{--rows-number:calc((var(--items-number)/$columns-number) + .49);grid-template-columns:repeat(var(--columns-number,var(--dropdown-menu-columns-number)),1fr);grid-template-rows:repeat(var(--rows-number),auto);row-gap:var(--item-vertical-spacing,var(--dropdown-menu-item-vertical-spacing));column-gap:var(--item-horizontal-spacing,var(--dropdown-menu-item-horizontal-spacing));display:grid}@supports (width:round(1.9px, 1px)){.sbxaYn{--rows-number:calc(round(up,var(--items-number)/$columns-number))}}.SjbYta{gap:var(--sub-items-vertical-spacing-between,var(--dropdown-menu-sub-items-vertical-spacing-between));margin-top:var(--sub-items-vertical-spacing-before,var(--dropdown-menu-sub-items-vertical-spacing-before));flex-direction:column;display:flex}.P3tBK7{width:100%}.ptLEUT{direction:var(--submenu-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--dropdown-menu-item-justify-self);text-align:var(--item-align,var(--align,var(--dropdown-menu-item-align,var(--dropdown-menu-align))));padding-top:var(--item-padding-top,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));display:block}.ptLEUT.x0UOau{border-left:var(--item-border-left,var(--dropdown-menu-item-border-left));border-right:var(--item-border-right,var(--dropdown-menu-item-border-right));border-radius:var(--item-border-radius,var(--dropdown-menu-item-border-radius));padding-left:var(--item-padding-left,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-right:var(--item-padding-right,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.esKf1e{padding-inline-start:var(--item-padding-inline-start,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-inline-end:var(--item-padding-inline-end,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected]{font:var(--item-selected-font,var(--item-font,var(--dropdown-menu-item-selected-font,var(--dropdown-menu-item-font))));color:var(--item-selected-color,var(--item-color,var(--dropdown-menu-item-selected-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-selected-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-selected-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-selected-line-height,var(--item-line-height,var(--dropdown-menu-item-selected-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-selected-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-selected-text-transform,var(--item-text-transform,var(--dropdown-menu-item-selected-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-selected-text-outline,var(--item-text-outline,var(--dropdown-menu-item-selected-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-selected-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-selected-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-selected-background,var(--item-background,var(--dropdown-menu-item-selected-background,var(--dropdown-menu-item-background))));border-top:var(--item-selected-border-top,var(--item-border-top,var(--dropdown-menu-item-selected-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-selected-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-selected-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT.WB5Q35.x0UOau,.ptLEUT[data-preview=selected].x0UOau{border-left:var(--item-selected-border-left,var(--item-border-left,var(--dropdown-menu-item-selected-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-selected-border-right,var(--item-border-right,var(--dropdown-menu-item-selected-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-selected-border-radius,var(--item-border-radius,var(--dropdown-menu-item-selected-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT.WB5Q35 .u9_aLl,.ptLEUT[data-preview=selected] .u9_aLl{background-color:var(--item-selected-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-selected-text-highlight,var(--dropdown-menu-item-text-highlight))))}.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{font:var(--item-hover-font,var(--item-font,var(--dropdown-menu-item-hover-font,var(--dropdown-menu-item-font))));color:var(--item-hover-color,var(--item-color,var(--dropdown-menu-item-hover-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-hover-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-hover-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-hover-line-height,var(--item-line-height,var(--dropdown-menu-item-hover-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-hover-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-hover-text-transform,var(--item-text-transform,var(--dropdown-menu-item-hover-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-hover-text-outline,var(--item-text-outline,var(--dropdown-menu-item-hover-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-hover-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-hover-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-hover-background,var(--item-background,var(--dropdown-menu-item-hover-background,var(--dropdown-menu-item-background))));border-top:var(--item-hover-border-top,var(--item-border-top,var(--dropdown-menu-item-hover-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-hover-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-hover-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT:hover.x0UOau,.ptLEUT.brJofP.x0UOau,.ptLEUT[data-preview=hover].x0UOau{border-left:var(--item-hover-border-left,var(--item-border-left,var(--dropdown-menu-item-hover-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-hover-border-right,var(--item-border-right,var(--dropdown-menu-item-hover-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-hover-border-radius,var(--item-border-radius,var(--dropdown-menu-item-hover-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT:hover .u9_aLl,.ptLEUT.brJofP .u9_aLl,.ptLEUT[data-preview=hover] .u9_aLl{background-color:var(--item-hover-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-hover-text-highlight,var(--dropdown-menu-item-text-highlight))))}@media (forced-colors:active){.ptLEUT{outline-offset:0px;outline:2px solid buttontext}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected],.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.ptLEUT:focus,.ptLEUT:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.B2qCAf{direction:var(--submenu-sub-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--sub-item-justify-self);text-align:var(--sub-item-align,var(--align,var(--dropdown-menu-sub-item-align,var(--dropdown-menu-align))));display:block}.B2qCAf.x0UOau{border-left:var(--sub-item-border-left,var(--dropdown-menu-sub-item-border-left));border-right:var(--sub-item-border-right,var(--dropdown-menu-sub-item-border-right));border-radius:var(--sub-item-border-radius,var(--dropdown-menu-sub-item-border-radius));padding-left:var(--sub-item-padding-left,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)));padding-right:var(--sub-item-padding-right,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)))}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected]{font:var(--sub-item-selected-font,var(--sub-item-font,var(--dropdown-menu-sub-item-selected-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-selected-color,var(--sub-item-color,var(--dropdown-menu-sub-item-selected-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-selected-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-selected-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-selected-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-selected-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-selected-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-selected-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-selected-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-selected-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-selected-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-selected-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-selected-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-selected-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-selected-background,var(--sub-item-background,var(--dropdown-menu-sub-item-selected-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-selected-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-selected-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-selected-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-selected-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-selected-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-selected-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf.WB5Q35.x0UOau,.B2qCAf[data-preview=selected].x0UOau{border-left:var(--sub-item-selected-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-selected-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-selected-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-selected-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-selected-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-selected-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf.WB5Q35 .UCVF7R,.B2qCAf[data-preview=selected] .UCVF7R{background-color:var(--sub-item-selected-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-selected-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{font:var(--sub-item-hover-font,var(--sub-item-font,var(--dropdown-menu-sub-item-hover-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-hover-color,var(--sub-item-color,var(--dropdown-menu-sub-item-hover-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-hover-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-hover-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-hover-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-hover-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-hover-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-hover-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-hover-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-hover-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-hover-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-hover-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-hover-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-hover-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-hover-background,var(--sub-item-background,var(--dropdown-menu-sub-item-hover-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-hover-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-hover-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-hover-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-hover-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-hover-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-hover-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf:hover.x0UOau,.B2qCAf.brJofP.x0UOau,.B2qCAf[data-preview=hover].x0UOau{border-left:var(--sub-item-hover-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-hover-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-hover-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-hover-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-hover-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-hover-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf:hover .UCVF7R,.B2qCAf.brJofP .UCVF7R,.B2qCAf[data-preview=hover] .UCVF7R{background-color:var(--sub-item-hover-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-hover-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}@media (forced-colors:active){.B2qCAf{outline-offset:0px;outline:2px solid buttontext}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected],.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.B2qCAf:focus,.B2qCAf:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.u9_aLl{background-color:var(--item-text-highlight,var(--dropdown-menu-item-text-highlight));text-align:inherit;text-decoration-line:inherit;text-transform:inherit;text-shadow:inherit;display:inline-block}.UCVF7R{background-color:var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-text-highlight))}.eP1KVV{font:var(--item-font,var(--dropdown-menu-item-font,var(--font_7)));color:var(--item-color,var(--dropdown-menu-item-color));letter-spacing:var(--item-letter-spacing,var(--dropdown-menu-item-letter-spacing));line-height:var(--item-line-height,var(--dropdown-menu-item-line-height));text-decoration-line:var(--item-text-decoration,var(--dropdown-menu-item-text-decoration));text-transform:var(--item-text-transform,var(--dropdown-menu-item-text-transform));text-shadow:var(--item-text-outline,var(--dropdown-menu-item-text-outline)),var(--item-text-shadow,var(--dropdown-menu-item-text-shadow));background:var(--item-background,var(--dropdown-menu-item-background));border-top:var(--item-border-top,var(--dropdown-menu-item-border-top));border-bottom:var(--item-border-bottom,var(--dropdown-menu-item-border-bottom));box-shadow:var(--item-box-shadow,var(--dropdown-menu-item-box-shadow))}._3mA1c{font:var(--sub-item-font,var(--dropdown-menu-sub-item-font));color:var(--sub-item-color,var(--dropdown-menu-sub-item-color));letter-spacing:var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing));line-height:var(--sub-item-line-height,var(--dropdown-menu-sub-item-line-height));text-decoration-line:var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-text-decoration));text-transform:var(--sub-item-text-transform,var(--dropdown-menu-sub-item-text-transform));text-shadow:var(--sub-item-text-outline,var(--dropdown-menu-sub-item-text-outline)),var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-text-shadow));background:var(--sub-item-background,var(--dropdown-menu-sub-item-background));border-top:var(--sub-item-border-top,var(--dropdown-menu-sub-item-border-top));border-bottom:var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-border-bottom));box-shadow:var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-box-shadow));padding-top:var(--sub-item-padding-top,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)));padding-bottom:var(--sub-item-padding-bottom,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)))}.cNddzb[data-animation-name=revealFromTop]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),clip-path .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enter],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitDone]{clip-path:var(--animation-clip-path);opacity:0}.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive]{clip-path:inset(var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%))}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone]{clip-path:unset}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit]{opacity:1}.cNddzb[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=fadeIn][data-animation-state=enter],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitDone]{opacity:0}.cNddzb[data-animation-name=fadeIn][data-animation-state=enterActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=enterDone],.cNddzb[data-animation-name=fadeIn][data-animation-state=exit]{opacity:1}.cNddzb{background:var(--container-background,var(--dropdown-container-background));border-top:var(--container-border-top,var(--dropdown-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-container-border-bottom));box-shadow:var(--container-box-shadow,var(--dropdown-container-box-shadow))}.cNddzb.Nk9NbA{border-left:var(--container-border-left,var(--dropdown-container-border-left));border-right:var(--container-border-right,var(--dropdown-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-container-border-radius))}.cNddzb.W_BIhg{border-inline-start:var(--container-border-inline-start,var(--dropdown-container-border-inline-start));border-inline-end:var(--container-border-inline-end,var(--dropdown-container-border-inline-end));border-start-start-radius:var(--container-border-start-start-radius,var(--dropdown-container-border-start-start-radius));border-start-end-radius:var(--container-border-start-end-radius,var(--dropdown-container-border-start-end-radius));border-end-end-radius:var(--container-border-end-end-radius,var(--dropdown-container-border-end-end-radius));border-end-start-radius:var(--container-border-end-start-radius,var(--dropdown-container-border-end-start-radius))}.OOc2NG{direction:ltr}.G4Bkwp{box-sizing:border-box}div.wiZmhC{display:var(--l_display,var(--hamburger-menu-root-display,var(--container-display)))}[data-hamburger-btn-label]{display:none}div.wiZmhC[data-prehydration] [data-hamburger-btn-label]{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}.pcn0FH{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.HamburgerOpenButton3537389287__nav{display:inherit;height:inherit;width:auto}.uxNlIP{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.uxNlIP:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.uxNlIP:not(:disabled):hover,.uxNlIP:not(:disabled)[aria-pressed=true],.uxNlIP:not(:disabled)[aria-selected=true],.uxNlIP:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.uxNlIP:not(:disabled):focus,.uxNlIP:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.uxNlIP.KuCfHA:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.uxNlIP.aNAcG0:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.uxNlIP:hover,.uxNlIP [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.uxNlIP.GPIMxy:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.uxNlIP.KceBs9:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.uxNlIP:disabled,.uxNlIP [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.uxNlIP.N3sAZG:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.uxNlIP._FFhff:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.I0RXdK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.uxNlIP.siSNn5:not(:hover):not(:disabled) .I0RXdK{color:var(--corvid-color,var(--color))}.uxNlIP:hover .I0RXdK,.uxNlIP [data-preview=hover] .I0RXdK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.uxNlIP.EJ6L9y:hover:not(:disabled) .I0RXdK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.uxNlIP:disabled .I0RXdK,.uxNlIP [data-preview=disabled] .I0RXdK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.uxNlIP.S6tzPA:disabled:not(:hover) .I0RXdK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.kAoW_K{box-sizing:border-box;color:#000;text-decoration:none}.VzoZx_{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.p_5A25{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.uxNlIP.iN4eVS:not(:hover):not(:disabled) .p_5A25{fill:var(--corvid-icon-color,var(--icon-color))}.uxNlIP:hover .p_5A25,.uxNlIP [data-preview=hover] .p_5A25{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.uxNlIP.SGrXAN:hover:not(:disabled) .p_5A25{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.uxNlIP:disabled .p_5A25,.uxNlIP [data-preview=disabled] .p_5A25{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.uxNlIP.ZBuT2t:disabled:not(:hover) .p_5A25{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.p_5A25>span,.p_5A25 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.p_5A25,.p_5A25 svg,.p_5A25 svg *{fill:currentColor!important;stroke:currentColor!important}}.HMOnu5{display:inherit;height:inherit;width:auto}.HamburgerOverlay547129737__root{-archetype:paintBox;visibility:hidden;box-sizing:border-box;z-index:var(--above-all-z-index);left:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;top:var(--wix-ads-height)!important;position:fixed!important}.HamburgerOverlay547129737__overlay{box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--isMenuOpen{visibility:visible}.HamburgerOverlay547129737__root:not(.HamburgerOverlay547129737--showBackgroundOverlay){background-color:#0000}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--shouldScroll{overflow-x:hidden;overflow-y:scroll}.HamburgerOverlay547129737__scrollContent{position:relative}.OrbgmN[data-part=hamburger-overlay]{opacity:var(--hamburger-overlay-initial-opacity)}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn]{transition:opacity .4s}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterActive],.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.xdu0As{background:var(--background);border:var(--border);border-radius:var(--border-radius);box-shadow:var(--box-shadow);z-index:var(--above-all-z-index);box-sizing:border-box;visibility:hidden;inset-inline-start:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;position:fixed!important;inset-block-start:var(--wix-ads-height)!important}.oSs9UC{box-sizing:border-box;width:100%;height:100%;position:absolute;inset-block-start:0;inset-inline-start:0}.UOTM1J{visibility:visible}.xdu0As:not(.mh8_De){background-color:#0000}.vCpC6x{overflow-x:hidden;overflow-y:scroll}.mhdEAw{position:relative}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),visibility linear;opacity:1!important;visibility:visible!important}[data-hamburger-overlay-label]{display:none}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay] [data-hamburger-overlay-label]{z-index:1;cursor:pointer;display:block;position:absolute;inset:0}.EtmdIW{cursor:pointer}.gpDCD5{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--backdrop-filter:$backdrop-filter}.jv9xi4{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));backdrop-filter:var(--backdrop-filter,none);background-image:var(--bg-gradient,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.StylableHorizontalMenu3372578893__root{-archetype:paddingBox;box-sizing:border-box;width:100%;height:100%;display:flex}.StylableHorizontalMenu3372578893__root *{box-sizing:border-box}.StylableHorizontalMenu3372578893__menu{flex-wrap:var(--menu-flex-wrap,wrap);min-width:-moz-fit-content;min-width:fit-content;display:flex}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menuItem{box-sizing:border-box;height:100%;margin-top:0!important;margin-bottom:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:first-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-start:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:last-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-end:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu{height:auto!important;margin:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll{scrollbar-width:none;-ms-overflow-style:none;overflow-x:scroll}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll::-webkit-scrollbar{display:none}.StylableHorizontalMenu3372578893__menuItem{position:relative;--focus-ring-box-shadow:inset 0 0 0 2px #116dff,inset 0 0 0 4px #fff!important}.StylableHorizontalMenu3372578893__megaMenuWrapper{display:flex}.itemDepth02233374943__root{-archetype:paintBox;cursor:pointer;flex:1;text-decoration:none;display:block}.itemDepth02233374943__root.itemDepth02233374943--isHovered,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage,.itemDepth02233374943__root.itemDepth02233374943--isHovered .itemDepth02233374943__label,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage .itemDepth02233374943__label{transition:all 80ms cubic-bezier(0,0,1,1)}.itemDepth02233374943__container{-archetype:box;align-items:center;height:100%;display:flex}.itemDepth02233374943__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown;white-space:nowrap;transition:inherit}.itemDepth02233374943__itemWrapper{flex-grow:inherit}.itemDepth02233374943__positionBox{z-index:var(--position-box-z-index,47);margin:auto;display:none;position:fixed}.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn{position:absolute;left:0;right:0}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched{max-width:unset}@keyframes itemDepth02233374943__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth02233374943__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);max-height:var(--max-height,none);overflow-y:var(--overflow-y,visible);transition:border-color 80ms cubic-bezier(.25,1,.5,1),box-shadow 80ms cubic-bezier(.25,1,.5,1);animation-fill-mode:forwards}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched>.itemDepth02233374943__animationBox{width:100%}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched .itemDepth02233374943__megaMenuComp{width:100%!important}.itemDepth02233374943__alignBox{display:flex}.itemDepth02233374943__list{column-gap:calc(1px*var(--horizontalSpacing))}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox{visibility:hidden;display:block}.itemDepth02233374943__itemWrapper[data-shown]>.itemDepth02233374943__positionBox{visibility:visible;display:block}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox>.itemDepth02233374943__animationBox{animation-name:itemDepth02233374943__fadeIn}.itemDepth02233374943__megaMenuComp{direction:ltr;flex-shrink:0;margin-top:var(--containerMarginTop)!important;padding:0!important}.itemDepth02233374943__itemWrapper:not([data-hovered]) .itemDepth02233374943__megaMenuComp{display:none}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn.itemDepth02233374943--isStretched{display:block;position:fixed!important}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn>.itemDepth02233374943__animationBox{opacity:1}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn .itemDepth02233374943__megaMenuComp{display:block}.itemDepth12472627565__root{-archetype:paintBox;text-decoration:none;display:block;position:relative}.itemDepth12472627565__container{display:flex}.itemDepth12472627565__label{-archetype:text;text-overflow:clip;white-space:var(--white-space);overflow-wrap:var(--label-word-wrap);word-wrap:var(--label-word-wrap);display:block;overflow:hidden;text-align:inherit!important}.itemDepth12472627565__itemWrapper{page-break-inside:avoid;break-inside:avoid;position:relative}.itemDepth12472627565__itemWrapper:after{content:"";clear:both;display:table}.itemDepth12472627565__positionBox{position:var(--subsubmenu-box-position);display:var(--subsubmenu-box-display);top:0;left:var(--subsubmenu-box-left);right:var(--subsubmenu-box-right)}.itemDepth12472627565__positionBox[data-reverted]{left:var(--subsubmenu-box-right);right:var(--subsubmenu-box-left)}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox{display:block}@keyframes itemDepth12472627565__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth12472627565__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);animation-fill-mode:forwards;margin-top:0!important}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox>.itemDepth12472627565__animationBox{animation-name:itemDepth12472627565__fadeIn}.submenu815198092__heading .itemDepth12472627565__label{color:#000}.submenu815198092__pageWrapper{margin-left:auto!important;margin-right:auto!important}.submenu815198092__overrideWidth{width:100%!important}.submenu815198092__rowItem:last-child{margin-bottom:0!important}.submenu815198092__rowItem:first-child,.submenu815198092__rowItem+.submenu815198092__rowItem{margin-top:0}.h75ntl{display:var(--navbar-display,block);height:100%}.I9v6Rw:hover{z-index:var(--is-sticky,auto)}.Aj_PK7{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.wZrAIE{min-width:var(--min-width-override);min-height:var(--min-height-override)}.itemShared2352141355__rootContainer{height:100%}.itemShared2352141355__rootContainer.itemShared2352141355--isRow{flex-direction:row;display:flex}.itemShared2352141355__rootContainer.itemShared2352141355--isRow .itemShared2352141355__menuItem{flex-grow:1}.itemShared2352141355__accessibilityIconWrapper{width:0}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isIconShown{width:unset;margin-inline:4px 8px}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isTopLevel.itemShared2352141355--isIconShown{align-items:center;display:flex}.itemShared2352141355__accessibilityIcon{clip:rect(0 0 0 0);clip-path:inset(50%);width:0;height:0}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isIconShown{width:24px;height:24px;clip-path:unset;background:#fff}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isOpen{rotate:180deg}.ScrollButton2305195801__root{-archetype:paddingBox;cursor:pointer;opacity:0;pointer-events:none;justify-content:center;align-items:center;display:flex;overflow:hidden}.ScrollButton2305195801__root:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.ScrollButton2305195801__root.ScrollButton2305195801---side-4-left{transform:scaleX(-1)}.ScrollButton2305195801__root.ScrollButton2305195801--isVisible{opacity:1;pointer-events:auto}.ScrollButton2305195801__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown;min-width:1px;max-width:100%;max-height:100%}.ScrollButton2305195801__icon>svg{width:inherit;height:inherit}.ScrollControls2015960785__root{padding-top:inherit;padding-bottom:inherit;border:inherit;display:var(--scroll-controls-display,flex);pointer-events:none;border-color:#0000;justify-content:space-between;position:absolute;inset:0}</style> | |
| 192 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_StylableButton].37250527.min.css">.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 193 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInputListModal].80f46385.min.css">.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}</style> | |
| 194 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap-responsive.4e8a21db.min.css">.H4AHlN{clip-path:inset(50%);width:24px;height:24px;position:absolute}.H4AHlN:focus,.H4AHlN:active{clip-path:unset;top:50%;right:0;transform:translateY(-50%)}.H4AHlN.Ln3X5V{transform:translateY(-50%)rotate(180deg)}.RHcakQ,.CUYeWp{height:100%;width:initial;box-sizing:border-box;position:relative;overflow:visible}.RHcakQ[data-state~=header] a,[data-state~=header].CUYeWp a,.RHcakQ[data-state~=header] div,[data-state~=header].CUYeWp div{cursor:default!important}.RHcakQ .qMvpu5,.CUYeWp .qMvpu5{width:100%;height:100%;display:inline-block}.CUYeWp{display:var(--display);--display:inline-block;cursor:pointer;font:var(--fnt,var(--font_1))}.CUYeWp .EWeavx{padding:0 var(--pad,5px)}.CUYeWp .wGxoBM{color:rgb(var(--txt,var(--color_15,color_15)));transition:var(--trans,color .4s ease 0s);padding:0 10px;display:inline-block}.CUYeWp[data-state~=drop]{width:100%;display:block}.CUYeWp[data-state~=drop] .wGxoBM{padding:0 .5em}.CUYeWp[data-state~=over] .wGxoBM,.CUYeWp[data-state~=link]:hover .wGxoBM{color:rgb(var(--txth,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.CUYeWp[data-state~=selected] .wGxoBM{color:rgb(var(--txts,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.H5oXMS{overflow-x:hidden}.H5oXMS .nzOiVF{flex-direction:column;width:100%;height:100%;display:flex}.H5oXMS .nzOiVF .sPUR9o{flex:1}.H5oXMS .nzOiVF .U7fR3t{width:calc(100% - (var(--menuTotalBordersX,0px)));height:calc(100% - (var(--menuTotalBordersY,0px)));white-space:nowrap;overflow:visible}.H5oXMS .nzOiVF .U7fR3t .CSt_RJ,.H5oXMS .nzOiVF .U7fR3t .NgQZsf{direction:var(--menu-direction);text-align:var(--menu-align,var(--align));display:inline-block}.H5oXMS .nzOiVF .U7fR3t .NV2Ozs{width:100%;display:block}.H5oXMS .dva_z0{z-index:99999;opacity:1;text-align:var(--submenus-align,var(--align));direction:var(--submenus-direction);display:block}.H5oXMS .dva_z0 .fYO6yN{display:inherit;white-space:nowrap;width:auto;visibility:inherit;overflow:visible}.H5oXMS .dva_z0.mmODQd{visibility:visible;transition:visibility 0s .2s}.H5oXMS .dva_z0 .NgQZsf{display:inline-block}.H5oXMS .YStAo7{display:none}.MV6Z4B>nav{position:absolute;inset:0}.MV6Z4B .U7fR3t{position:absolute}.MV6Z4B .dva_z0{visibility:hidden;margin-top:7px;position:absolute}.MV6Z4B .dva_z0[data-dropMode="dropUp"]{margin-top:0;margin-bottom:7px}.MV6Z4B .fYO6yN{background-color:rgba(var(--bgDrop,var(--color_11,color_11)),var(--alpha-bgDrop,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ETqrjz .g0IvTF{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));position:absolute;inset:0;overflow:hidden}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}</style> | |
| 195 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Section].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 196 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[RefComponent].98cd6e5f.min.css">.S829f_{pointer-events:var(--ref-container-pointer-events)!important}.S829f_>*{pointer-events:auto}</style> | |
| 197 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Container_ResponsiveBox].c25ed6c0.min.css">.EtmdIW{cursor:pointer}.HFEOE3{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));--overflow-wrapper-border-radius:var(--rd);--backdrop-filter:$backdrop-filter}.NaeT1r{box-shadow:none!important;background:0 0!important;border:none!important}.NYfD3h{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));background-image:var(--bg-gradient,none);backdrop-filter:var(--backdrop-filter,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.jdJeEr{width:unset!important;min-width:unset!important;max-width:unset!important;height:unset!important;min-height:unset!important;max-height:unset!important;z-index:unset!important;margin:0!important;padding:0!important;position:absolute!important;inset:0!important}</style> | |
| 198 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[FooterSection].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 199 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[MenuContainer_Responsive].a710ff33.min.css">.vO4l6e{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.vO4l6e.Wy7QN0{opacity:1;visibility:visible}.vO4l6e[data-undisplayed=true]{display:none}.vO4l6e:not([data-is-mesh]) .mTXgrW,.vO4l6e:not([data-is-mesh]) ._Cv0fj{position:absolute;inset:0}.F02QWW{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.F02QWW.boScYg{display:none}body.device-mobile-optimized .F02QWW,:host(.device-mobile-optimized) .F02QWW{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.boScYg,:host(.device-mobile-optimized) .vO4l6e.boScYg{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.cdbKA3,:host(.device-mobile-optimized) .vO4l6e.cdbKA3{height:100vh}body:not(.device-mobile-optimized) .vO4l6e.cdbKA3,:host(:not(.device-mobile-optimized)) .vO4l6e.cdbKA3{height:100vh}.KX5JJ6.cdbKA3{height:calc(var(--menu-height) - var(--wix-ads-height))}.KX5JJ6.cdbKA3>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.vO4l6e.cdbKA3{top:0}.vO4l6e.B_nptD{z-index:calc(var(--above-all-z-index) - 1)}._Cv0fj{height:100%}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}._TdTo8{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}._TdTo8.mYq8K5{opacity:1;visibility:visible}._TdTo8[data-undisplayed=true]{display:none}._TdTo8:not([data-is-mesh]) ._SG1a6,._TdTo8:not([data-is-mesh]) .V1WvhC{position:absolute;inset:0}.KyTZlx{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.KyTZlx.rL1cmJ{display:none}body.device-mobile-optimized .KyTZlx,:host(.device-mobile-optimized) .KyTZlx{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.rL1cmJ,:host(.device-mobile-optimized) ._TdTo8.rL1cmJ{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.ci1BOD,:host(.device-mobile-optimized) ._TdTo8.ci1BOD{height:100vh}body:not(.device-mobile-optimized) ._TdTo8.ci1BOD,:host(:not(.device-mobile-optimized)) ._TdTo8.ci1BOD{height:100vh}.dz6k8U.ci1BOD{height:calc(var(--menu-height) - var(--wix-ads-height))}.dz6k8U.ci1BOD>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}._TdTo8.ci1BOD{top:0}.qINwWP{background-color:rgba(var(--containerBackground,var(--color_11,color_11)),var(--alpha-containerBackground,1));position:absolute;inset:0}.dz6k8U,.V1WvhC{height:100%}</style> | |
| 200 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[HeaderSection].cdbd0494.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}.yEgiaI{margin-top:var(--padding-top,0);margin-right:var(--padding-right,0);margin-bottom:var(--padding-bottom,0);margin-left:var(--padding-left,0)}</style> | |
| 201 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Repeater_Responsive].4a747053.min.css">.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}.ArRNfA{--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--container-corvid-border-color:rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0));direction:var(--wix-opt-in-direction,ltr);background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));border-style:solid;border-color:var(--container-corvid-border-color,rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0)));background-image:var(--bg-gradient,none);box-shadow:var(--boxShadow,0 0 0 #0000);border-width:var(--borderWidth,0px);border-radius:var(--borderRadius,0)}</style> | |
| 202 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[PageSections].7dbf3cd4.min.css">.ooGRUo{display:contents}</style> | |
| 203 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css">.chBh7{overflow:hidden}.UkML6{width:100%;height:100%;position:relative;overflow:hidden}.UkML6:-webkit-full-screen{min-height:auto!important}.UkML6:-moz-full-screen{min-height:auto!important}.UkML6:fullscreen{min-height:auto!important}.mqeQ0{visibility:hidden} | |
| 204 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css.map*/</style> | |
| 205 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css">.QrIus{height:auto!important}.bsFmQ{overflow:hidden!important} | |
| 206 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css.map*/</style> | |
| 207 | +<title>3 1/2 4 1/2 5 1/2 NEUF SAINT-CHARLES-BORROMEE</title> | |
| 208 | + <meta name="description" content="2470dc7f-3644-49dd-aa23-256cdcbdac46"/> | |
| 209 | + <link rel="canonical" href="https://www.leshabitationssf.com/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee"/> | |
| 210 | + <meta name="robots" content="index"/> | |
| 211 | + <meta property="og:title" content="3 1/2 4 1/2 5 1/2 NEUF SAINT-CHARLES-BORROMEE"/> | |
| 212 | + <meta property="og:description" content="2470dc7f-3644-49dd-aa23-256cdcbdac46"/> | |
| 213 | + <meta property="og:image" content="https://static.wixstatic.com/media/0df8bb_d422b67dcd1844059b6143417458f3b5~mv2.jpg/v1/fill/w_2400,h_1797,al_c,q_90/650%20Rue%20Flavie%20Poirier%2C%20SCB_Facade%20Devant%201.jpg"/> | |
| 214 | + <meta property="og:image:width" content="2400"/> | |
| 215 | + <meta property="og:image:height" content="1797"/> | |
| 216 | + <meta property="og:url" content="https://www.leshabitationssf.com/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee"/> | |
| 217 | + <meta property="og:site_name" content="SF Habitations"/> | |
| 218 | + <meta property="og:type" content="website"/> | |
| 219 | + <script type="application/ld+json">{}</script> | |
| 220 | + <script type="application/ld+json">{}</script> | |
| 221 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee" hreflang="x-default"/> | |
| 222 | + <link rel="alternate" href="https://www.leshabitationssf.com/en/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee" hreflang="en-us"/> | |
| 223 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee" hreflang="fr-ca"/> | |
| 224 | + <meta name="google-site-verification" content="10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM"/> | |
| 225 | + <meta name="twitter:card" content="summary_large_image"/> | |
| 226 | + <meta name="twitter:title" content="3 1/2 4 1/2 5 1/2 NEUF SAINT-CHARLES-BORROMEE"/> | |
| 227 | + <meta name="twitter:description" content="2470dc7f-3644-49dd-aa23-256cdcbdac46"/> | |
| 228 | + <meta name="twitter:image" content="https://static.wixstatic.com/media/0df8bb_d422b67dcd1844059b6143417458f3b5~mv2.jpg/v1/fill/w_2400,h_1797,al_c,q_90/650%20Rue%20Flavie%20Poirier%2C%20SCB_Facade%20Devant%201.jpg"/> | |
| 229 | +<script>;(function(){function isSamePageAnchor(e){let t=e.target,r=t&&t.closest&&t.closest("a[data-anchor]");if(!r||"_blank"===r.getAttribute("target"))return!1;let a=r.getAttribute("href");if(!a)return!1;try{let e=new URL(a,location.href);return e.origin===location.origin&&e.pathname===location.pathname}catch(e){return!1}};var guard=(function preventSamePageAnchorReloadBeforeHydration(e){e.metaKey||e.ctrlKey||isSamePageAnchor(e)&&e.preventDefault()});window.__tbAnchorGuard=guard;document.addEventListener('click',guard,true)})();</script> | |
| 230 | +<script type="speculationrules">{"prefetch":[{"tag":"mpa-prefetch-eager","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":"/copy-of-location/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee"}}]},"eagerness":"eager"}]}</script> | |
| 231 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidget.min.css">.sSAtY3z.ofOhStR--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.squ26My{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.stbqc1u.oJ8EvyQ--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.Q8TtId{padding:0;position:relative}.Q8TtId>svg{bottom:0;left:0;position:absolute!important;right:0;top:0}.aZhaoZ{opacity:0}.s1dvzA{display:block;outline:none;text-decoration:none;width:100%}.s1dvzA,.s1dvzA svg{overflow:visible}.js-focus-visible .s1dvzA:focus{box-shadow:none;position:relative}.js-focus-visible .s1dvzA:focus:after{box-shadow:inset 0 0 1px 1px #3899ec,inset 0 0 0 2px hsla(0,0%,100%,.9);content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.s1dvzA circle,.s1dvzA path,.s1dvzA polygon,.s1dvzA polyline,.s1dvzA rect{fill:rgb(var(--cartWidget_cartIcon,var(--wix-color-8)))}.s1dvzA text{fill:rgb(var(--cartWidget_cartIconText,var(--wix-color-8)));font:var(--cartWidget_cartIconTextFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-1)));font:var(--cartWidget_cartIconNumberFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx.M846Y_{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-8)))}.s1dvzA .ptVJi9{fill:rgba(var(--cartWidget_cartIconBubble,var(--wix-color-8)))}.tx4Jvn text.uxskpx{font-size:50px!important}.tx4Jvn.qZfbbY .uxskpx{font-size:45px!important}.tx4Jvn.fzGViX .uxskpx{font-size:37px!important}.DRb0Pe.qZfbbY .uxskpx{font-size:80px!important}.DRb0Pe.fzGViX .uxskpx{font-size:58px!important}.WWgVyT.qZfbbY .uxskpx{font-size:60px!important}.WWgVyT.fzGViX .uxskpx{font-size:45px!important}.XPTyZQ.qZfbbY .uxskpx{font-size:60px!important}.XPTyZQ.fzGViX .uxskpx{font-size:40px!important}.KpNISr.qZfbbY .uxskpx{font-size:70px!important}.KpNISr.fzGViX .uxskpx{font-size:60px!important}.l3royO.qZfbbY .uxskpx{font-size:80px!important}.l3royO.fzGViX .uxskpx{font-size:60px!important}.hAeODa.qZfbbY .uxskpx{font-size:75px}.hAeODa.fzGViX .uxskpx{font-size:55px}.spQjTI.qZfbbY .uxskpx{font-size:75px!important}.spQjTI.fzGViX .uxskpx{font-size:59px!important}.yA1DNe.qZfbbY .uxskpx{font-size:80px!important}.yA1DNe.fzGViX .uxskpx{font-size:65px!important}.Rl4inp.qZfbbY .uxskpx{font-size:75px!important}.Rl4inp.fzGViX .uxskpx{font-size:60px!important}.of9Ja5.qZfbbY .uxskpx{font-size:80px!important}.of9Ja5.fzGViX .uxskpx{font-size:60px!important}</style> | |
| 232 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidget.min.css">.sWmh0WA{position:relative;width:100%}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-6-center img{object-position:center center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-4-left img{object-position:left center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-5-right img{object-position:right center!important}.s__0oqQvY{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.sQHoZUY.orM9hcb--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.slGztSx{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}@media (forced-colors:active){.slGztSx{border:1px solid ButtonText!important}.slGztSx:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sMnC5St,.slGztSx:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sMnC5St{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}.sVmrY5m{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}@media (forced-colors:active){.sVmrY5m{border:1px solid ButtonText!important}.sVmrY5m:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sVmrY5m:not(:focus-visible):hover,.s__5lI9gM{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.s__5lI9gM{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}.sYP_tlR{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.sRwjrN7.och83_y--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.sA7jId1,.sQ47qqC{outline:0}.sf2MeN5 .snFVMUZ{font-size:14px}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-5-basic{background-color:#000;border-color:#000;color:#fff}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-14-basicSecondary{border-color:#000;color:#000}.sf2MeN5.otkPJbq---type-4-text:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-7-primary{color:#000}.s__3jxMoq{display:inline-block;position:relative}.s__3jxMoq.ouhSmpM--fluid{display:block;width:100%}.sONxQKD{background-color:#fff;border-color:#000;border-radius:initial;border-style:solid;border-width:1px;padding:initial}.soEFkgN{border-style:solid;height:0;margin:5px;position:absolute;width:0}.swpyXyw[data-placement*=right].sVK_8pY{padding-left:5px}.swpyXyw[data-placement*=right].sVK_8pY .soEFkgN{border-color:transparent #000 transparent transparent;border-width:5px 5px 5px 0;left:-5px;margin-left:5px;margin-right:0}.swpyXyw[data-placement*=left].sVK_8pY{padding-right:5px}.swpyXyw[data-placement*=left].sVK_8pY .soEFkgN{border-color:transparent transparent transparent #000;border-width:5px 0 5px 5px;margin-left:0;margin-right:5px;right:-5px}.swpyXyw[data-placement*=bottom].sVK_8pY{padding-top:5px}.swpyXyw[data-placement*=bottom].sVK_8pY .soEFkgN{border-color:transparent transparent #000 transparent;border-width:0 5px 5px 5px;margin-bottom:0;margin-top:5px;top:-5px}.swpyXyw[data-placement*=top].sVK_8pY{padding-bottom:5px}.swpyXyw[data-placement*=top].sVK_8pY .soEFkgN{border-color:#000 transparent transparent transparent;border-width:5px 5px 0 5px;bottom:-5px;margin-bottom:5px;margin-top:0}.s__72lfJk{position:relative}.sgKo7D0{--submitbuttonwut805068570-explicit-padding:11px;--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-padding-block-start:var(--submitbuttonwut805068570-explicit-padding);--wix-ui-tpa-button-padding-block-end:var(--submitbuttonwut805068570-explicit-padding);min-width:0!important;padding-inline:min(5%,15px)!important}.sgKo7D0 span{line-height:var(--submitbuttonwut805068570-submitButtonFont-line-height,1.2)!important}.sasFW9G{width:100%}.sEgWCPr{min-width:100px!important}.sCCUGm1{--wix-ui-tpa-text-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-text-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-text-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight)}.sCCUGm1:hover,.skxLJE4{color:rgb(var(--wix-forms-formSubmitButtonColorHover,var(--wix-color-5)))!important}.sqrHXDy{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity)}.s__637HSU{align-self:end;width:100%}.sYsuLUN{display:flex;height:100%;width:100%}.s__0wMXKP{display:flex;justify-content:space-between}.sAX9qX_{min-width:100px}.sCjRp4V{text-align:center}.sdvxq7V{height:15px!important;width:15px!important}.sCCUGm1 .sdvxq7V circle,.sgKo7D0 .sdvxq7V circle{stroke:rgb(var(--wix-forms-formSubmitButtonColor,var(--wix-color-1)))}.stkCIdj{height:0;visibility:hidden}.s__5wusy3{gap:var(--submitbuttonwut805068570-wix-forms-formRowSpacing,24px)}.sHBmGR5{pointer-events:none}@media (forced-colors:active){.sgKo7D0{border:1px solid ButtonText!important}.sCCUGm1:focus-visible,.sgKo7D0:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sgKo7D0.sqrHXDy,.sgKo7D0:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sFyI5ne .sONxQKD{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.s__3DOwO7{align-items:center;cursor:pointer;display:inline-flex}.sXyzDDh,.siwI922{flex-shrink:0}.s__3DOwO7.oX5PGLp--disabled{cursor:default}.s__3DOwO7[disabled]{pointer-events:none}.s__5mJsIL{--wut-error-color:rgb(var(--wix-ui-tpa-error-message-wrapper-error-color,223,49,49));--ErrorMessageWrapper329640366-transparent:0,0,0,0}.s__5mJsIL:not(.oKPjoIj--visible){margin-bottom:var(--wix-ui-tpa-error-message-wrapper-min-message-height)}.s__5mJsIL.oKPjoIj--visible{margin-bottom:calc(var(--wix-ui-tpa-error-message-wrapper-min-message-height, 28px) - 20px - 8px)}.sT4cyzB{align-items:flex-start;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-transparent)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-transparent)));border-radius:var(--wix-ui-tpa-error-message-wrapper-border-radius,4px);border-style:solid;border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,0);color:var(--wut-error-color);display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:1.4;margin-top:8px;min-height:20px}.sDw6n7W{flex-shrink:0;margin-inline-end:2px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sT4cyzB{--ErrorMessageWrapper329640366-border-color:223,49,49,0.2;--ErrorMessageWrapper329640366-background-color:253,243,243;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-background-color)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-border-color)));border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,1px);padding:8px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sDw6n7W{margin-inline-end:4px}.s__8wUiio{display:flex;justify-content:space-between;margin-top:8px}.s__8wUiio .sT4cyzB{margin-top:0;margin-inline-end:12px}.sigpKjl{--TextField2598911325-default-main-border-width:1px}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-ui-tpa-text-field-error-color,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-ui-tpa-text-field-error-color-rgb,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-ui-tpa-text-field-error-color-opacity);--wix-ui-tpa-error-message-wrapper-min-message-height:var(--wix-ui-tpa-text-field-error-message-min-height)}.smyXERm{align-items:center;background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-color:rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:0;box-sizing:border-box;display:flex;font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,var(--wix-font-Body-M-line-height));padding:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,var(--wix-font-Body-M-line-height));text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.stVd2iH{margin-bottom:8px}#SITE_CONTAINER.focus-ring-active .sigpKjl .smyXERm:focus-within,#SITE_CONTAINER.focus-ring-active .sigpKjl .sq3uuYJ:focus:not(:hover){box-shadow:0 0 0 1px #fff,0 0 0 3px #116dff!important;z-index:999}.smyXERm input:-webkit-autofill{-webkit-text-fill-color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));-webkit-box-shadow:0 0 0 1.5em rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1))) inset!important}.smyXERm.oYEaGDN---theme-3-box{border:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.oYEaGDN---theme-4-line{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-4-line{--TextField2598911325-transparent:0,0,0,0;background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--TextField2598911325-transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.o__6t2qui--focus,.smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-hover-border-color,var(--wix-ui-tpa-text-field-main-border-color,var(--wix-color-5))));border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px);border-width:var(--wix-ui-tpa-text-field-hover-border-width,var(--TextField2598911325-default-main-border-width,1px))}.smyXERm.oYEaGDN---theme-3-box.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-3-box:hover,.smyXERm.oYEaGDN---theme-4-line.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-4-line:hover{background-color:rgb(var(--wix-ui-tpa-text-field-hover-background-color-rgb,var(--wix-ui-tpa-text-field-main-background-color-rgb,transparent)),calc(var(--wix-ui-tpa-text-field-hover-background-color-opacity, var(--wix-ui-tpa-text-field-main-background-color-opacity, 1))*var(--wix-ui-tpa-text-field-hover-background-opacity, 1)))}.sigpKjl.oYEaGDN--disabled .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-disabled-border-color-rgb,var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-disabled-border-color-opacity, var(--wix-ui-tpa-text-field-main-border-color-opacity, 1))*.6))}.sigpKjl.oYEaGDN--disabled .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1)))}.sigpKjl.oYEaGDN--success .smyXERm{border-color:rgb(var(--wst-system-success-color-rgb,0,130,80),.6)}.sigpKjl.oYEaGDN--success .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--success .smyXERm:hover{border-color:#008250}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb,223,49,49)),.6)}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage .smyXERm{--TextField2598911325-wix-ui-tpa-text-field-border-color-internal:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb)));border-color:var(--TextField2598911325-wix-ui-tpa-text-field-border-color-internal,var(--wut-error-color,#df3131))!important}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,223,49,49))}.sigpKjl.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-prefix-padding-inline-end,4px)}.smyXERm .sjImZoO{background-color:transparent;border:0;box-sizing:border-box;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,24px);margin:0;min-width:0;padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-start:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,12px);vertical-align:middle;width:100%}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-readonly-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,24px);text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,0);padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,0)}.smyXERm.o__6t2qui--focus .sjImZoO,.smyXERm:hover .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-hover-text-color,var(--wix-ui-tpa-text-field-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sigpKjl.oYEaGDN--disabled .sfgvi8T svg,.smyXERm.o__6t2qui--disabled .sjImZoO{fill:rgb(var(--wix-ui-tpa-text-field-suffix-disabled-color,var(--wst-system-disabled-color-rgb)));color:rgb(var(--wix-ui-tpa-text-field-main-text-disabled-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.smyXERm.o__6t2qui--focus .sjImZoO{outline:0}.smyXERm .sjImZoO::selection{background:rgb(var(--wix-ui-tpa-text-field-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-field-main-text-color-opacity, 1)*.2))}.sisjT9x{align-items:center;display:flex;justify-content:flex-end;margin:0 -4px;padding:0;padding-inline-start:var(--wix-ui-tpa-text-field-suffix-padding-inline-start,8px);white-space:nowrap}.sisjT9x.oYEaGDN--arrows{height:100%}.smyXERm.oYEaGDN---theme-3-box{padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,12px)}.sYMteoM{align-items:center;display:flex;height:100%}.saZlyzg{display:inline-block;height:100%;width:4px}.sigpKjl .sxYAMB9{--wix-ui-tpa-icon-button-icon-color:var(--wix-ui-tpa-text-field-main-text-color,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-rgb:var(--wix-ui-tpa-text-field-main-text-color-rgb,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-opacity:var(--wix-ui-tpa-text-field-main-text-color-opacity);border-radius:20px;display:block;outline:0}.sigpKjl .sxYAMB9:focus,.sigpKjl .sxYAMB9:hover{background-color:transparent;opacity:1}.sfgvi8T{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));display:flex;height:100%}.smyXERm .sjImZoO::-webkit-input-placeholder,.smyXERm .sjImZoO::placeholder{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:var(--wst-paragraph-2-line-height);--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:var(--wst-paragraph-2-font-size);--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-placeholder-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));font-family:var(--wix-ui-tpa-text-field-placeholder-font-family,var(--wst-paragraph-2-overriden-font-family));font-size:var(--wix-ui-tpa-text-field-placeholder-font-size,var(--wst-paragraph-2-overriden-font-size));font-style:var(--wix-ui-tpa-text-field-placeholder-font-style,var(--wst-paragraph-2-overriden-font-style));font-variant:var(--wix-ui-tpa-text-field-placeholder-font-variant,var(--wst-paragraph-2-overriden-font-variant));font-weight:var(--wix-ui-tpa-text-field-placeholder-font-weight,var(--wst-paragraph-2-overriden-font-weight));line-height:var(--wix-ui-tpa-text-field-placeholder-font-line-height,var(--wst-paragraph-2-overriden-font-line-height));text-decoration:var(--wix-ui-tpa-text-field-placeholder-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration))}.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::-webkit-input-placeholder,.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::placeholder{color:rgb(var(--wix-ui-tpa-text-field-disabled-placeholder-color,var(--wix-color-29)))}.sdcwRYb{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.4;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));display:inline-block;font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));margin-bottom:8px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sigpKjl.oYEaGDN--disabled .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-disabled-label-color,var(--wix-color-29)))}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-label-font-size,14px);font-style:var(--wix-ui-tpa-text-field-readonly-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-label-font-line-height,1.4);text-decoration:var(--wix-ui-tpa-text-field-readonly-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sn_gi7t{color:rgb(var(--wix-ui-tpa-text-field-char-count-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));display:flex;font-family:var(--wix-ui-tpa-text-field-char-count-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-char-count-font-size,14px);font-style:var(--wix-ui-tpa-text-field-char-count-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-char-count-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-char-count-font-weight,var(--wix-font-Body-M-weight));justify-content:flex-end;line-height:var(--wix-ui-tpa-text-field-char-count-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-char-count-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage.oYEaGDN--hasErrorMessage .sn_gi7t{margin-top:0}.sXIeGiQ{display:none}.shfTOvJ{color:#df3131!important}.sW0lLQo{color:rgb(var(--wst-system-success-color-rgb,0,130,80))}.s__4zN_uk{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-4)));display:flex;margin-inline-start:var(--wix-ui-tpa-text-field-padding-inline-start,12px)}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-4)))}.s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-5)))}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-5)))}.smyXERm.oYEaGDN---theme-4-line .s__4zN_uk{margin-inline-start:0}.sSoKqc1{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.smyXERm input[type=number]::-webkit-inner-spin-button,.smyXERm input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.smyXERm input[type=number]{appearance:textfield}.smyXERm input{border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0)}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm input{border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0)}.smyXERm.o__6t2qui--focus input,.smyXERm:hover input{border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px)}.s__1MuoJD{display:flex;flex-direction:column;padding-bottom:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px);padding-top:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px)}.sFd_hFT{all:unset;cursor:pointer;height:16px;line-height:16px}.sigpKjl .sHJyM6t{color:rgb(var(--wix-ui-tpa-text-field-helper-text-color,var(--wix-color-4)));display:block;font-family:var(--wix-ui-tpa-text-field-helper-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-helper-text-font-size,14px);font-style:var(--wix-ui-tpa-text-field-helper-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-helper-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-helper-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-helper-text-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-helper-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sq3uuYJ{cursor:pointer;display:block;height:calc(max(24px,1em));width:calc(max(24px,1em))}.sq3uuYJ.oYEaGDN--disabled{cursor:default}.sE2SOPk{position:relative;width:100%}.sfXnMJy{font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,1.4);padding-top:3.6px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wix-color-4)));font:inherit;margin-bottom:0;overflow:hidden;padding-top:0;position:absolute;text-overflow:ellipsis;top:50%;transform:translateY(-50%);transition:all .1s ease-out;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;-ms-transition:all .1s ease-out;white-space:nowrap;width:calc(100% - 20px)}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-4)));font:inherit}.sigpKjl.oYEaGDN--hasFloatingLabelActive .sdcwRYb.oYEaGDN---style-8-floating{font-size:.875em;padding-top:2px;top:6px;transform:translateY(0)}.sigpKjl.oYEaGDN--hasFloatingLabel .sdcwRYb.oYEaGDN---theme-3-box{padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .sjImZoO{padding:0 0 6px;padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding:0 0 4px;padding-inline-start:0;text-indent:0}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:4px}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .smyXERm .sjImZoO{padding-inline-end:4px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box{padding-inline-end:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .s__4zN_uk{margin-inline-start:20px}.sjSK_mi{--Text1662509933-primary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-5)));--Text1662509933-secondary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-4)))}.sjSK_mi.ot7R_W1---priority-7-primary{color:var(--wut-text-color,var(--Text1662509933-primary-color))}.sjSK_mi.ot7R_W1---priority-9-secondary{color:var(--wut-placeholder-color,var(--Text1662509933-secondary-color))}.sjSK_mi.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.5em)}.sjSK_mi.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,2em)}.sjSK_mi.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,32px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.25em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,20px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.4em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.42em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,14px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.72em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.s__96XWLA{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sGQhrdY{--Spinner2369530196-diameter:var(--wix-ui-tpa-spinner-diameter,50px);animation:Spinner2369530196__rotate 2s linear infinite;height:var(--Spinner2369530196-diameter);left:auto;top:auto;width:var(--Spinner2369530196-diameter)}.sIOh1bP{stroke:rgb(var(--wix-ui-tpa-spinner-path-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,4px),10px);animation:Spinner2369530196__dash 1.5s ease-in-out infinite}.sGQhrdY.okHrCLG--slim .sIOh1bP{stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,1px),10px)}.sGQhrdY.okHrCLG--centered{left:calc(50% - var(--Spinner2369530196-diameter)/2);position:absolute;top:calc(50% - var(--Spinner2369530196-diameter)/2)}.sGQhrdY.okHrCLG--static,.sGQhrdY.okHrCLG--static .sIOh1bP{animation:none}@keyframes Spinner2369530196__rotate{to{transform:rotate(1turn)}}@keyframes Spinner2369530196__dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.sCptFO_{--SectionNotification1619105799-border-radius:2px;--SectionNotification1619105799-main-vertical-padding:9px;--SectionNotification1619105799-main-compact-vertical-padding:5px;--SectionNotification1619105799-main-left-padding:12px;--SectionNotification1619105799-main-right-padding:16px;--SectionNotification1619105799-content-padding:8px;--SectionNotification1619105799-line-height:20px;--SectionNotification1619105799-default-text-color:0,0,0;--SectionNotification1619105799-default-background-color:0,0,0;--SectionNotification1619105799-success-color:0,130,80;--SectionNotification1619105799-success-icon-color:rgb(var(--SectionNotification1619105799-success-color));--SectionNotification1619105799-wst-background-color:var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-background-color));--SectionNotification1619105799-wired-text-color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));--SectionNotification1619105799-wired-background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),0.05));background-color:#fff;border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));display:flex;height:100%;width:100%}.s_dGes_{background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),.05));border:1px solid hsla(0,0%,100%,.4);border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color))));display:flex;flex:1;flex-wrap:wrap;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;justify-content:center;padding:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-right-padding) var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-left-padding)}.syaQqqO{flex:1;flex-direction:row;padding:6px 0}.sW6Rvh9,.syaQqqO{align-items:center;display:flex}.sW6Rvh9{flex-direction:row;justify-content:center;margin:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-content-padding)}.sW6Rvh9:empty{display:none}.sCWNyRW{height:20px;transform:translateX(calc(-1*(var(--SectionNotification1619105799-content-padding)/2)))}.sCptFO_.oea4HGw--rtl .sCWNyRW{transform:translateX(calc((var(--SectionNotification1619105799-content-padding)/2)))}.sCWNyRW svg{fill:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));color:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));height:var(--SectionNotification1619105799-line-height)}.seJHu5h{flex:1;line-height:var(--SectionNotification1619105799-line-height);margin:0;min-width:200px}.seJHu5h:first-child{margin:0}.sRbY2lp{margin:0 calc(var(--SectionNotification1619105799-content-padding)/2)}.sCptFO_.oea4HGw--error .s_dGes_{background-color:rgb(223,49,49,.1)}.sCptFO_.oea4HGw--alert .s_dGes_{background-color:rgb(255,182,0,.1)}.sCptFO_.oea4HGw--wired{background-color:transparent}.sCptFO_.oea4HGw--wired .s_dGes_{background-color:var(--SectionNotification1619105799-wired-background-color);color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--success .s_dGes_{background-color:rgb(var(--SectionNotification1619105799-success-color),.1)}.sCptFO_.oea4HGw--success .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--error .sCWNyRW svg[fill=currentColor]{color:#df3131}.sCptFO_.oea4HGw--success .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw---size-7-compact .s_dGes_{padding-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);padding-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.sCptFO_.oea4HGw---size-7-compact .sW6Rvh9{margin-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);margin-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.svkvpiH{--WowImage1942816733-transparent:0,0,0,0;--WowImage1942816733-errorTextColor:255,255,255;display:flex;height:100%;position:relative}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain{width:100%}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain>*{align-items:center;border:inherit;border-radius:inherit;display:flex;justify-content:center}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain img{border:inherit;border-radius:inherit;height:unset!important;max-height:100%;max-width:100%;width:unset!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--verticalContainer img{width:min(var(--wut-source-width,100%),100%)!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--horizontalContainer img{height:min(var(--wut-source-height,100%),100%)!important}.svkvpiH.oTSGO_X--noImage{background-color:rgb(var(--wix-color-5),.2)}.svkvpiH img{vertical-align:middle}.svkvpiH.oTSGO_X--focalPoint img{object-position:var(--WowImage1942816733-focalPointX,0) var(--WowImage1942816733-focalPointY,0)}.svkvpiH.oTSGO_X---resize-7-contain .sALFxTu{object-fit:contain}.svkvpiH.oTSGO_X---resize-5-cover .sALFxTu{object-fit:cover}.svkvpiH.oTSGO_X--fluid .sALFxTu{height:100%;overflow:hidden;width:100%}.svkvpiH:not(.oTSGO_X--stretchImage){align-items:center}.svkvpiH.oTSGO_X--fluid:not(.oTSGO_X--stretchImage) .sALFxTu,.svkvpiH:not(.oTSGO_X--stretchImage) .sALFxTu{height:min(var(--wut-source-height,100%),100%);margin:0 auto;width:min(var(--wut-source-width,100%),100%)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom{overflow:hidden}.svkvpiH.oTSGO_X---hoverEffect-4-zoom .sALFxTu{overflow:initial;transform:scale(calc(100/107)) translate(-3.5%,-3.5%);transition:all .5s cubic-bezier(.18,.73,.63,1)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom:hover .sALFxTu{transform:scale(1) translate(-3.5%,-3.5%)}.svkvpiH.oTSGO_X---hoverEffect-6-darken:hover .sALFxTu{filter:brightness(85%) contrast(115%)}.svkvpiH:not(.oTSGO_X--isError){background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--WowImage1942816733-transparent)));border:var(--wix-ui-tpa-wow-image-border-width,0) solid rgb(var(--wix-ui-tpa-wow-image-border-color,var(--WowImage1942816733-transparent)));border-radius:var(--wix-ui-tpa-wow-image-border-radius,0);overflow:hidden}.svkvpiH:not(.oTSGO_X--isError).oTSGO_X--noImage{background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--wix-color-5),.2))}.svkvpiH .sALFxTu{opacity:var(--wix-ui-tpa-wow-image-image-opacity,1)}.svkvpiH.oTSGO_X--isError{background-color:rgb(var(--wix-color-2));position:relative}.svkvpiH.oTSGO_X--isError img{display:none}.svkvpiH .s__6u_3KK{align-items:center;background:rgb(0,0,0,.6);display:flex;flex-direction:column;height:100%;justify-content:center;position:absolute;width:100%;z-index:1}.sCRLHt8{--wix-ui-tpa-text-main-text-color:var(--WowImage1942816733-errorTextColor),1;--wix-ui-tpa-text-main-text-color-rgb:var(--WowImage1942816733-errorTextColor);--wix-ui-tpa-text-main-text-color-opacity:1;--wix-ui-tpa-text-main-text-font-text-decoration:var(--wix-ui-tpa-picker-font-style-text-decoration,var(--wix-font-Body-M-text-decoration));--wix-ui-tpa-text-main-text-font-line-height:var(--wix-ui-tpa-picker-font-style-line-height,1.5em);--wix-ui-tpa-text-main-text-font-family:var(--wix-ui-tpa-picker-font-style-family,var(--wix-font-Body-M-family));--wix-ui-tpa-text-main-text-font-size:var(--wix-ui-tpa-picker-font-style-size,14px);--wix-ui-tpa-text-main-text-font-style:var(--wix-ui-tpa-picker-font-style-style,var(--wix-font-Body-M-style));--wix-ui-tpa-text-main-text-font-variant:var(--wix-ui-tpa-picker-font-style-variant,var(--wix-font-Body-M-variant));--wix-ui-tpa-text-main-text-font-weight:var(--wix-ui-tpa-picker-font-style-weight,var(--wix-font-Body-M-weight))}.sPlOVIi{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sqE7FxN{color:rgb(var(--WowImage1942816733-errorTextColor))}.s__0hdo8Y{background-color:rgb(0,0,0,.6);display:none;height:100%;left:0;position:absolute;top:0;width:100%}.svkvpiH.oTSGO_X--loadSpinner:not(.oTSGO_X--loaded) .s__0hdo8Y{display:block}.s__3_30GG .sIOh1bP{stroke:#fff}.sFouHv5[data-hook=popover-portal]{display:initial}.sFouHv5 .sONxQKD{-webkit-font-smoothing:auto;background-color:#212121;border:1px solid #757575;border-radius:3px;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.1);color:#fff;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:20px;padding:4px 12px}.sFF_I56{margin:0;position:absolute}.sFF_I56,.sFF_I56 svg{display:block}.sFouHv5 .swpyXyw[data-placement*=top].suCSlDU{padding-bottom:6px}.sFouHv5 .swpyXyw[data-placement*=bottom].suCSlDU{padding-top:6px}.sFouHv5 .swpyXyw[data-placement*=left].suCSlDU{padding-right:6px}.sFouHv5 .swpyXyw[data-placement*=right].suCSlDU{padding-left:6px}.sFouHv5 .swpyXyw[data-placement*=top] .sFF_I56{bottom:-1px;height:7px;width:12px}.sFouHv5 .swpyXyw[data-placement*=bottom] .sFF_I56{height:7px;top:-1px;width:12px}.sFouHv5 .swpyXyw[data-placement*=left] .sFF_I56{height:12px;right:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=right] .sFF_I56{height:12px;left:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=top].sneWtR8{opacity:0;transform:scale(.9) translateY(3px)}.sFouHv5 .swpyXyw[data-placement*=bottom].sneWtR8{opacity:0;transform:scale(.9) translateY(-3px)}.sFouHv5 .swpyXyw[data-placement*=left].sneWtR8{opacity:0;transform:scale(.9) translateX(10px)}.sFouHv5 .swpyXyw[data-placement*=right].sneWtR8{opacity:0;transform:scale(.9) translateX(-10px)}.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{transition:transform .12s cubic-bezier(.25,.46,.45,.94),applyOpacity .12s cubic-bezier(.25,.46,.45,.94)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk,.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{opacity:1;transform:scale(1) translateY(0) translateX(0)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk.s__8Gqg5Z{opacity:0;transition:transform 80ms linear,applyOpacity 80ms linear}.sFouHv5.oFo_c_7---skin-5-error .sONxQKD{background-color:#df3131;border:1px solid hsla(0,0%,100%,.25)}.sFouHv5.oFo_c_7---skin-5-wired .sONxQKD{background-color:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-color:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wst-primary-background-color-rgb, var(--wix-color-1))));color:rgb(var(--wix-ui-tpa-tooltip-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path{fill:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wix-color-5)));stroke:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wix-color-5)))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:first-child{stroke:none}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:last-child{stroke-dasharray:0 17 17}.sFouHv5.oFo_c_7---skin-5-error .sFF_I56 path{fill:#df3131}.sSMZABS{--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal:rgb(var(--wix-ui-tpa-text-button-background-color));--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);background-color:var(--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal,transparent);border:0;font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));padding:0;text-decoration:none;text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV---priority-7-primary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))))}.sSMZABS.o__9L4TsV---priority-7-primary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV---priority-9-secondary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.sSMZABS.o__9L4TsV---priority-9-secondary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-7-primary.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-9-secondary.oX5PGLp--disabled{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.sNefrcN svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.sNefrcN svg:not([fill=currentColor]) path{stroke:currentColor;fill:none}.sL_FHv6:after,.sekO3oo:before{content:"";display:inline-block;height:1px;width:4px}.sjqP4Mv{--wix-ui-tpa-wow-image-background-color:var(--wix-ui-tpa-image-background-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-rgb:var(--wix-ui-tpa-image-background-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-opacity:var(--wix-ui-tpa-image-background-color-opacity);--wix-ui-tpa-wow-image-border-color:var(--wix-ui-tpa-image-border-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-rgb:var(--wix-ui-tpa-image-border-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-opacity:var(--wix-ui-tpa-image-border-color-opacity);--wix-ui-tpa-wow-image-border-width:var(--wix-ui-tpa-image-border-width);--wix-ui-tpa-wow-image-border-radius:var(--wix-ui-tpa-image-border-radius);--wix-ui-tpa-wow-image-image-opacity:var(--wix-ui-tpa-image-image-opacity)}.sjoXYIP{align-items:center;display:flex;justify-content:center}.sYygboQ{background-color:transparent;border:0;padding:0}.sYygboQ,.sjoXYIP{line-height:0}.sCD6_14 svg,.sjoXYIP{height:24px;width:24px}.sZstSKX{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.s__1NTrOu{border:0;display:inline-block;line-height:0;margin:0;padding:0;text-decoration:none}.s__1NTrOu.o__1Y_w3J--focus,.s__1NTrOu:hover{opacity:var(--wix-ui-tpa-icon-button-hover-opacity,.7)}.s__1NTrOu.o__0LZdzr--disabled{cursor:default}.s__1NTrOu.o__0LZdzr--disabled:hover{opacity:1}.sVnJn5y svg{display:block}.s__1NTrOu.o__0LZdzr--disabled.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));fill:none}.s__1NTrOu.o__0LZdzr--disabled.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---skin-4-line .sVnJn5y svg:not([fill=currentColor]) path,.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));fill:none}.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path,.s__1NTrOu.o__0LZdzr---skin-4-full .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu.o__0LZdzr--disabled .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---theme-4-none{background-color:transparent}.s__1NTrOu.o__0LZdzr---theme-3-box{align-items:center;background-color:rgb(var(--wix-ui-tpa-icon-button-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-radius:50%;display:inline-flex;height:32px;justify-content:center;width:32px}.sWHTiwe{--Button4291672415-primaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));--Button4291672415-primaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-primaryBorderColor));--Button4291672415-primaryHoverLegacyBorderColor:var(--Button4291672415-primaryHoverBorderColor),0.7;--Button4291672415-primaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-45))));--Button4291672415-secondaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--wix-color-48)));--Button4291672415-secondaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-secondaryBorderColor));--Button4291672415-secondaryHoverLegacyBorderColor:var(--Button4291672415-secondaryHoverBorderColor),0.7;--Button4291672415-secondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-54)));--Button4291672415-basicBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)));--Button4291672415-basicHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-basicBorderColor));--Button4291672415-basicHoverLegacyBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));--Button4291672415-basicSecondaryBorderColor:var(--Button4291672415-basicBorderColor);--Button4291672415-basicSecondaryHoverBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicSecondaryHoverLegacyBorderColor:var(--Button4291672415-basicSecondaryHoverBorderColor),0.7;--Button4291672415-basicSecondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29)));--Button4291672415-basicBorderWidth:0px;--Button4291672415-basicBorderExPaddingWidth:1px;--Button4291672415-basicSecondaryBorderWidth:1px;--Button4291672415-primaryBorderWidth:0px;--Button4291672415-primaryBorderExPaddingWidth:1px;--Button4291672415-secondaryBorderWidth:1px;--Button4291672415-borderStyle:solid;border-color:rgb(var(--wix-ui-tpa-button-main-border-color,var(--wix-color-39)));border-radius:var(--wix-ui-tpa-button-main-border-radius,0);border-style:solid;box-shadow:var(--wix-ui-tpa-button-main-box-shadow,0 0);box-sizing:content-box;font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing);line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));min-width:var(--wix-ui-tpa-button-min-width,100px);text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,0 0 transparent),var(--wix-ui-tpa-button-main-text-outline,0 0 transparent);text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out,border-width .2s ease-in-out}.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,underline)!important}.sWHTiwe .sezcxt9{margin:0 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_--fullWidth{box-sizing:border-box;width:100%}.sWHTiwe,.sWHTiwe.ojChOw_---priority-5-basic{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5),.7))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1),.7))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-color-1),0));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-primary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-primary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-primary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-primary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-primary-text-transform))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40)))))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-41))),calc(var(--wix-ui-tpa-button-main-background-color-opacity, 1) * .7)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-primary-color-rgb,var(--wix-color-43))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary .sewooAr{background-color:var(--wst-button-primary-text-highlight)}.sWHTiwe.ojChOw_---priority-9-secondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-secondary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-secondary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-secondary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-secondary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-secondary-text-transform))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-50),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-secondary-color-rgb,var(--wix-color-52))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sewooAr{background-color:var(--wst-button-secondary-text-highlight)}.sWHTiwe.oX5PGLp--disabled,.sWHTiwe.ojChOw_---priority-5-basic.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));border-color:rgb(var(--Button4291672415-basicDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-7-primary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-44))));border-color:rgb(var(--Button4291672415-primaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-46)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-disabled-background-color-opacity, 1)*0));border-color:rgb(var(--Button4291672415-basicSecondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.sWHTiwe.ojChOw_---priority-9-secondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-53))));border-color:rgb(var(--Button4291672415-secondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-secondary-background-color-rgb,var(--wix-color-55))))}.sWHTiwe.ojChOw_---size-4-tiny{padding:6px 16px}.sWHTiwe.ojChOw_---size-4-tiny.shzMJp6{padding:5.5px 16px}.sWHTiwe.ojChOw_---size-5-small{padding:7px 16px}.sWHTiwe,.sWHTiwe.ojChOw_---size-6-medium{padding:8px 16px}.sWHTiwe.ojChOw_---size-5-large,.sWHTiwe.ojChOw_--mobile,.sWHTiwe.ojChOw_--mobile.ojChOw_---size-6-medium{padding:10px 16px}.sbyYhb2 svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.s__19X6Eo:before,.segOfcF:after{content:"";display:inline-block;height:1px;width:var(--wix-ui-tpa-button-column-gap,4px)}.sWHTiwe .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-1)));transition:color .2s ease-in-out}.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-49)))}.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-52)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-5)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings{box-sizing:border-box;display:inline-flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings .sezcxt9,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings .sezcxt9{overflow:visible;text-overflow:unset;white-space:unset}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_--wrapContent{line-height:1.3!important;white-space:normal}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large:not(.ojChOw_--mobile),.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small:not(.ojChOw_--mobile){line-height:1}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_---size-4-tiny{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--mobile{padding:calc(17px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(14.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{border-width:var(--wix-ui-tpa-button-main-border-width,1px);padding-inline-end:var(--wix-ui-tpa-button-padding-inline-end,15px);padding-inline-start:var(--wix-ui-tpa-button-padding-inline-start,15px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:not(.ojChOw_---hoverStyle-9-underline):hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.oX5PGLp--disabled,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-small{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,5px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,5px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,7px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,7px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-large{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,11px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,11px)}.spPayPE{border-style:solid;box-sizing:border-box;cursor:pointer;display:block;overflow:hidden;position:relative;text-align:center;text-overflow:ellipsis;white-space:nowrap}.spPayPE .sewooAr{display:block;line-height:1.5}.spPayPE.ohrgDww--upgrade .sewooAr{display:inline-block;line-height:1}.syQvNy_{animation:StatesButton4232694921__bounce-in .5s ease 0s 1 normal;height:1.5em;top:.15em}.scujjIz{height:1.5em;width:1.5em}@keyframes StatesButton4232694921__bounce-in{0%{opacity:0;transform:translateY(30px)}32%{opacity:1;transform:translateY(-5px)}68%{opacity:1;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}.shszO9W{--wix-ui-tpa-text-field-main-label-font-text-decoration:var(--wix-forms-formInputLabelFont-text-decoration);--wix-ui-tpa-text-field-main-label-font-line-height:var(--wix-forms-formInputLabelFont-line-height);--wix-ui-tpa-text-field-main-label-font-family:var(--wix-forms-formInputLabelFont-family);--wix-ui-tpa-text-field-main-label-font-size:var(--wix-forms-formInputLabelFont-size);--wix-ui-tpa-text-field-main-label-font-style:var(--wix-forms-formInputLabelFont-style);--wix-ui-tpa-text-field-main-label-font-variant:var(--wix-forms-formInputLabelFont-variant);--wix-ui-tpa-text-field-main-label-font-weight:var(--wix-forms-formInputLabelFont-weight);--wix-ui-tpa-text-field-main-label-text-color:var(--wix-forms-formInputLabelColor);--wix-ui-tpa-text-field-main-label-text-color-rgb:var(--wix-forms-formInputLabelColor-rgb);--wix-ui-tpa-text-field-main-label-text-color-opacity:var(--wix-forms-formInputLabelColor-opacity);word-break:break-word}.shszO9W:empty:before{content:"\200B"}.shszO9W.sE7EeYv{display:block;height:0;margin:0;padding:0;visibility:hidden}.sHbjjkq{margin-inline-start:4px}.sHbjjkq,.smK0B6B{display:inline-block}.smK0B6B{margin-inline-end:4px}.sJ4C9d2{display:flex;flex-direction:column}.s__94TG4h{border-radius:8px;margin-bottom:8px;overflow:hidden;width:100%}.snZ_6f6{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-main-border-opacity:1;--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-disabled-color:var(--wix-forms-formInputDisabledValueColor);--wix-ui-tpa-text-field-main-text-disabled-color-rgb:var(--wix-forms-formInputDisabledValueColor-rgb);--wix-ui-tpa-text-field-main-text-disabled-color-opacity:var(--wix-forms-formInputDisabledValueColor-opacity);--wix-ui-tpa-text-field-readonly-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-readonly-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-readonly-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-readonly-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-readonly-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-readonly-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-readonly-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-readonly-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-readonly-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-readonly-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);--wix-ui-tpa-text-field-readonly-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-readonly-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-readonly-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-readonly-border-color:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)));--wix-ui-tpa-text-field-readonly-border-color-rgb:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -rgb);--wix-ui-tpa-text-field-readonly-border-color-opacity:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -opacity);--wix-ui-tpa-text-field-readonly-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-readonly-border-radius:var(--wix-forms-formInputBorderRadius);display:flex;flex-direction:column}.snZ_6f6 [placeholder]{text-overflow:ellipsis}.snZ_6f6 input::placeholder{color:rgb(var(--wix-forms-formInputPlaceholderColor,var(--wix-color-4)))!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{border-radius:var(--wix-forms-formInputBorderRadius,0)!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColor-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColor-opacity, 1)*--wix-forms-formInputBackgroundColor-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColorHover-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColorHover-opacity, 1)*--wix-forms-formInputBackgroundColorHover-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.sWgi58w{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);display:flex;flex-direction:column}.sy1z4yI{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:0px;--wix-ui-tpa-text-field-hover-border-width:0px;--wix-ui-tpa-text-field-readonly-border-width:0px;--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.s_wEX56{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity)}.snZ_6f6 div[data-theme=line]{padding-inline-start:12px}.sL5d0Ld div:has(>input){border-bottom-width:var(--wix-forms-formInputBorderBottomWidth,1px)!important;border-left-width:var(--wix-forms-formInputBorderLeftWidth,1px)!important;border-right-width:var(--wix-forms-formInputBorderRightWidth,1px)!important;border-top-width:var(--wix-forms-formInputBorderTopWidth,1px)!important}@media (forced-colors:active){.sL5d0Ld div:has(>input){border:1px solid CanvasText!important}.snZ_6f6:focus-within div:has(>input){outline:2px solid Highlight!important;outline-offset:2px!important}.sL5d0Ld div:has(>input):hover:not(:focus-within){outline:1px dashed CanvasText!important;outline-offset:1px!important}}.sN4uTVR,.s__5kY7XA{--wix-forms-formHeaderOneFont-text-decoration:var(--headerOneFont-text-decoration);--wix-forms-formHeaderOneFont-line-height:var(--headerOneFont-line-height);--wix-forms-formHeaderOneFont-family:var(--headerOneFont-family);--wix-forms-formHeaderOneFont-size:var(--headerOneFont-size);--wix-forms-formHeaderOneFont-style:var(--headerOneFont-style);--wix-forms-formHeaderOneFont-variant:var(--headerOneFont-variant);--wix-forms-formHeaderOneFont-weight:var(--headerOneFont-weight);--wix-forms-formHeaderOneColor:var(--headerOneColor);--wix-forms-formHeaderOneColor-rgb:var(--headerOneColor-rgb);--wix-forms-formHeaderOneColor-opacity:var(--headerOneColor-opacity);--wix-forms-formHeaderTwoFont-text-decoration:var(--headerTwoFont-text-decoration);--wix-forms-formHeaderTwoFont-line-height:var(--headerTwoFont-line-height);--wix-forms-formHeaderTwoFont-family:var(--headerTwoFont-family);--wix-forms-formHeaderTwoFont-size:var(--headerTwoFont-size);--wix-forms-formHeaderTwoFont-style:var(--headerTwoFont-style);--wix-forms-formHeaderTwoFont-variant:var(--headerTwoFont-variant);--wix-forms-formHeaderTwoFont-weight:var(--headerTwoFont-weight);--wix-forms-formHeaderTwoColor:var(--headerTwoColor);--wix-forms-formHeaderTwoColor-rgb:var(--headerTwoColor-rgb);--wix-forms-formHeaderTwoColor-opacity:var(--headerTwoColor-opacity);--wix-forms-formHeaderOneFontH1-text-decoration:var(--headerOneFontH1-text-decoration);--wix-forms-formHeaderOneFontH1-line-height:var(--headerOneFontH1-line-height);--wix-forms-formHeaderOneFontH1-family:var(--headerOneFontH1-family);--wix-forms-formHeaderOneFontH1-size:var(--headerOneFontH1-size);--wix-forms-formHeaderOneFontH1-style:var(--headerOneFontH1-style);--wix-forms-formHeaderOneFontH1-variant:var(--headerOneFontH1-variant);--wix-forms-formHeaderOneFontH1-weight:var(--headerOneFontH1-weight);--wix-forms-formHeaderTwoFontH2-text-decoration:var(--headerTwoFontH2-text-decoration);--wix-forms-formHeaderTwoFontH2-line-height:var(--headerTwoFontH2-line-height);--wix-forms-formHeaderTwoFontH2-family:var(--headerTwoFontH2-family);--wix-forms-formHeaderTwoFontH2-size:var(--headerTwoFontH2-size);--wix-forms-formHeaderTwoFontH2-style:var(--headerTwoFontH2-style);--wix-forms-formHeaderTwoFontH2-variant:var(--headerTwoFontH2-variant);--wix-forms-formHeaderTwoFontH2-weight:var(--headerTwoFontH2-weight);--wix-forms-formHeaderThreeFont-text-decoration:var(--headerThreeFont-text-decoration);--wix-forms-formHeaderThreeFont-line-height:var(--headerThreeFont-line-height);--wix-forms-formHeaderThreeFont-family:var(--headerThreeFont-family);--wix-forms-formHeaderThreeFont-size:var(--headerThreeFont-size);--wix-forms-formHeaderThreeFont-style:var(--headerThreeFont-style);--wix-forms-formHeaderThreeFont-variant:var(--headerThreeFont-variant);--wix-forms-formHeaderThreeFont-weight:var(--headerThreeFont-weight);--wix-forms-formHeaderThreeColor:var(--headerThreeColor);--wix-forms-formHeaderThreeColor-rgb:var(--headerThreeColor-rgb);--wix-forms-formHeaderThreeColor-opacity:var(--headerThreeColor-opacity);--wix-forms-formHeaderFourFont-text-decoration:var(--headerFourFont-text-decoration);--wix-forms-formHeaderFourFont-line-height:var(--headerFourFont-line-height);--wix-forms-formHeaderFourFont-family:var(--headerFourFont-family);--wix-forms-formHeaderFourFont-size:var(--headerFourFont-size);--wix-forms-formHeaderFourFont-style:var(--headerFourFont-style);--wix-forms-formHeaderFourFont-variant:var(--headerFourFont-variant);--wix-forms-formHeaderFourFont-weight:var(--headerFourFont-weight);--wix-forms-formHeaderFourColor:var(--headerFourColor);--wix-forms-formHeaderFourColor-rgb:var(--headerFourColor-rgb);--wix-forms-formHeaderFourColor-opacity:var(--headerFourColor-opacity);--wix-forms-formHeaderFiveFont-text-decoration:var(--headerFiveFont-text-decoration);--wix-forms-formHeaderFiveFont-line-height:var(--headerFiveFont-line-height);--wix-forms-formHeaderFiveFont-family:var(--headerFiveFont-family);--wix-forms-formHeaderFiveFont-size:var(--headerFiveFont-size);--wix-forms-formHeaderFiveFont-style:var(--headerFiveFont-style);--wix-forms-formHeaderFiveFont-variant:var(--headerFiveFont-variant);--wix-forms-formHeaderFiveFont-weight:var(--headerFiveFont-weight);--wix-forms-formHeaderFiveColor:var(--headerFiveColor);--wix-forms-formHeaderFiveColor-rgb:var(--headerFiveColor-rgb);--wix-forms-formHeaderFiveColor-opacity:var(--headerFiveColor-opacity);--wix-forms-formHeaderSixFont-text-decoration:var(--headerSixFont-text-decoration);--wix-forms-formHeaderSixFont-line-height:var(--headerSixFont-line-height);--wix-forms-formHeaderSixFont-family:var(--headerSixFont-family);--wix-forms-formHeaderSixFont-size:var(--headerSixFont-size);--wix-forms-formHeaderSixFont-style:var(--headerSixFont-style);--wix-forms-formHeaderSixFont-variant:var(--headerSixFont-variant);--wix-forms-formHeaderSixFont-weight:var(--headerSixFont-weight);--wix-forms-formHeaderSixColor:var(--headerSixColor);--wix-forms-formHeaderSixColor-rgb:var(--headerSixColor-rgb);--wix-forms-formHeaderSixColor-opacity:var(--headerSixColor-opacity);--wix-forms-formParagraphFont-text-decoration:var(--paragraphFont-text-decoration);--wix-forms-formParagraphFont-line-height:var(--paragraphFont-line-height);--wix-forms-formParagraphFont-family:var(--paragraphFont-family);--wix-forms-formParagraphFont-size:var(--paragraphFont-size);--wix-forms-formParagraphFont-style:var(--paragraphFont-style);--wix-forms-formParagraphFont-variant:var(--paragraphFont-variant);--wix-forms-formParagraphFont-weight:var(--paragraphFont-weight);--wix-forms-formParagraphColor:var(--paragraphColor);--wix-forms-formParagraphColor-rgb:var(--paragraphColor-rgb);--wix-forms-formParagraphColor-opacity:var(--paragraphColor-opacity);--wix-forms-formInputBackgroundColor:var(--inputBackgroundColor);--wix-forms-formInputBackgroundColor-rgb:var(--inputBackgroundColor-rgb);--wix-forms-formInputBackgroundColor-opacity:var(--inputBackgroundColor-opacity);--wix-forms-formInputBackgroundColorHover:var(--inputBackgroundColorHover);--wix-forms-formInputBackgroundColorHover-rgb:var(--inputBackgroundColorHover-rgb);--wix-forms-formInputBackgroundColorHover-opacity:var(--inputBackgroundColorHover-opacity);--wix-forms-formInputBorderColor:var(--inputBorderColor);--wix-forms-formInputBorderColor-rgb:var(--inputBorderColor-rgb);--wix-forms-formInputBorderColor-opacity:var(--inputBorderColor-opacity);--wix-forms-formInputBorderColorHover:var(--inputBorderColorHover);--wix-forms-formInputBorderColorHover-rgb:var(--inputBorderColorHover-rgb);--wix-forms-formInputBorderColorHover-opacity:var(--inputBorderColorHover-opacity);--wix-forms-formInputBorderWidth:calc(var(--inputBorderWidth) * 1px);--wix-forms-formInputBorderWidthHover:calc(var(--inputBorderWidthHover) * 1px);--wix-forms-formInputLabelFont-text-decoration:var(--inputLabelFont-text-decoration);--wix-forms-formInputLabelFont-line-height:var(--inputLabelFont-line-height);--wix-forms-formInputLabelFont-family:var(--inputLabelFont-family);--wix-forms-formInputLabelFont-size:var(--inputLabelFont-size);--wix-forms-formInputLabelFont-style:var(--inputLabelFont-style);--wix-forms-formInputLabelFont-variant:var(--inputLabelFont-variant);--wix-forms-formInputLabelFont-weight:var(--inputLabelFont-weight);--wix-forms-formInputLabelColor:var(--inputLabelColor);--wix-forms-formInputLabelColor-rgb:var(--inputLabelColor-rgb);--wix-forms-formInputLabelColor-opacity:var(--inputLabelColor-opacity);--wix-forms-formInputValueFont-text-decoration:var(--inputValueFont-text-decoration);--wix-forms-formInputValueFont-line-height:var(--inputValueFont-line-height);--wix-forms-formInputValueFont-family:var(--inputValueFont-family);--wix-forms-formInputValueFont-size:var(--inputValueFont-size);--wix-forms-formInputValueFont-style:var(--inputValueFont-style);--wix-forms-formInputValueFont-variant:var(--inputValueFont-variant);--wix-forms-formInputValueFont-weight:var(--inputValueFont-weight);--wix-forms-formInputValueColor:var(--inputValueColor);--wix-forms-formInputValueColor-rgb:var(--inputValueColor-rgb);--wix-forms-formInputValueColor-opacity:var(--inputValueColor-opacity);--wix-forms-formInputOptionColor:var(--inputOptionColor);--wix-forms-formInputOptionColor-rgb:var(--inputOptionColor-rgb);--wix-forms-formInputOptionColor-opacity:var(--inputOptionColor-opacity);--wix-forms-formInputPlaceholderColor:var(--inputPlaceholderColor);--wix-forms-formInputPlaceholderColor-rgb:var(--inputPlaceholderColor-rgb);--wix-forms-formInputPlaceholderColor-opacity:var(--inputPlaceholderColor-opacity);--wix-forms-formInputErrorColor:var(--inputErrorColor);--wix-forms-formInputErrorColor-rgb:var(--inputErrorColor-rgb);--wix-forms-formInputErrorColor-opacity:var(--inputErrorColor-opacity);--wix-forms-formInputBorderRadius:calc(var(--inputBorderRadius) * 1px);--wix-forms-formLinkColor:var(--linkColor);--wix-forms-formLinkColor-rgb:var(--linkColor-rgb);--wix-forms-formLinkColor-opacity:var(--linkColor-opacity);--wix-forms-formThankYouMessageFont-text-decoration:var(--thankYouMessageFont-text-decoration);--wix-forms-formThankYouMessageFont-line-height:var(--thankYouMessageFont-line-height);--wix-forms-formThankYouMessageFont-family:var(--thankYouMessageFont-family);--wix-forms-formThankYouMessageFont-size:var(--thankYouMessageFont-size);--wix-forms-formThankYouMessageFont-style:var(--thankYouMessageFont-style);--wix-forms-formThankYouMessageFont-variant:var(--thankYouMessageFont-variant);--wix-forms-formThankYouMessageFont-weight:var(--thankYouMessageFont-weight);--wix-forms-formThankYouMessageColor:var(--thankYouMessageColor);--wix-forms-formThankYouMessageColor-rgb:var(--thankYouMessageColor-rgb);--wix-forms-formThankYouMessageColor-opacity:var(--thankYouMessageColor-opacity);--wix-forms-formInputBorderStyle:var(--inputBorderStyle);--wix-forms-formInputSelectionColor:var(--inputSelectionColor);--wix-forms-formInputSelectionColor-rgb:var(--inputSelectionColor-rgb);--wix-forms-formInputSelectionColor-opacity:var(--inputSelectionColor-opacity);--wix-forms-formDropdownBackgroundColor:var(--dropdownBackgroundColor);--wix-forms-formDropdownBackgroundColor-rgb:var(--dropdownBackgroundColor-rgb);--wix-forms-formDropdownBackgroundColor-opacity:var(--dropdownBackgroundColor-opacity);--wix-forms-formDropdownOptionTextColor:var(--dropdownOptionTextColor);--wix-forms-formDropdownOptionTextColor-rgb:var(--dropdownOptionTextColor-rgb);--wix-forms-formDropdownOptionTextColor-opacity:var(--dropdownOptionTextColor-opacity);--wix-forms-formInputNoteFont-text-decoration:var(--inputNoteFont-text-decoration);--wix-forms-formInputNoteFont-line-height:var(--inputNoteFont-line-height);--wix-forms-formInputNoteFont-family:var(--inputNoteFont-family);--wix-forms-formInputNoteFont-size:var(--inputNoteFont-size);--wix-forms-formInputNoteFont-style:var(--inputNoteFont-style);--wix-forms-formInputNoteFont-variant:var(--inputNoteFont-variant);--wix-forms-formInputNoteFont-weight:var(--inputNoteFont-weight);--wix-forms-formInputNoteColor:var(--inputNoteColor);--wix-forms-formInputNoteColor-rgb:var(--inputNoteColor-rgb);--wix-forms-formInputNoteColor-opacity:var(--inputNoteColor-opacity);--wix-forms-formButtonsColor:var(--buttonsColor);--wix-forms-formButtonsColor-rgb:var(--buttonsColor-rgb);--wix-forms-formButtonsColor-opacity:var(--buttonsColor-opacity);--wix-forms-formButtonsColorHover:var(--buttonsColorHover);--wix-forms-formButtonsColorHover-rgb:var(--buttonsColorHover-rgb);--wix-forms-formButtonsColorHover-opacity:var(--buttonsColorHover-opacity);--wix-forms-formButtonsBackgroundColor:var(--buttonsBackgroundColor);--wix-forms-formButtonsBackgroundColor-rgb:var(--buttonsBackgroundColor-rgb);--wix-forms-formButtonsBackgroundColor-opacity:var(--buttonsBackgroundColor-opacity);--wix-forms-formButtonsBackgroundColorHover:var(--buttonsBackgroundColorHover);--wix-forms-formButtonsBackgroundColorHover-rgb:var(--buttonsBackgroundColorHover-rgb);--wix-forms-formButtonsBackgroundColorHover-opacity:var(--buttonsBackgroundColorHover-opacity);--wix-forms-formButtonsBorderColor:var(--buttonsBorderColor);--wix-forms-formButtonsBorderColor-rgb:var(--buttonsBorderColor-rgb);--wix-forms-formButtonsBorderColor-opacity:var(--buttonsBorderColor-opacity);--wix-forms-formButtonsBorderWidth:calc(var(--buttonsBorderWidth) * 1px);--wix-forms-formButtonsBorderRadius:calc(var(--buttonsBorderRadius) * 1px);--wix-forms-formButtonsFont-text-decoration:var(--buttonsFont-text-decoration);--wix-forms-formButtonsFont-line-height:var(--buttonsFont-line-height);--wix-forms-formButtonsFont-family:var(--buttonsFont-family);--wix-forms-formButtonsFont-size:var(--buttonsFont-size);--wix-forms-formButtonsFont-style:var(--buttonsFont-style);--wix-forms-formButtonsFont-variant:var(--buttonsFont-variant);--wix-forms-formButtonsFont-weight:var(--buttonsFont-weight);--wix-forms-formButtonsFontHover-text-decoration:var(--buttonsFontHover-text-decoration);--wix-forms-formButtonsFontHover-line-height:var(--buttonsFontHover-line-height);--wix-forms-formButtonsFontHover-family:var(--buttonsFontHover-family);--wix-forms-formButtonsFontHover-size:var(--buttonsFontHover-size);--wix-forms-formButtonsFontHover-style:var(--buttonsFontHover-style);--wix-forms-formButtonsFontHover-variant:var(--buttonsFontHover-variant);--wix-forms-formButtonsFontHover-weight:var(--buttonsFontHover-weight);--wix-forms-formNextButtonFont-text-decoration:var(--nextButtonFont-text-decoration);--wix-forms-formNextButtonFont-line-height:var(--nextButtonFont-line-height);--wix-forms-formNextButtonFont-family:var(--nextButtonFont-family);--wix-forms-formNextButtonFont-size:var(--nextButtonFont-size);--wix-forms-formNextButtonFont-style:var(--nextButtonFont-style);--wix-forms-formNextButtonFont-variant:var(--nextButtonFont-variant);--wix-forms-formNextButtonFont-weight:var(--nextButtonFont-weight);--wix-forms-formNextButtonFontHover-text-decoration:var(--nextButtonFontHover-text-decoration);--wix-forms-formNextButtonFontHover-line-height:var(--nextButtonFontHover-line-height);--wix-forms-formNextButtonFontHover-family:var(--nextButtonFontHover-family);--wix-forms-formNextButtonFontHover-size:var(--nextButtonFontHover-size);--wix-forms-formNextButtonFontHover-style:var(--nextButtonFontHover-style);--wix-forms-formNextButtonFontHover-variant:var(--nextButtonFontHover-variant);--wix-forms-formNextButtonFontHover-weight:var(--nextButtonFontHover-weight);--wix-forms-formNextButtonColor:var(--nextButtonColor);--wix-forms-formNextButtonColor-rgb:var(--nextButtonColor-rgb);--wix-forms-formNextButtonColor-opacity:var(--nextButtonColor-opacity);--wix-forms-formNextButtonColorHover:var(--nextButtonColorHover);--wix-forms-formNextButtonColorHover-rgb:var(--nextButtonColorHover-rgb);--wix-forms-formNextButtonColorHover-opacity:var(--nextButtonColorHover-opacity);--wix-forms-formNextButtonBackgroundColor:var(--nextButtonBackgroundColor);--wix-forms-formNextButtonBackgroundColor-rgb:var(--nextButtonBackgroundColor-rgb);--wix-forms-formNextButtonBackgroundColor-opacity:var(--nextButtonBackgroundColor-opacity);--wix-forms-formNextButtonBackgroundColorHover:var(--nextButtonBackgroundColorHover);--wix-forms-formNextButtonBackgroundColorHover-rgb:var(--nextButtonBackgroundColorHover-rgb);--wix-forms-formNextButtonBackgroundColorHover-opacity:var(--nextButtonBackgroundColorHover-opacity);--wix-forms-formNextButtonBorderColor:var(--nextButtonBorderColor);--wix-forms-formNextButtonBorderColor-rgb:var(--nextButtonBorderColor-rgb);--wix-forms-formNextButtonBorderColor-opacity:var(--nextButtonBorderColor-opacity);--wix-forms-formNextButtonBorderColorHover:var(--nextButtonBorderColorHover);--wix-forms-formNextButtonBorderColorHover-rgb:var(--nextButtonBorderColorHover-rgb);--wix-forms-formNextButtonBorderColorHover-opacity:var(--nextButtonBorderColorHover-opacity);--wix-forms-formNextButtonBorderWidth:calc(var(--nextButtonBorderWidth) * 1px);--wix-forms-formNextButtonBorderRadius:calc(var(--nextButtonBorderRadius) * 1px);--wix-forms-formPreviousButtonFont-text-decoration:var(--previousButtonFont-text-decoration);--wix-forms-formPreviousButtonFont-line-height:var(--previousButtonFont-line-height);--wix-forms-formPreviousButtonFont-family:var(--previousButtonFont-family);--wix-forms-formPreviousButtonFont-size:var(--previousButtonFont-size);--wix-forms-formPreviousButtonFont-style:var(--previousButtonFont-style);--wix-forms-formPreviousButtonFont-variant:var(--previousButtonFont-variant);--wix-forms-formPreviousButtonFont-weight:var(--previousButtonFont-weight);--wix-forms-formPreviousButtonFontHover-text-decoration:var(--previousButtonFontHover-text-decoration);--wix-forms-formPreviousButtonFontHover-line-height:var(--previousButtonFontHover-line-height);--wix-forms-formPreviousButtonFontHover-family:var(--previousButtonFontHover-family);--wix-forms-formPreviousButtonFontHover-size:var(--previousButtonFontHover-size);--wix-forms-formPreviousButtonFontHover-style:var(--previousButtonFontHover-style);--wix-forms-formPreviousButtonFontHover-variant:var(--previousButtonFontHover-variant);--wix-forms-formPreviousButtonFontHover-weight:var(--previousButtonFontHover-weight);--wix-forms-formPreviousButtonColor:var(--previousButtonColor);--wix-forms-formPreviousButtonColor-rgb:var(--previousButtonColor-rgb);--wix-forms-formPreviousButtonColor-opacity:var(--previousButtonColor-opacity);--wix-forms-formPreviousButtonColorHover:var(--previousButtonColorHover);--wix-forms-formPreviousButtonColorHover-rgb:var(--previousButtonColorHover-rgb);--wix-forms-formPreviousButtonColorHover-opacity:var(--previousButtonColorHover-opacity);--wix-forms-formPreviousButtonBackgroundColor:var(--previousButtonBackgroundColor);--wix-forms-formPreviousButtonBackgroundColor-rgb:var(--previousButtonBackgroundColor-rgb);--wix-forms-formPreviousButtonBackgroundColor-opacity:var(--previousButtonBackgroundColor-opacity);--wix-forms-formPreviousButtonBackgroundColorHover:var(--previousButtonBackgroundColorHover);--wix-forms-formPreviousButtonBackgroundColorHover-rgb:var(--previousButtonBackgroundColorHover-rgb);--wix-forms-formPreviousButtonBackgroundColorHover-opacity:var(--previousButtonBackgroundColorHover-opacity);--wix-forms-formPreviousButtonBorderColor:var(--previousButtonBorderColor);--wix-forms-formPreviousButtonBorderColor-rgb:var(--previousButtonBorderColor-rgb);--wix-forms-formPreviousButtonBorderColor-opacity:var(--previousButtonBorderColor-opacity);--wix-forms-formPreviousButtonBorderColorHover:var(--previousButtonBorderColorHover);--wix-forms-formPreviousButtonBorderColorHover-rgb:var(--previousButtonBorderColorHover-rgb);--wix-forms-formPreviousButtonBorderColorHover-opacity:var(--previousButtonBorderColorHover-opacity);--wix-forms-formPreviousButtonBorderWidth:calc(var(--previousButtonBorderWidth) * 1px);--wix-forms-formPreviousButtonBorderRadius:calc(var(--previousButtonBorderRadius) * 1px);--wix-forms-formSubmitButtonFont-text-decoration:var(--submitButtonFont-text-decoration);--wix-forms-formSubmitButtonFont-line-height:var(--submitButtonFont-line-height);--wix-forms-formSubmitButtonFont-family:var(--submitButtonFont-family);--wix-forms-formSubmitButtonFont-size:var(--submitButtonFont-size);--wix-forms-formSubmitButtonFont-style:var(--submitButtonFont-style);--wix-forms-formSubmitButtonFont-variant:var(--submitButtonFont-variant);--wix-forms-formSubmitButtonFont-weight:var(--submitButtonFont-weight);--wix-forms-formSubmitButtonFontHover-text-decoration:var(--submitButtonFontHover-text-decoration);--wix-forms-formSubmitButtonFontHover-line-height:var(--submitButtonFontHover-line-height);--wix-forms-formSubmitButtonFontHover-family:var(--submitButtonFontHover-family);--wix-forms-formSubmitButtonFontHover-size:var(--submitButtonFontHover-size);--wix-forms-formSubmitButtonFontHover-style:var(--submitButtonFontHover-style);--wix-forms-formSubmitButtonFontHover-variant:var(--submitButtonFontHover-variant);--wix-forms-formSubmitButtonFontHover-weight:var(--submitButtonFontHover-weight);--wix-forms-formSubmitButtonColor:var(--submitButtonColor);--wix-forms-formSubmitButtonColor-rgb:var(--submitButtonColor-rgb);--wix-forms-formSubmitButtonColor-opacity:var(--submitButtonColor-opacity);--wix-forms-formSubmitButtonColorHover:var(--submitButtonColorHover);--wix-forms-formSubmitButtonColorHover-rgb:var(--submitButtonColorHover-rgb);--wix-forms-formSubmitButtonColorHover-opacity:var(--submitButtonColorHover-opacity);--wix-forms-formSubmitButtonBackgroundColor:var(--submitButtonBackgroundColor);--wix-forms-formSubmitButtonBackgroundColor-rgb:var(--submitButtonBackgroundColor-rgb);--wix-forms-formSubmitButtonBackgroundColor-opacity:var(--submitButtonBackgroundColor-opacity);--wix-forms-formSubmitButtonBackgroundColorHover:var(--submitButtonBackgroundColorHover);--wix-forms-formSubmitButtonBackgroundColorHover-rgb:var(--submitButtonBackgroundColorHover-rgb);--wix-forms-formSubmitButtonBackgroundColorHover-opacity:var(--submitButtonBackgroundColorHover-opacity);--wix-forms-formSubmitButtonBorderColor:var(--submitButtonBorderColor);--wix-forms-formSubmitButtonBorderColor-rgb:var(--submitButtonBorderColor-rgb);--wix-forms-formSubmitButtonBorderColor-opacity:var(--submitButtonBorderColor-opacity);--wix-forms-formSubmitButtonBorderColorHover:var(--submitButtonBorderColorHover);--wix-forms-formSubmitButtonBorderColorHover-rgb:var(--submitButtonBorderColorHover-rgb);--wix-forms-formSubmitButtonBorderColorHover-opacity:var(--submitButtonBorderColorHover-opacity);--wix-forms-formSubmitButtonBorderWidth:calc(var(--submitButtonBorderWidth) * 1px);--wix-forms-formSubmitButtonBorderRadius:calc(var(--submitButtonBorderRadius) * 1px);--wix-forms-formColumnSpacing:calc(var(--columnSpacing) * 1px);--wix-forms-formRowSpacing:calc(var(--rowSpacing) * 1px);--wix-forms-formBackground:var(--formBackground);--wix-forms-formBackground-rgb:var(--formBackground-rgb);--wix-forms-formBackground-opacity:var(--formBackground-opacity);--wix-forms-formInputBorderLeftWidth:calc(var(--inputBorderLeftWidth) * 1px);--wix-forms-formInputBorderRightWidth:calc(var(--inputBorderRightWidth) * 1px);--wix-forms-formInputBorderTopWidth:calc(var(--inputBorderTopWidth) * 1px);--wix-forms-formInputBorderBottomWidth:calc(var(--inputBorderBottomWidth) * 1px)}.sN4uTVR{background:rgba(var(--formBackground));border-color:rgba(var(--borderColor));border-radius:calc(var(--borderRadius)*1px);border-style:solid;border-width:calc(var(--borderWidth)*1px);box-sizing:border-box;padding-bottom:calc(var(--verticalPadding)*1px);padding-left:calc(var(--horizontalPadding)*1px);padding-right:calc(var(--horizontalPadding)*1px);padding-top:calc(var(--verticalPadding)*1px)}.sHoCdRI{box-shadow:var(--index2490108247-shadowXOffset) var(--index2490108247-shadowYOffset) calc(var(--shadowBlur)*1px) calc(var(--shadowSize)*1px) rgba(var(--shadowColor))}@container (max-width: 288px){.sN4uTVR form fieldset>div{column-gap:0!important}}.CvQpuc{align-items:center;background:rgba(var(--formBackground));box-sizing:border-box;display:flex;flex-direction:column;height:100%;justify-content:center;padding:20px;text-align:center;width:100%}._Kekmv{font-size:18px!important;font-weight:700!important;line-height:24px!important;margin:24px 0 8px 0}.yriMaM{font-size:14px!important;font-weight:400!important;line-height:18px!important}._Kekmv,.yriMaM{font-family:Madefor,Helvetica Neue,Helvetica,Arial,sans-serif!important}.Qq9p0F{align-items:center;display:flex;flex-direction:column;text-align:center}.Qq9p0F .tQFwnj{margin-bottom:12px}.Qq9p0F .IqzMYA{margin-top:12px}.YSDaGO{animation:lWfcIs .4s ease}@keyframes lWfcIs{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.ckHV4G{display:flex;flex-direction:column;gap:var(--wix-forms-formRowSpacing,24px);width:100%}.GLWhGq{-moz-column-gap:var(--wix-forms-formColumnSpacing,24px);column-gap:var(--wix-forms-formColumnSpacing,24px)}.DXT5mJ{row-gap:var(--wix-forms-formRowSpacing,0)}.WLnTYL,.rSNHo6{margin-top:24px}.rSNHo6{align-items:center;color:rgb(var(--wix-forms-formInputErrorColor,223,49,49))!important;display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:16px;justify-content:center;line-height:1.4;min-height:20px}.PzL7AI{margin-right:2px}.pdfCm{direction:ltr}.jToQW{direction:rtl}.HosD-{background:transparent;border:none;cursor:pointer;display:flex;outline:none;padding-inline-end:14px;padding-inline-start:10px}.HosD-:hover{opacity:.7}.jToQW .HosD-{transform:scaleX(-1)}.HosD-:focus-visible .UM01p{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}.HosD- .UM01p{fill:#646464;color:#646464;outline:none;transition:transform .15s linear}.HosD- .UM01p.mTw6G{transform:rotate(90deg)}.ScyVy{overflow-wrap:break-word;width:100%;word-break:break-word}@media print{.HosD- .UM01p{transform:rotate(90deg)!important}}.l0N8d{align-items:center;cursor:auto;display:flex;margin:12px 0}.l0N8d .aXjZR{flex:1}.l0N8d p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.l0N8d p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}._3RkWr{margin:10px 0 12px}.ZvAeV{margin:0;min-height:48px}.ZvAeV._3RkWr{cursor:pointer;margin:2px 0}._2DBY0{align-self:start;display:flex;outline:none}._2DBY0,.eBhx-{padding-top:12px}.eBhx-{cursor:grab;position:absolute}.eBhx-:hover{opacity:.7}.eBhx- svg{fill:#646464;color:#646464}.NP-6A{right:-23px}.F6ia-{left:-23px}.QxwkN{display:flex;flex-direction:row;position:relative}.QxwkN p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.QxwkN p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}.ImTU9{margin:2px 0}.zTHZ5{cursor:pointer;display:flex;flex-direction:row;outline:none;width:100%}.zTHZ5:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.wCts7{display:flex;flex-direction:row}.aEBup{flex:0 0 48px}._3Sfx1{cursor:grabbing}.VqL-4,.hrdcY{min-width:0;width:100%}.hrdcY{display:flex;flex-direction:column}.VSINL{--ricos-custom-editor-add-plugin-button-position-inline-start:-36px}.bCXc8{display:none}@media print{.bCXc8{display:block!important}}.glob_fontElementMap,.zPN84{font-family:var(--ricos-font-family,unset)}.LRZrT{color:var(--ricos-custom-link-color,var(--ricos-action-color,#116dff));font-family:var(--ricos-custom-link-font-family,unset);font-size:var(--ricos-custom-link-font-size,unset);font-style:var(--ricos-custom-link-font-style,unset);font-weight:var(--ricos-custom-link-font-weight,unset);letter-spacing:var(--ricos-custom-link-letter-spacing,unset);line-height:var(--ricos-custom-link-line-height,unset);min-height:var(--ricos-custom-link-min-height,unset);-webkit-text-decoration:var(--ricos-custom-link-text-decoration,none);text-decoration:var(--ricos-custom-link-text-decoration,none)}._4dOZS:hover{cursor:text}.z7mqB:hover{cursor:pointer}.NI44M{display:flex;margin-right:5px}.md0f2{color:var(--ricos-settings-action-color,var(--ricos-action-color-fallback,#116dff));max-width:270px;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}@supports (color:rgb(from #000 r g b/0.1)){.md0f2{color:var(--ricos-settings-action-color,rgb(from var(--ricos-action-color,#116dff) min(r,150) min(g,150) min(b,150)))}}.md0f2:hover{text-decoration:underline}._2Wt3P:hover{cursor:pointer}@supports not (contain:inline-size){@media only screen and (max-width:480px){.md0f2{max-width:160px}}}@container (width < 480px){.md0f2{max-width:160px}}.ElBhne{width:100%}.dF3Dv0{align-items:center;background:rgba(var(--wix-forms-formBackground));display:flex;inset:0;justify-content:center;position:absolute;z-index:1}.dF3Dv0>div{height:auto;width:100%}.kLNiUo{border:none;margin:0;padding:0}.D8AT5x>fieldset,.zeyg5V{pointer-events:none}.D8AT5x>fieldset{visibility:hidden}.D8AT5x{position:relative}.M94ODH{align-items:center;display:flex;flex-direction:column;gap:12px}.M94ODH .QBpKk2{border-radius:4px!important}.eiknuc{display:block;height:100%;width:100%}.eiknuc img{max-width:var(--wix-img-max-width,100%)}.eiknuc[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.eiknuc[data-animate-blur] img[data-load-done]{filter:none}.CKafKt{font-size:12px!important;margin-top:8px}.mKhPRp{display:inline-flex}.A3sImb{cursor:default}</style> | |
| 233 | +<!-- Loadable Component comp-m8omf94t --> | |
| 234 | + | |
| 235 | +<!-- Loadable Component comp-m8omf94t --> | |
| 236 | +<script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[]</script><script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":[]}</script> | |
| 237 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 238 | +<style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.css">.sk_ESYz{--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formParagraphFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formParagraphFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formParagraphFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formParagraphFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formParagraphFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formParagraphFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formParagraphFont-weight)}.sk_ESYz,.sk_ESYz:hover{color:var(--ricosviewer2135568863-wix-forms-formLinkColor,rgba(var(--wix-color-8),1))!important}</style><style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/1277.chunk.min.css">.WdrX8{direction:rtl}.xWJx0{direction:ltr}.Y0khg{margin-left:0;margin-right:auto;z-index:1}.Y0khg:not(.g3kHM){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}}@container (width < 480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}.BzQKU{margin-left:auto;margin-right:0;z-index:1}.BzQKU:not(.g3kHM){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}}@container (width < 480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}.NY-QD{clear:both;display:block}.NY-QD:not(._0Z9DY){margin-left:auto;margin-right:auto;max-width:100%}._0Z9DY,.g3kHM{width:100%}.fwEUh ._0Z9DY,.fwEUh .g3kHM{margin:0 -8px;width:auto}.NwCLa{width:-moz-fit-content;width:fit-content}._50Ywj{margin-left:auto;margin-right:auto;max-width:100%}.eX7c9{width:min(350px,100%)!important}.fwEUh .eX7c9{width:50%}._0a1LY{margin-left:auto;margin-right:auto}.fwEUh ._0a1LY{width:150px}.sFMd1{display:flex}._6lkns,._6lkns>*{text-align:left}.Vbf1a,.Vbf1a>*{text-align:center}.NcJLH,.NcJLH>*{text-align:right}._0uG9a,._0uG9a>*{text-align:initial}.jswSl{text-align:justify!important;white-space:pre-wrap!important}.ZnMEC,.glob_fontElementMap,.zrLtk{font-family:var(--ricos-font-family,unset)}.pY8WU{max-width:100%}.zrLtk{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-content:start;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);height:100%;padding-block-end:var(--ricos-custom-container-padding-block-end,0);padding-block-start:var(--ricos-custom-container-padding-block-start,0);position:relative}.zrLtk:has([data-layout-banner=top]){padding-block-start:0}.zrLtk:has([data-layout-banner=bottom]){padding-block-end:0}.zrLtk *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.zrLtk .tlZw8{box-sizing:border-box;-moz-tab-size:40px;-o-tab-size:40px;tab-size:40px}.zrLtk .tlZw8 *,.zrLtk .tlZw8 :after,.zrLtk .tlZw8 :before{box-sizing:inherit}.zrLtk .tlZw8 input{box-sizing:border-box}.zrLtk.YHur4{padding-top:50px}.tlZw8{word-wrap:break-word;background-color:var(--ricos-bg-color-container,unset);color:var(--ricos-text-color,#212121);container-type:inline-size;font-size:16px;height:100%;line-height:1.5;overflow-wrap:break-word;white-space:pre-wrap;white-space:break-spaces;width:100%}.tlZw8:after{clear:both;content:"";display:table;line-height:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.tlZw8{font-size:14px}}}@container (width < 480px){.tlZw8{font-size:14px}}._7UvJA{width:100%}._7UvJA [data-breakout=normal]{padding-inline-end:var(--ricos-breakout-normal-padding-end,0);padding-inline-start:var(--ricos-breakout-normal-padding-start,0)}._7UvJA [data-breakout=fullWidth]{padding-inline-end:var(--ricos-breakout-full-width-padding-end,0);padding-inline-start:var(--ricos-breakout-full-width-padding-start,0)}._7UvJA [data-gap-spacer-top-margin]{margin-top:14px}._8B4zb{margin:2px 0}.DjL2Y,.b8HqH+.b8HqH{margin-top:20px}@media print{.tlZw8{height:auto}body{background-color:var(--rt-design-background-color,var(--rt-design-background-image-bg-color,var(--ricos-background-color,#fff)))}}._41BxQ{margin-inline-start:0!important}.wlxXY{margin-inline-start:40px!important}.uXCyf{margin-inline-start:80px!important}._746dJ{margin-inline-start:120px!important}.QC6Qc{margin-inline-start:160px!important}.sLvSN{margin-inline-start:200px!important}.WSqt-{margin-inline-start:240px!important}.Ik8pK{margin-left:0;margin-right:auto;z-index:1}.Ik8pK:not(.NtNUw){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}}@container (width < 480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}.U1e7f{margin-left:auto;margin-right:0;z-index:1}.U1e7f:not(.NtNUw){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}}@container (width < 480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}.odAbW{clear:both;display:block}.odAbW:not(._3XT4E){margin-left:auto;margin-right:auto;max-width:100%}.NtNUw,._3XT4E{width:100%}.A4ID1 .NtNUw,.A4ID1 ._3XT4E{margin:0 -8px;width:auto}.v36De{width:-moz-fit-content;width:fit-content}._0P5jU{margin-left:auto;margin-right:auto;max-width:100%}.Xq3fZ{width:min(350px,100%)!important}.A4ID1 .Xq3fZ{width:50%}.w6QFZ{margin-left:auto;margin-right:auto}.A4ID1 .w6QFZ{width:150px}.NrnwV{display:flex}._72eGU{margin:0}._18vC-{border:none;width:-moz-max-content;width:max-content}.EwjhL{overflow-x:auto}.EwjhL::-webkit-scrollbar{-webkit-appearance:none}.EwjhL::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:8px}.EwjhL::-webkit-scrollbar:horizontal{height:10px}.Ce-P5{max-width:100%}._9k8cw{text-decoration:none}.nWC1s:focus-visible{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}._4X3JV,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}._1XbUl,.v6mQw{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);list-style-position:outside;margin:0;min-height:var(--ricos-custom-p-min-height,unset);padding:0;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}._1XbUl>*,.v6mQw>*{background-color:var(--ricos-custom-p-background-color,unset)}._1XbUl>.frioR,.v6mQw>.frioR{list-style-type:inherit;margin-inline-start:1.5em;padding-inline-start:.5em}._1XbUl>.frioR[data-heading-level=headerOne],.v6mQw>.frioR[data-heading-level=headerOne]{font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerTwo],.v6mQw>.frioR[data-heading-level=headerTwo]{font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerThree],.v6mQw>.frioR[data-heading-level=headerThree]{font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFour],.v6mQw>.frioR[data-heading-level=headerFour]{font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFive],.v6mQw>.frioR[data-heading-level=headerFive]{font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerSix],.v6mQw>.frioR[data-heading-level=headerSix]{font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.VU1nK,.VU1nK>.frioR{list-style-type:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6){text-decoration:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6) :is([data-font-size],span[style*=font-size]){text-decoration:line-through}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6):not(:has([data-font-size],span[style*=font-size])){text-decoration:line-through}.frioR{position:relative;text-align:initial}.frioR[data-child-font-fit]>:is(p,h1,h2,h3,h4,h5,h6){font-size:inherit}[data-list-style-position=inside].frioR{list-style-position:inside;padding-inline-start:0}[data-list-style-position=inside].frioR>:first-child:not([aria-checked]),[data-list-style-position=inside].frioR>:first-child:not([aria-checked])>:first-child{display:inline}[data-list-style-position=inside].frioR[data-list-style=checkbox]>[aria-checked]{display:inline-grid;inset-inline-start:unset;margin-inline-end:.35em;position:relative;top:auto;transform:none;vertical-align:middle}[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span{display:inline}.v6mQw>[data-list-style-position=inside].frioR h2>span,.v6mQw>[data-list-style-position=inside].frioR h3>span,.v6mQw>[data-list-style-position=inside].frioR h4>span,.v6mQw>[data-list-style-position=inside].frioR h5>span,.v6mQw>[data-list-style-position=inside].frioR h6>span,.v6mQw>[data-list-style-position=inside].frioR>h1>span,.v6mQw>[data-list-style-position=inside].frioR>p>span>:first-child,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span>:first-child{margin-inline-start:.5em}ol .frioR{position:relative}ol .frioR>div>:not(ul)>span{margin-inline-start:.35em}.mqFOv{background-color:var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border:max(1px,1em/18) solid rgba(var(--ricos-theme-color-3-tuple,var(--ricos-action-color-tuple,var(--ricos-action-color-fallback-tuple,17,109,255))),.35);border-radius:.25em;box-sizing:border-box;display:inline-grid;font-size:inherit;height:1em;inset-inline-start:-1.25em;line-height:inherit;margin:0;padding:0;place-items:center;pointer-events:none;position:absolute;top:calc(.5lh - 1em / 2);width:1em}.mqFOv:after{border-bottom:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border-right:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));content:"";height:.5em;transform:translateY(-.0625em) rotate(45deg) scale(0);width:.25em}.mqFOv[aria-checked=true]{background-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)));border-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)))}.mqFOv[aria-checked=true]:after{transform:translateY(-.0625em) rotate(45deg) scale(1)}.eMsNb,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.eUxPq{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eUxPq{clear:both;margin:0}}}@container (width < 480px){.eUxPq{clear:both;margin:0}}.eBpC0{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);min-height:var(--ricos-custom-p-min-height,unset);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}.eBpC0>span>a,.eBpC0>span>span{background-color:var(--ricos-custom-p-background-color,unset)}.eBpC0:empty{height:24px}.zm9nI{display:block}.LRIFJ{background:var(--ricos-internal-layout-backdrop-gradient,var(--ricos-internal-layout-backdrop-color,transparent));clear:both;padding-bottom:var(--ricos-internal-layout-backdrop-padding-bottom,0);padding-top:var(--ricos-internal-layout-backdrop-padding-top,0);position:relative}.LRIFJ:before{background-image:var(--ricos-internal-layout-backdrop-image-src);background-position:var(--ricos-internal-layout-backdrop-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-backdrop-image-scaling);filter:var(--ricos-internal-layout-backdrop-image-blur,none);z-index:0}.LRIFJ:after,.LRIFJ:before{bottom:0;clip-path:inset(0);content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LRIFJ:after{background:var(--ricos-internal-layout-backdrop-overlay,transparent);z-index:1}.LmXEw{--ricos-internal-layout-display:grid;--ricos-internal-layout-horizontal-padding:0;display:var(--ricos-internal-layout-display,grid);flex-wrap:wrap;gap:var(--ricos-internal-layout-gap,20px);grid-template-columns:var(--ricos-internal-layout-grid-template,var(--ricos-internal-layout-column-template));justify-content:var(--ricos-internal-layout-justify-content,auto);margin:0 auto;position:relative;width:min(100%,var(--ricos-internal-layout-width,initial));z-index:2}.LmXEw.CvxCp ._8Xb4l,.LmXEw.P-WYy{background:var(--ricos-internal-layout-background-gradient,var(--ricos-internal-layout-background-color,transparent));border:var(--ricos-internal-layout-border-width,0) solid var(--ricos-internal-layout-border-color);border-radius:var(--ricos-internal-layout-border-radius,0)}.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:before{background-image:var(--ricos-internal-layout-background-image-src);background-position:var(--ricos-internal-layout-background-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-background-image-scaling);filter:var(--ricos-internal-layout-background-image-blur,none);z-index:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:after,.LmXEw.P-WYy:before{bottom:0;clip-path:inset(0 round var(--ricos-internal-layout-border-radius,0));content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.P-WYy:after{background:var(--ricos-internal-layout-background-overlay,transparent);z-index:1}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}}@container (width < 480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}.LmXEw.Ay9OM{--ricos-internal-layout-display:flex;--ricos-internal-layout-justify-content:center;--ricos-internal-layout-cell-min-width:100%;--ricos-internal-layout-cell-height:auto}*+.LmXEw{margin-top:20px}.LmXEw ._8Xb4l{display:flex;flex-direction:column;flex-grow:1;justify-content:var(--ricos-internal-layout-cell-vertical-alignment);max-width:var(--ricos-internal-layout-cell-min-width,auto);min-width:min(100%,var(--ricos-internal-layout-cell-min-width,0));outline:1px solid transparent;padding:var(--ricos-internal-layout-cell-padding-top,12px) var(--ricos-internal-layout-cell-padding-right,0) var(--ricos-internal-layout-cell-padding-bottom,12px) var(--ricos-internal-layout-cell-padding-left,0);position:relative;z-index:2}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}}@container (width < 480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}.LmXEw ._8Xb4l>*{z-index:1}.glob_fontElementMap,.zMFXn{font-family:var(--ricos-font-family,unset)}.LI-hR{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LI-hR{clear:both;margin:0}}}@container (width < 480px){.LI-hR{clear:both;margin:0}}.-MV-o,.DnKvS,.JLkq2,.L-PUE,.mabWC,.ymErU{font:inherit}.-MV-o:focus-visible,.DnKvS:focus-visible,.JLkq2:focus-visible,.L-PUE:focus-visible,.mabWC:focus-visible,.ymErU:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.JLkq2{color:var(--ricos-custom-h1-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}.JLkq2>*>span,.JLkq2>span span{background-color:var(--ricos-custom-h1-background-color,unset)}.JLkq2 a{font-size:inherit}.L-PUE{color:var(--ricos-custom-h2-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}.L-PUE>*>span,.L-PUE>span span{background-color:var(--ricos-custom-h2-background-color,unset)}.L-PUE a{font-size:inherit}.ymErU{color:var(--ricos-custom-h3-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}.ymErU>*>span,.ymErU>span span{background-color:var(--ricos-custom-h3-background-color,unset)}.ymErU a{font-size:inherit}.mabWC{color:var(--ricos-custom-h4-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}.mabWC>*>span,.mabWC>span span{background-color:var(--ricos-custom-h4-background-color,unset)}.mabWC a{font-size:inherit}.-MV-o{color:var(--ricos-custom-h5-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}.-MV-o>*>span,.-MV-o>span span{background-color:var(--ricos-custom-h5-background-color,unset)}.-MV-o a{font-size:inherit}.DnKvS{color:var(--ricos-custom-h6-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.DnKvS>*>span,.DnKvS>span span{background-color:var(--ricos-custom-h6-background-color,unset)}.DnKvS a{font-size:inherit}._7sCfP{display:block}.TPUvP{margin:15px 18px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}}@container (width < 480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgba(var(--ricos-fallback-color-tuple,0,0,0),.06));color:var(--ricos-custom-code-block-color,var(--ricos-text-color,#212121));font-family:Inconsolata,Menlo,Consolas,monospace;font-size:var(--ricos-custom-code-block-font-size,16px);line-height:var(--ricos-custom-code-block-line-height,26px);margin:var(--ricos-custom-code-block-margin,15px 18px);min-height:29px;padding:var(--ricos-custom-code-block-padding,2px 25px);-webkit-print-color-adjust:exact;print-color-adjust:exact;white-space:pre-wrap}@supports (color:rgb(from #000 r g b/0.1)){.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgb(from var(--ricos-fallback-color,#000000) r g b/.06))}}.TFibM .FNyc6{margin:1em 0}.-XiNm,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.pJkyn{display:flex;font-family:var(--ricos-custom-p-font-family,unset)}.eFTjz{border-inline-start-style:solid;border-inline-start-width:var(--ricos-custom-quote-border-width,3px);border-left-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));border-right-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));color:var(--ricos-custom-quote-color,unset);font-family:var(--ricos-custom-quote-font-family,unset);font-size:18px;font-size:var(--ricos-custom-quote-font-size,18px);font-style:normal;font-style:var(--ricos-custom-quote-font-style,normal);font-weight:var(--ricos-custom-quote-font-weight,unset);letter-spacing:var(--ricos-custom-quote-letter-spacing,unset);line-height:26px;line-height:var(--ricos-custom-quote-line-height,26px);margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,18px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,18px);max-width:100%;min-height:var(--ricos-custom-quote-min-height,unset);padding-bottom:var(--ricos-custom-quote-padding-bottom,6px);padding-top:var(--ricos-custom-quote-padding-top,6px);padding-inline-start:var(--ricos-custom-quote-padding-inline-start,18px);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-quote-text-decoration,unset);text-decoration:var(--ricos-custom-quote-text-decoration,unset)}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}}@container (width < 480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}</style> | |
| 239 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 240 | +<script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[8455,778]</script><script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["form-app-header","form-app-wix-ricos-viewer"]}</script><script async="" data-chunk="form-app-header" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.js"></script><script async="" data-chunk="form-app-wix-ricos-viewer" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-wix-ricos-viewer.chunk.min.js"></script> | |
| 241 | +<style id="css_masterPage">@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w10-light.woff2') format('woff2'); unicode-range: U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116;font-display: swap; | |
| 242 | +} | |
| 243 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w02-light.woff2') format('woff2'); unicode-range: U+000D, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+01FA-01FF, U+0218-021B, U+0237, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03C0, U+1E80-1E85, U+1EF2-1EF3, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 244 | +} | |
| 245 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2') format('woff2'); unicode-range: U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+03BC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 246 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 247 | +} | |
| 248 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 249 | +} | |
| 250 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 251 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 252 | +} | |
| 253 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 254 | +} | |
| 255 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 256 | +} | |
| 257 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 258 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 259 | +} | |
| 260 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 261 | +} | |
| 262 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 263 | +} | |
| 264 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 265 | +} | |
| 266 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 267 | +} | |
| 268 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 269 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 270 | +} | |
| 271 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 272 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 273 | +} | |
| 274 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 275 | +} | |
| 276 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 277 | +} | |
| 278 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 279 | +} | |
| 280 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 281 | +} | |
| 282 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 283 | +} | |
| 284 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 285 | +} | |
| 286 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 287 | +} | |
| 288 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 289 | +} | |
| 290 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 291 | +} | |
| 292 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 293 | +} | |
| 294 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 295 | +} | |
| 296 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 297 | +} | |
| 298 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 299 | +} | |
| 300 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 301 | +} | |
| 302 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 303 | +} | |
| 304 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 305 | +} | |
| 306 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 307 | +} | |
| 308 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 309 | +} | |
| 310 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 311 | +}@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXd0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 312 | +} | |
| 313 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w2aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 314 | +} | |
| 315 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXV0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 316 | +} | |
| 317 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w0aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 318 | +} | |
| 319 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXx0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 320 | +} | |
| 321 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 322 | +} | |
| 323 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 324 | +} | |
| 325 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0ppC8MLnbtg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 326 | +} | |
| 327 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXp-p7K4KLg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 328 | +}#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus, #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus ~ .wixSdkShowFocusOnSibling{--focus-ring-box-shadow:0 0 0 1px #ffffff, 0 0 0 3px #116dff;box-shadow:var(--focus-ring-box-shadow) !important;z-index:1;}.has-inner-focus-ring{--focus-ring-box-shadow:inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;}:root, :host, .spxThemeOverride{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;--color_0:255,255,255;--color_1:255,255,255;--color_2:0,0,0;--color_3:237,28,36;--color_4:0,136,203;--color_5:255,203,5;--color_6:114,114,114;--color_7:176,176,176;--color_8:255,255,255;--color_9:114,114,114;--color_10:176,176,176;--color_11:250,250,250;--color_12:153,153,153;--color_13:102,102,102;--color_14:51,51,51;--color_15:0,0,0;--color_16:183,195,220;--color_17:139,154,186;--color_18:75,99,151;--color_19:50,66,101;--color_20:25,33,50;--color_21:165,182,220;--color_22:124,143,186;--color_23:75,99,151;--color_24:0,36,116;--color_25:0,18,58;--color_26:186,204,218;--color_27:141,164,180;--color_28:80,117,143;--color_29:53,78,95;--color_30:27,39,48;--color_31:255,233,223;--color_32:255,191,161;--color_33:250,133,79;--color_34:234,96,32;--color_35:201,64,1;--color_36:250,250,250;--color_37:0,0,0;--color_38:153,153,153;--color_39:102,102,102;--color_40:51,51,51;--color_41:75,99,151;--color_42:75,99,151;--color_43:75,99,151;--color_44:75,99,151;--color_45:0,0,0;--color_46:51,51,51;--color_47:0,0,0;--color_48:75,99,151;--color_49:75,99,151;--color_50:250,250,250;--color_51:75,99,151;--color_52:75,99,151;--color_53:250,250,250;--color_54:102,102,102;--color_55:102,102,102;--color_56:250,250,250;--color_57:250,250,250;--color_58:75,99,151;--color_59:75,99,151;--color_60:250,250,250;--color_61:75,99,151;--color_62:75,99,151;--color_63:250,250,250;--color_64:102,102,102;--color_65:102,102,102;--wix-ads-height:0px;--sticky-offset:0px;--wix-ads-top-height:0px;--site-width:980px;--above-all-z-index:100000;--portals-z-index:100001;--wix-opt-in-direction:ltr;--wix-opt-in-direction-multiplier:1;--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--minViewportSize:320;--maxViewportSize:1920;--customScaleViewportLimit:clamp(var(--minViewportSize) * 1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize) * 1px));}.theme-vars, .max-width-container{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;}.max-width-container{--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;}.font_0{font:var(--font_0);color:rgb(var(--color_15));letter-spacing:0em;}.font_1{font:var(--font_1);color:rgb(var(--color_14));letter-spacing:0em;}.font_2{font:var(--font_2);color:rgb(var(--color_15));letter-spacing:0em;}.font_3{font:var(--font_3);color:rgb(var(--color_15));letter-spacing:0em;}.font_4{font:var(--font_4);color:rgb(var(--color_15));letter-spacing:0em;}.font_5{font:var(--font_5);color:rgb(var(--color_15));letter-spacing:0em;}.font_6{font:var(--font_6);color:rgb(var(--color_15));letter-spacing:0em;}.font_7{font:var(--font_7);color:rgb(var(--color_15));letter-spacing:0em;}.font_8{font:var(--font_8);color:rgb(var(--color_15));letter-spacing:0em;}.font_9{font:var(--font_9);color:rgb(var(--color_15));letter-spacing:0em;}.font_10{font:var(--font_10);color:rgb(var(--color_14));letter-spacing:0em;}.color_0{color:rgb(var(--color_0));}.color_1{color:rgb(var(--color_1));}.color_2{color:rgb(var(--color_2));}.color_3{color:rgb(var(--color_3));}.color_4{color:rgb(var(--color_4));}.color_5{color:rgb(var(--color_5));}.color_6{color:rgb(var(--color_6));}.color_7{color:rgb(var(--color_7));}.color_8{color:rgb(var(--color_8));}.color_9{color:rgb(var(--color_9));}.color_10{color:rgb(var(--color_10));}.color_11{color:rgb(var(--color_11));}.color_12{color:rgb(var(--color_12));}.color_13{color:rgb(var(--color_13));}.color_14{color:rgb(var(--color_14));}.color_15{color:rgb(var(--color_15));}.color_16{color:rgb(var(--color_16));}.color_17{color:rgb(var(--color_17));}.color_18{color:rgb(var(--color_18));}.color_19{color:rgb(var(--color_19));}.color_20{color:rgb(var(--color_20));}.color_21{color:rgb(var(--color_21));}.color_22{color:rgb(var(--color_22));}.color_23{color:rgb(var(--color_23));}.color_24{color:rgb(var(--color_24));}.color_25{color:rgb(var(--color_25));}.color_26{color:rgb(var(--color_26));}.color_27{color:rgb(var(--color_27));}.color_28{color:rgb(var(--color_28));}.color_29{color:rgb(var(--color_29));}.color_30{color:rgb(var(--color_30));}.color_31{color:rgb(var(--color_31));}.color_32{color:rgb(var(--color_32));}.color_33{color:rgb(var(--color_33));}.color_34{color:rgb(var(--color_34));}.color_35{color:rgb(var(--color_35));}.color_36{color:rgb(var(--color_36));}.color_37{color:rgb(var(--color_37));}.color_38{color:rgb(var(--color_38));}.color_39{color:rgb(var(--color_39));}.color_40{color:rgb(var(--color_40));}.color_41{color:rgb(var(--color_41));}.color_42{color:rgb(var(--color_42));}.color_43{color:rgb(var(--color_43));}.color_44{color:rgb(var(--color_44));}.color_45{color:rgb(var(--color_45));}.color_46{color:rgb(var(--color_46));}.color_47{color:rgb(var(--color_47));}.color_48{color:rgb(var(--color_48));}.color_49{color:rgb(var(--color_49));}.color_50{color:rgb(var(--color_50));}.color_51{color:rgb(var(--color_51));}.color_52{color:rgb(var(--color_52));}.color_53{color:rgb(var(--color_53));}.color_54{color:rgb(var(--color_54));}.color_55{color:rgb(var(--color_55));}.color_56{color:rgb(var(--color_56));}.color_57{color:rgb(var(--color_57));}.color_58{color:rgb(var(--color_58));}.color_59{color:rgb(var(--color_59));}.color_60{color:rgb(var(--color_60));}.color_61{color:rgb(var(--color_61));}.color_62{color:rgb(var(--color_62));}.color_63{color:rgb(var(--color_63));}.color_64{color:rgb(var(--color_64));}.color_65{color:rgb(var(--color_65));}.backcolor_0{background-color:rgb(var(--color_0));}.backcolor_1{background-color:rgb(var(--color_1));}.backcolor_2{background-color:rgb(var(--color_2));}.backcolor_3{background-color:rgb(var(--color_3));}.backcolor_4{background-color:rgb(var(--color_4));}.backcolor_5{background-color:rgb(var(--color_5));}.backcolor_6{background-color:rgb(var(--color_6));}.backcolor_7{background-color:rgb(var(--color_7));}.backcolor_8{background-color:rgb(var(--color_8));}.backcolor_9{background-color:rgb(var(--color_9));}.backcolor_10{background-color:rgb(var(--color_10));}.backcolor_11{background-color:rgb(var(--color_11));}.backcolor_12{background-color:rgb(var(--color_12));}.backcolor_13{background-color:rgb(var(--color_13));}.backcolor_14{background-color:rgb(var(--color_14));}.backcolor_15{background-color:rgb(var(--color_15));}.backcolor_16{background-color:rgb(var(--color_16));}.backcolor_17{background-color:rgb(var(--color_17));}.backcolor_18{background-color:rgb(var(--color_18));}.backcolor_19{background-color:rgb(var(--color_19));}.backcolor_20{background-color:rgb(var(--color_20));}.backcolor_21{background-color:rgb(var(--color_21));}.backcolor_22{background-color:rgb(var(--color_22));}.backcolor_23{background-color:rgb(var(--color_23));}.backcolor_24{background-color:rgb(var(--color_24));}.backcolor_25{background-color:rgb(var(--color_25));}.backcolor_26{background-color:rgb(var(--color_26));}.backcolor_27{background-color:rgb(var(--color_27));}.backcolor_28{background-color:rgb(var(--color_28));}.backcolor_29{background-color:rgb(var(--color_29));}.backcolor_30{background-color:rgb(var(--color_30));}.backcolor_31{background-color:rgb(var(--color_31));}.backcolor_32{background-color:rgb(var(--color_32));}.backcolor_33{background-color:rgb(var(--color_33));}.backcolor_34{background-color:rgb(var(--color_34));}.backcolor_35{background-color:rgb(var(--color_35));}.backcolor_36{background-color:rgb(var(--color_36));}.backcolor_37{background-color:rgb(var(--color_37));}.backcolor_38{background-color:rgb(var(--color_38));}.backcolor_39{background-color:rgb(var(--color_39));}.backcolor_40{background-color:rgb(var(--color_40));}.backcolor_41{background-color:rgb(var(--color_41));}.backcolor_42{background-color:rgb(var(--color_42));}.backcolor_43{background-color:rgb(var(--color_43));}.backcolor_44{background-color:rgb(var(--color_44));}.backcolor_45{background-color:rgb(var(--color_45));}.backcolor_46{background-color:rgb(var(--color_46));}.backcolor_47{background-color:rgb(var(--color_47));}.backcolor_48{background-color:rgb(var(--color_48));}.backcolor_49{background-color:rgb(var(--color_49));}.backcolor_50{background-color:rgb(var(--color_50));}.backcolor_51{background-color:rgb(var(--color_51));}.backcolor_52{background-color:rgb(var(--color_52));}.backcolor_53{background-color:rgb(var(--color_53));}.backcolor_54{background-color:rgb(var(--color_54));}.backcolor_55{background-color:rgb(var(--color_55));}.backcolor_56{background-color:rgb(var(--color_56));}.backcolor_57{background-color:rgb(var(--color_57));}.backcolor_58{background-color:rgb(var(--color_58));}.backcolor_59{background-color:rgb(var(--color_59));}.backcolor_60{background-color:rgb(var(--color_60));}.backcolor_61{background-color:rgb(var(--color_61));}.backcolor_62{background-color:rgb(var(--color_62));}.backcolor_63{background-color:rgb(var(--color_63));}.backcolor_64{background-color:rgb(var(--color_64));}.backcolor_65{background-color:rgb(var(--color_65));}.theme-vars{--variables-m28o2bcx:1440px;}#SITE_HEADER{--bg-overlay-color:transparent;--bg-gradient:none;}#SITE_PAGES{--transition-duration:0ms;}#SITE_FOOTER{--bg-overlay-color:transparent;--bg-gradient:none;}</style> | |
| 329 | +<style id="css_ebqqm">@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 330 | +} | |
| 331 | +@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 332 | +}@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 333 | +} | |
| 334 | +@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 335 | +}@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;font-display: swap; | |
| 336 | +} | |
| 337 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;font-display: swap; | |
| 338 | +} | |
| 339 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 340 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 341 | +} | |
| 342 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 343 | +} | |
| 344 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 345 | +}@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 346 | +} | |
| 347 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 348 | +} | |
| 349 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122;font-display: swap; | |
| 350 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 351 | +} | |
| 352 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 353 | +} | |
| 354 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 355 | +} | |
| 356 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 357 | +}@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 358 | +} | |
| 359 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 360 | +} | |
| 361 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 362 | +} | |
| 363 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 364 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 365 | +} | |
| 366 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 367 | +} | |
| 368 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 369 | +} | |
| 370 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 371 | +} | |
| 372 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 373 | +} | |
| 374 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 375 | +}@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 376 | +} | |
| 377 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 378 | +} | |
| 379 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 380 | +} | |
| 381 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 382 | +} | |
| 383 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 384 | +} | |
| 385 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 386 | +}@font-face {font-family: 'madefor-display-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/26656ec7-c27d-4bdc-a9f4-6b498bbfad69/madefor-display.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f7531dde-c39a-485c-a204-c09154e8d163/v1/madefor-display-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 387 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 388 | +} | |
| 389 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 390 | +}@font-face {font-family: 'madefor-text-bold'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/75da2848-97d9-41cf-accf-3f221b33b291/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 391 | +} | |
| 392 | +@font-face {font-family: 'madefor-text-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/e1e43510-79c8-4017-b833-3c8baaf5dcb6/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 393 | +}@font-face {font-family: 'madefor-text-mediumbold'; font-style: normal; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/dbfbb677-95bd-4b2a-87fb-2ba3101a5f68/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 394 | +} | |
| 395 | +@font-face {font-family: 'madefor-text-mediumbold'; font-style: italic; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/6d5055c2-7d2e-47e7-ba22-fb81f960dffb/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 396 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 397 | +} | |
| 398 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 399 | +} | |
| 400 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 401 | +} | |
| 402 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 403 | +} | |
| 404 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 405 | +} | |
| 406 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 407 | +} | |
| 408 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 409 | +} | |
| 410 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 411 | +} | |
| 412 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 413 | +} | |
| 414 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 415 | +} | |
| 416 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 417 | +} | |
| 418 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 419 | +} | |
| 420 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 421 | +} | |
| 422 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 423 | +} | |
| 424 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 425 | +} | |
| 426 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 427 | +} | |
| 428 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 429 | +} | |
| 430 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 431 | +} | |
| 432 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 433 | +} | |
| 434 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 435 | +}@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w05-reg.woff2') format('woff2'); unicode-range: U+0000, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+017F, U+018F, U+019D, U+01A0-01A1, U+01AF-01B0, U+01E6-01E7, U+01EA-01EB, U+01FA-01FF, U+0218-021B, U+0232-0233, U+0237, U+0259, U+0272, U+02B0, U+02BB-02BC, U+02C9, U+02CB, U+02D8-02D9, U+02DB, U+02DD, U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D7, U+0400-045F, U+0472-0475, U+048A-04FF, U+0510-0513, U+051C-051D, U+0524-0527, U+052E-052F, U+1E02-1E03, U+1E0A-1E0B, U+1E1E-1E1F, U+1E22-1E23, U+1E56-1E57, U+1E60-1E61, U+1E6A-1E6B, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200A, U+2015, U+201B, U+2032-2033, U+203D-203E, U+2070, U+2074-2079, U+207D-2089, U+208D-208E, U+20A1, U+20A3-20A4, U+20A6-20AB, U+20B4, U+20B8-20BA, U+20BC-20BD, U+2113, U+2116-2117, U+2120, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2190-2193, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22B2-22B3, U+22C5, U+2318, U+25A0, U+25B2, U+25BC, U+25CA, U+25CF, U+2605, U+2610-2611, U+2666, U+2713, U+2E18, U+E004-E005, U+F43A-F43B, U+F460-F473, U+F498-F49F, U+F4C6-F4C7, U+F4CC-F4CD, U+F4D2-F4D7, U+F50A-F50B, U+F50E-F533, U+F536-F539, U+F53C-F53F, U+F637, U+F6C3, U+F6DD, U+F6DF-F6F3, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 436 | +} | |
| 437 | +@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w01-reg.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+F656-F659;font-display: swap; | |
| 438 | +}#ebqqm{height:auto;--comp-display:unset;position:relative;}#ebqqm .ebqqm-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:clip;overflow-y:clip;}#ebqqm .ebqqm-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:auto auto auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#ebqqm:not(.ebqqm-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#ebqqm .ebqqm-container{grid-template-rows:auto auto;}}#ebqqm{--bg:var(--color_11);--alpha-bg:1;--static-spx:0.1 * var(--one-unit);}#PAGE_SECTIONSebqqm{--above-all-in-container:49;}#comp-m8omcigd2{z-index:50;--above-all-in-container:10000;}#comp-m8omcih716-pinned-layer{z-index:54;--above-all-in-container:10000;}#comp-m8omcih82-pinned-layer{z-index:55;--above-all-in-container:10000;}#comp-m8omcihb-pinned-layer{z-index:56;--above-all-in-container:10000;}#comp-m8oopad5-pinned-layer{z-index:57;--above-all-in-container:10000;}#comp-m9cxxt3r-pinned-layer{z-index:58;--above-all-in-container:10000;}#comp-mfl8zvjs-pinned-layer{z-index:59;--above-all-in-container:10000;}#comp-m8omdbdn{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbdn .comp-m8omdbdn-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:130px;padding-right:5%;padding-left:5%;padding-bottom:120px;row-gap:50px;column-gap:50px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(42px,max-content) minmax(90px,max-content) max-content max-content max-content;grid-template-columns:0.46613402505813634fr 0.5338659749418637fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbdn .comp-m8omdbdn-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content minmax(200px,max-content) max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbdn{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8oqdae2{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/2/6/3;position:relative;}#comp-m8oqdae2 .comp-m8oqdae2-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqdae2{grid-area:5/1/6/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqdae2{grid-area:5/1/6/2;}}#comp-m8oqdae2{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbe910{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.99795672678148%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:start;position:sticky;--force-auto:initial;top:var(--force-auto,calc(250px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:min(-0.5px, -0.0001698 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;--is-sticky:1;}.comp-m8omdbe910-container{box-sizing:border-box;row-gap:25px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbe910{justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));margin-left:0px;margin-right:max(0.5px, 0.0000013 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8omdbe910{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea7{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbea7-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbea7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea15{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{margin-bottom:5px;}}#comp-m8omdbea15{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{--fontSize:35spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15{--fontSize:25spx;}}#comp-m8omdbeb13{--l_display:unset;height:auto;min-width:0px;width:99.99898635118323%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbeb13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13{--fontSize:16px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13{--fontSize:14px;}}#comp-m8omdbec6{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}.comp-m8omdbec6-container{box-sizing:border-box;row-gap:15px;column-gap:30px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:0.9999535462010356fr 1.0000464537989644fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbec6-container{row-gap:25px;grid-template-rows:max-content max-content max-content max-content max-content auto max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbec6{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbec15{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbec15{justify-self:center;}}#comp-m8omdbec15{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeg9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeg9{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbeg9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeh9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeh9{justify-self:center;grid-area:3/1/4/2;}}#comp-m8omdbeh9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbei9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/2/3/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbei9{justify-self:center;grid-area:4/1/5/2;}}#comp-m8omdbei9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdben{min-height:200px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0022421 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:5/1/6/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdben{margin-bottom:0px;grid-area:7/1/8/2;}}#comp-m8omdben{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--alpha-brd:1;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:157,157,157;--alpha-brdh:1;--bgd:255,255,255;--alpha-bgd:1;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:225,225,225;--alpha-brdd:1;--brwf:1px;--bgf:255,255,255;--brdf:157,157,157;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--alpha-bgf:0;--alpha-bge:0;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdber7{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/1/4/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdber7{justify-self:center;grid-area:5/1/6/2;}}#comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeu13{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeu13{margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbeu13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbew{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbew{justify-self:end;margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbew{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--color:255,64,64;--alpha-color:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbex1{min-height:0px;--l_display:unset;height:42px;min-width:0px;width:175px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:6/1/7/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbex1{height:50px;width:166px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbex1{height:42px;width:100%;align-self:start;justify-self:center;margin-top:max(0.5px, 0.0511093 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:8/1/9/2;}}#comp-m8or8zjr{min-height:50px;--l_display:unset;height:50px;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/2/4/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8or8zjr{align-self:start;grid-area:6/1/7/2;}}#comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdr7{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/3;position:relative;}#comp-m8omdbdr7 .comp-m8omdbdr7-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}#comp-m8omdbdr7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82o{min-height:0px;--l_display:unset;height:auto;width:max-content;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8oqu82o-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82o{margin-bottom:max(0.5px, 0.0013542 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8oqu82o{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82u{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82u{margin-right:4.546875px;}}#comp-m8oqu82u{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu82z{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82z{--l_display:none;}}#comp-m8oqu82z{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu8301{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu8301{--l_display:none;}}#comp-m8oqu8301{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdy12{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:3/1/4/3;position:relative;}#comp-m8omdbdy12 .comp-m8omdbdy12-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdy12 .comp-m8omdbdy12-container{grid-template-rows:minmax(max-content,0%);}#comp-m8omdbdy12{grid-area:3/1/4/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdy12{grid-area:3/1/4/2;}}#comp-m8omdbdy12{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94r{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omf94r .comp-m8omf94r-overflow-wrapper{position:relative;display:flex;flex-direction:column;flex-grow:1;overflow-x:clip;overflow-y:clip;}#comp-m8omf94r .comp-m8omf94r-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.3644933 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,1281.0065419921875fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94r{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94t{min-height:0px;height:auto;min-width:0px;width:auto;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omf94t .comp-m8omf94t-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:hidden;}#comp-m8omf94t .comp-m8omf94t-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94t:not(.comp-m8omf94t-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omdbey11{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/1/5/2;position:relative;}#comp-m8omdbey11 .comp-m8omdbey11-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbey11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbez{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbez{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.6em;--letterSpacing:0em;--fontFamily:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez{--fontSize:16px;}}#comp-m8omdbf0{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;position:sticky;--force-auto:initial;top:var(--force-auto,calc(120px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:2/1/3/3;--is-sticky:1;}#comp-m8omdbf0 .comp-m8omdbf0-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf0{position:sticky;--force-auto:initial;top:var(--force-auto,calc(50px + var(--sticky-offset, 0px)));grid-area:2/1/3/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf0{position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));grid-area:2/1/3/2;}}#comp-m8omdbf0{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf1{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:calc((100% + 20px));max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}.comp-m8omdbf1-container{box-sizing:border-box;padding-top:20px;padding-right:20px;padding-left:20px;padding-bottom:20px;row-gap:0px;column-gap:max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.014375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:1.0000260323504566fr max-content max-content max-content max-content 1.0000260323504566fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:minmax(25.000003814697266px,max-content) minmax(25.000003814697266px,max-content);grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;}}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:max-content max-content max-content;grid-template-columns:1fr 1fr;}}#comp-m8omdbf1{--brw:0px;--brd:var(--color_13);--bg:var(--color_11);--rd:20px 20px 20px 20px;--shd:0.00px 1.00px 5px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf2{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbf2-container{box-sizing:border-box;padding-top:8px;padding-right:20px;padding-left:20px;padding-bottom:8px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,308.1247194824219fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf2{grid-area:1/1/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf2{width:100%;grid-area:1/1/2/2;}.comp-m8omdbf2-container{grid-template-columns:minmax(0px,114.55728587646485fr);}}#comp-m8omdbf2{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf211{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbf211{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--textAlign:center;--fontSize:20spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf39{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{justify-self:center;margin-right:0px;grid-area:1/3/2/5;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{justify-self:center;margin-right:max(0.5px, 0.0013627 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/1/3/3;}}#comp-m8omdbf39{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--fontFamily:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontSize:20spx;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}#comp-m8omdbf415{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}#comp-m8omdbf415 .comp-m8omdbf415-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf415{min-width:100%;margin-right:max(0.5px, 0.1341394 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/2/3/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf415 .comp-m8omdbf415-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf415{margin-right:0px;grid-area:3/1/4/2;}}#comp-m8omdbf415{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf510{--l_display:unset;height:auto;--aspect-ratio:1;width:30px;max-width:30px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf510{width:16.305280002590564%;justify-self:center;}}#comp-m8omdbf510{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf61{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf61-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf61{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbf61{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf68{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbf68{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68{--minFontSize:12px;--fontSize:14spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68{--minFontSize:14px;--fontSize:7.009spx;}}#comp-m8omdbf711{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbf711{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711{--minFontSize:12px;--fontSize:14spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711{--minFontSize:14px;--fontSize:7.009spx;--fontWeight:normal;}}#comp-m8omdbf82{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/4/2/5;position:relative;}#comp-m8omdbf82 .comp-m8omdbf82-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf82{min-width:100%;margin-left:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/4/3/6;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf82 .comp-m8omdbf82-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf82{margin-left:0px;margin-right:0px;grid-area:3/2/4/3;}}#comp-m8omdbf82{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf813{width:30px;height:auto;--aspect-ratio:0.9999999364217163;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf813{width:16.304364105482172%;--aspect-ratio:1;justify-self:center;}}#comp-m8omdbf813{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf97{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf97-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf97{grid-area:2/1/3/2;}}#comp-m8omdbf97{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf916{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{margin-right:10px;}}#comp-m8omdbf916{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfa13{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfa13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfb14{min-height:0px;--comp-display:flex;--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:max(0.5px, 7e-7 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/5/2/6;position:relative;}#comp-m8omdbfb14 .comp-m8omdbfb14-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfb14{width:87.03812863519576%;justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.001081 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.000012 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/5/3/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfb14{justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.0013267 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:2/2/3/3;}}#comp-m8omdbfb14{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc3{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbfc3-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc3{justify-self:end;}}#comp-m8omdbfc3{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc10{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbfc10{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfd11{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfd11{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfe{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/6/2/7;position:relative;}.comp-m8omdbfe-container{box-sizing:border-box;padding-top:10px;padding-right:30px;padding-left:30px;padding-bottom:10px;column-gap:20px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.009375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,105.28693225097658fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfe{margin-right:max(0.5px, 0.0006672 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/5/2/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfe{width:100%;margin-right:max(0.5px, 0.0013138 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}.comp-m8omdbfe-container{grid-template-columns:minmax(0px,94.56599675292969fr);}}#comp-m8omdbfe{--brw:1px;--brd:157,157,157;--bg:246,246,246;--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.1);--gradient:none;--alpha-brd:0.2;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfe11{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:max(0.5px, 0.0000055 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}.comp-m8omdbfe11-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbfe11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbff{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:1px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbff{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8ooawu0{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:5px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8ooawu0{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfg7{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0035088 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omdbfg7{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oobbzb{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}#comp-m8oobbzb{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oqa661{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:5/1/6/2;position:relative;}#comp-m8oqa661 .comp-m8oqa661-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqa661{grid-area:6/1/7/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqa661{grid-area:6/1/7/2;}}#comp-m8oqa661{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqbc3l{min-height:250px;--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8oqbc3l{--static-spx:1px;}#comp-m8omcigd2{width:auto;height:auto;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:2/1/3/2;position:relative;}.comp-m8omcigd2-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2:not(.comp-m8omcigd2-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2{--l_display:unset;}}#comp-m8omcigd2{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcigd2_r_comp-kbgakgyt{min-height:267.2430725097656px;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:7/1/8/2;position:relative;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:5%;padding-right:3%;padding-left:3%;padding-bottom:5%;row-gap:30px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);display:var(--l_display,var(--container-display));grid-template-rows:minmax(89.25276263439997px,auto) minmax(5.664037365600061px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt:not(.comp-m8omcigd2_r_comp-kbgakgyt-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;}}#comp-m8omcigd2_r_comp-kbgakgyt{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y11976{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{box-sizing:border-box;position:relative;pointer-events:none;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:0.78897289824462fr 0.5938730200850597fr 1.1149251916876468fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{row-gap:20px;grid-template-rows:minmax(max-content,36.4128993682897%) minmax(max-content,30.428289182936023%) minmax(max-content,33.15881144877427%);grid-template-columns:minmax(0px,1fr);}}#comp-m8omcigd2_r_comp-m2y11976{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y12dql{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y12dql{align-self:center;justify-self:start;margin-top:0px;grid-area:2/1/3/2;}}#comp-m8omcigd2_r_comp-m2y12dql{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1gxle{width:100%;height:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:55.0694580078125px;margin-left:0%;margin-bottom:0%;margin-right:0%;grid-area:1/3/2/4;position:relative;}.comp-m8omcigd2_r_comp-m2y1gxle-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y1gxle{align-self:center;margin-top:0px;grid-area:3/1/4/2;}}#comp-m8omcigd2_r_comp-m2y1gxle{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y1gkmp{--l_display:unset;height:auto;min-width:0px;width:53.70486122406853%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:63.50348472595215px;align-self:flex-start;order:1;position:relative;}#comp-m8omcigd2_r_comp-m2y1gkmp{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1awex{--l_display:unset;height:62.145843505859375px;min-width:333.7778015136719px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-top:0%;margin-right:0%;margin-left:0.005193163273693327%;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m8j7owsd{width:99.9999390940607%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcigd2_r_comp-m8j7owsd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcigd2_r_comp-m8j7owsd{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m8j7o6oq{width:105px;height:auto;--aspect-ratio:0.38645833333333335;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15.000030517578125px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:20px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:19.812px;}}#comp-m8omcigd2_r_comp-m8j7o6oq{--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y10ib8{--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m2y10ib8{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em montserrat,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 16px/1.6em montserrat,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:10px;--menuSpacing:0px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-mbweuill{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omcigd2_r_comp-mbweuill{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-kd5pdf7t{--l_display:unset;height:auto;min-width:0px;width:62.50000000000002%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:center;pointer-events:auto;margin-left:0.004035058593672147px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kd5pdf7t{width:100%;}}#comp-m8omcigd2_r_comp-kd5pdf7t{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textAlign:center;--fontSize:12px;--lineHeight:normal;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716{height:auto;width:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcih716-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716:not(.comp-m8omcih716-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih716{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcih716_r_comp-kd5px9hr{min-height:100vh;height:100vh;min-width:0px;width:300px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(0px,1fr);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr:not(.comp-m8omcih716_r_comp-kd5px9hr-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9hr{width:100vw;max-width:99999px;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{grid-template-columns:minmax(0px,390fr);}}#comp-m8omcih716_r_comp-kd5px9hr{--containerBackground:var(--color_11);--alpha-containerBackground:1;--bg:var(--color_15);--alpha-bg:0.8;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;width:60%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:100px;margin-bottom:200px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{width:46.15384615384615%;}}#comp-m8omcih716_r_comp-kd5px9kk{--bgs:var(--color_11);--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:var(--color_11);--brw:0px 0px 0px 0px;--brd:var(--color_15);--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_15);--alpha-txt:1;--arrowColor:var(--color_15);--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:var(--color_11);--txtsSub:var(--color_18);--alpha-txtsSub:1;--txts:var(--color_18);--alpha-txts:1;--bgexpanded:var(--color_11);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_15);--alpha-txtexpanded:1;--subMenuSpacing:25px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light {color_14};--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0.2;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}#comp-m8omcih716_r_comp-kkmqi5tc{height:20px;width:20px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;position:sticky;--force-auto:initial;top:var(--force-auto,calc(0px + var(--sticky-offset, 0px)));bottom:var(--force-auto,);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0%;margin-right:40px;margin-top:40px;margin-bottom:0px;grid-area:1/1/2/2;--is-sticky:1;}#comp-m8omcih716_r_comp-kkmqi5tc{--static-spx:0.1 * var(--one-unit);}#comp-m8omcih82{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih82-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih82{--static-spx:1px;}#comp-m8omcihb{width:auto;height:auto;--comp-display:unset;align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);grid-area:1/1/2/2;position:relative;}.comp-m8omcihb-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb:not(.comp-m8omcihb-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#masterPage:not(.landingPage){--top-offset:var(--header-height);}#masterPage.landingPage{--top-offset:0px;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb{--l_display:unset;}#masterPage:not(.landingPage){--top-offset:0px;}}#comp-m8omcihb{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcihb_r_comp-kbgajy18{min-height:31.493057250976562px;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-kbgajy18 .comp-m8omcihb_r_comp-kbgajy18-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:0%;padding-left:0%;padding-bottom:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(31.493042749023438px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-kbgajy18:not(.comp-m8omcihb_r_comp-kbgajy18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-kbgajy18{min-height:0px;--l_display:unset;align-self:start;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);}#comp-m8omcihb_r_comp-kbgajy18-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}}#comp-m8omcihb_r_comp-kbgajy18{--bg:var(--color_11);--bg-scrl:var(--color_19);--alpha-bg:0;--alpha-bg-scrl:0.5;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m6saac0q{height:27px;width:23px;--l_display:none;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:2.2%;margin-top:0px;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-m6saadbd{min-height:40px;--l_display:none;height:40px;width:120px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-top:0px;margin-right:70px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m6saadbd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd:not(.comp-m8omcihb_r_comp-m6saadbd-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd{--static-spx:1px;}#comp-m8omcihb_r_comp-mdeyh2rw{min-height:0px;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdeyh2rw-container{box-sizing:border-box;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(30px,auto) auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyh2rw{align-self:center;}.comp-m8omcihb_r_comp-mdeyh2rw-container{grid-template-rows:38px auto;}}#comp-m8omcihb_r_comp-mdeyh2rw{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:0.00px 1.00px 15px 1px rgba(0,0,0,0.33);--gradient:none;--alpha-brd:0;--alpha-bg:0;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xyvk9x{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:2/1/3/2;position:relative;}#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:15px;padding-right:4%;padding-left:4%;padding-bottom:15px;column-gap:2vw;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:auto 2fr auto max-content;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:20px;padding-left:20px;column-gap:20px;grid-template-columns:0.7455718081753153fr 1.4241559701215807fr 0.2028363141690787fr;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:15px;padding-left:15px;column-gap:12px;grid-template-columns:1.7156281834535556fr 0.19719864177627078fr 0.19719864177627078fr;}#comp-m8omcihb_r_comp-m2xyvk9x{margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;}}#comp-m8omcihb_r_comp-m2xyvk9x{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0.5;--backdrop-filter:blur(10px);--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xz2cwh{min-height:25px;--l_display:unset;height:auto;min-width:91px;width:20.58464803554209%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0.0014034987297066638%;margin-top:0%;margin-bottom:0%;grid-area:1/2/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xz2cwh{--l_display:none;min-width:95px;width:99.99991051557328%;justify-self:center;margin-left:0.05670408489563268%;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-m2xz2cwh{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:0;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:1;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1)scaleY(1)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1.02)scaleY(1.02)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-lxu2mi30{min-height:0px;--l_display:none;height:35px;min-width:0px;width:35px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:2.999267578125%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-lxu2mi30-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi30:not(.comp-m8omcihb_r_comp-lxu2mi30-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:35px;width:35px;margin-right:0%;grid-area:1/3/2/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:25px;width:30px;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-lxu2mi30{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxu2mi38{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c{min-height:300px;--l_display:unset;height:300px;min-width:0px;width:980px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:scroll;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c:not(.comp-m8omcihb_r_comp-lxu2mi3c-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}#comp-m8omcihb_r_comp-lxu2mi3d5{min-height:79px;--l_display:unset;height:auto;min-width:0px;width:40%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(79px,auto);grid-template-columns:minmax(0px,512fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3d5:not(.comp-m8omcihb_r_comp-lxu2mi3d5-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:50%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,339.7816875fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:100%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,390fr);}}#comp-m8omcihb_r_comp-lxu2mi3i1{min-height:0px;--l_display:unset;height:20px;min-width:0px;width:20px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:45.890625px;margin-top:34.5px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1{margin-right:0px;margin-top:0px;}}#comp-m8omcihb_r_comp-m5rceko6{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:333.23333740234375px;margin-left:0%;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m5rceko6-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:20vh;margin-left:0px;margin-bottom:20vh;margin-right:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:0vh;margin-left:0px;margin-bottom:1.834175071348669vh;margin-right:0px;}}#comp-m8omcihb_r_comp-m5rceko6{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdezy72f{min-height:0px;--l_display:none;height:auto;min-width:0px;width:52%;max-width:99999px;max-height:99999px;--comp-display:unset;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));align-self:flex-start;order:2;position:relative;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));column-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));flex-direction:row;justify-content:center;flex-wrap:wrap;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcihb_r_comp-mdezy72f:not(.comp-m8omcihb_r_comp-mdezy72f-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezy72f{margin-bottom:29.999984741210938px;order:1;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezy72f{--l_display:unset;margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:2;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{row-gap:5px;column-gap:0px;flex-direction:column;justify-content:flex-start;flex-wrap:nowrap;}}#comp-m8omcihb_r_comp-mdezy72f{--brw:0px;--brd:50,65,88;--bg:255,255,255;--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}.comp-m8omcihb_r_comp-mdezy72s{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;padding-top:5px;padding-right:0px;padding-left:0px;padding-bottom:5px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;flex-basis:auto;flex-grow:0;flex-shrink:0;position:relative;}.comp-m8omcihb_r_comp-mdezy72s{--brw:0px;--brd:var(--color_15);--bg:var(--color_12);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdezy72s{--alpha-bg:0;}}.comp-m8omcihb_r_comp-mdf0r6km{--l_display:none;height:auto;min-width:0px;width:18.125%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0042666 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:max(0.5px, 0.1398222 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--l_display:unset;width:max-content;align-self:center;justify-self:start;margin-right:0px;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0r6km{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--fontSize:12spx;}}.comp-m8omcihb_r_comp-mdf0tx18{min-height:110px;--l_display:none;height:auto;min-width:0px;width:185px;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;align-self:center;justify-self:center;pointer-events:auto;margin-top:max(0.5px, 0.0078133 * (var(--scaling-factor) - var(--scrollbar-width)));margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdf0tx18:not(.comp-m8omcihb_r_comp-mdf0tx18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{min-height:0px;--l_display:unset;height:100%;width:100%;align-self:start;justify-self:start;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0tx18{--font:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--color:#000000;--label-display:none;--letter-spacing:0em;--line-height:unset;--text-decoration:none;--direction:rtl;--text-align:center;--text-highlight:none;--text-transform:none;--text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--text-shadow:0px 0px 0px transparent;--background:rgba(255,255,255,1);--box-shadow:1px 2px 8px 1px rgba(0,0,0,0.1);--border-left:2px dashed rgba(199,199,199,1);--border-right:2px dashed rgba(199,199,199,1);--border-top:2px dashed rgba(199,199,199,1);--border-bottom:2px dashed rgba(199,199,199,1);--padding-bottom:8px;--padding-top:8px;--padding-left:8px;--padding-right:8px;--border-top-left-radius:6px;--border-top-right-radius:6px;--border-bottom-left-radius:6px;--border-bottom-right-radius:6px;--icon-display:initial;--icon-size:24px;--icon-color:rgba(0,0,0,1);--icon-rotation:0;--container-flex-direction:row-reverse;--container-justify-content:center;--container-align-items:center;--content-horizontal-alignment:center;--content-gap:0px;--label-overflow:wrap;--disabled-icon-rotation:0;--hover-border-right:2px solid rgba(141,181,255,1);--disabled-border-bottom:2px solid rgba(199,199,199,1);--disabled-border-top:2px solid rgba(199,199,199,1);--hover-border-left:2px solid rgba(141,181,255,1);--disabled-background:rgba(199,199,199,1);--disabled-border-right:2px solid rgba(199,199,199,1);--disabled-color:#000000;--hover-border-top:2px solid rgba(141,181,255,1);--hover-border-bottom:2px solid rgba(141,181,255,1);--disabled-border-left:2px solid rgba(199,199,199,1);--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{--background:rgba(255,255,255,0);--box-shadow:none;--border-left:0px dashed rgba(199,199,199,1);--border-right:0px dashed rgba(199,199,199,1);--border-top:0px dashed rgba(199,199,199,1);--border-bottom:0px dashed rgba(199,199,199,1);--icon-display:none;}}#comp-m8omcihb_r_comp-m5rceatr{min-height:25px;--l_display:unset;height:auto;min-width:95px;width:58.8235294117647%;max-width:200px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:20px;order:2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:3;}}#comp-m8omcihb_r_comp-m5rceatr{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:1;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:0.7;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxubhuix{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.8529411764706%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:29.999969482421875px;align-self:flex-end;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:29.999984741210938px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:10px;}}#comp-m8omcihb_r_comp-lxubhuix{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:0px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--fnt:normal normal 700 18px/1.6em montserrat,sans-serif;--fntSubMenu:normal normal normal 14px/1.6em montserrat,sans-serif;--menuSpacing:0px;}}#comp-m8omcihb_r_comp-mdezahz3{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezahz3{order:3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezahz3{order:4;}}#comp-m8omcihb_r_comp-mdezahz3{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m73v5p0x{width:23px;height:27px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:4.01666259765625px;grid-area:1/4/2/5;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m73v5p0x{margin-right:0px;margin-bottom:0px;grid-area:1/2/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m73v5p0x{width:20px;height:23.8203125px;margin-right:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.0000213 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-m8j7mq6v{min-height:0px;--l_display:unset;height:40.5703125px;min-width:0px;width:105px;max-width:99999px;max-height:99999px;--aspect-ratio:auto;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:min(-0.5px, 0 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0000062 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m8j7mq6v{margin-left:0px;margin-bottom:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m8j7mq6v{min-height:unset;height:auto;--aspect-ratio:0.3380208333333333;width:120px;}}#comp-m8omcihb_r_comp-m8j7mq6v{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m99166jr{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:85.59978065360544%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:max(0.5px, 0.0678332 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m99166jr{--l_display:none;width:auto;align-self:center;justify-self:stretch;margin-right:0%;margin-bottom:0%;}}#comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdez2caz{min-height:0px;--l_display:unset;height:80%;min-width:2px;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdez2caz{justify-self:end;margin-right:15px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdez2caz{--lnw:1px;--brd:var(--color_11);--mrg:1px;--alpha-brd:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdeyhsow{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:5%;padding-left:5%;padding-bottom:0px;column-gap:30px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:1fr 1fr auto;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{padding-top:5px;padding-bottom:5px;grid-template-columns:auto max-content;}}#comp-m8omcihb_r_comp-mdeyhsow{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdeylyv3{min-height:unset;--l_display:unset;height:auto;--aspect-ratio:0.4;min-width:0px;width:100%;max-width:99999px;max-height:99999px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{width:38.114694739409835%;grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--orientation:HORIZ;--spacing:10px;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:33.599spx;--spacing:10.001spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--spacing:10px;}}#comp-m8omcihb_r_comp-mdeyqfi8{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyqfi8{--l_display:none;align-self:end;margin-left:max(0.5px, 0.08 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0%;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdf18wki{--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--l_display:unset;width:max-content;align-self:center;justify-self:end;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdf18wki{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--textDecoration:none;--color:var(--color_11);--alpha-color:1;--fontSize:4.216spx;}}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{--alpha-txth:1;--bgh:43,104,156;--shd:0 1px 4px rgba(0, 0, 0, 0.6);--rd:20px;--alpha-brdh:1;--txth:255,255,255;--alpha-brd:1;--alpha-bg:1;--bg:61,155,233;--txt:255,255,255;--alpha-bgh:1;--brw:0px;--fnt:normal normal normal 14px/1.4em raleway;--brd:43,104,156;--boxShadowToggleOn-shd:none;--alpha-txt:1;--brdh:61,155,233;--static-spx:1px;}#comp-m8oopad5{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8oopad5-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8oopad5{--static-spx:1px;}#comp-m9cxxt3r{width:auto;height:auto;--comp-display:unset;align-self:end;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:10px;margin-bottom:0px;margin-left:0px;grid-area:1/1/2/2;position:relative;}.comp-m9cxxt3r-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m9cxxt3r:not(.comp-m9cxxt3r-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m9cxxt3r-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;bottom:0;top:unset;height:auto;}#comp-m9cxxt3r{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m9cxxt3r_r_comp-m9cxxr9c{height:auto;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m9cxxt3r{justify-self:end;align-self:end;position:absolute;grid-area:1 / 1 / 2 / 2;pointer-events:auto;}#comp-mfl8zvjs{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-mfl8zvjs-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-mfl8zvjs{--static-spx:1px;}</style> | |
| 439 | +<style id="stylableCss_ebqqm">/* END STYLABLE DIRECTIVE RULES */ | |
| 440 | + | |
| 441 | +#comp-m8omdbex1 .style-m8omdbey8__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border-radius: 10px;border: 0px solid #000000;background: #4B6397;padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px} | |
| 442 | + | |
| 443 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 444 | + | |
| 445 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover { | |
| 446 | + background: #999999; | |
| 447 | + border: 0px solid #000000; | |
| 448 | +} | |
| 449 | + | |
| 450 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__icon { | |
| 451 | + fill: #000000; | |
| 452 | + transform: rotate(317deg);} | |
| 453 | + | |
| 454 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__label { | |
| 455 | + color: #000000; | |
| 456 | +} | |
| 457 | + | |
| 458 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled{background: #E2E2E2} | |
| 459 | + | |
| 460 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__label{color: #8F8F8F} | |
| 461 | + | |
| 462 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 463 | + | |
| 464 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__container{transition: inherit;flex-direction: row;justify-content: center;align-items: center} | |
| 465 | + | |
| 466 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;display: initial;margin-left: 0px;margin-right: 5px; font-family: montserrat,sans-serif; font-size: calc(19 * var(--theme-spx-ratio)); font-weight: normal; font-style: normal;font-size: 16px;color: #FAFAFA} | |
| 467 | + | |
| 468 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;margin-right: 0px;width: 14px;height: 14px;margin-left: 5px;fill: #FAFAFA}@media screen and (min-width: 320px) and (max-width: 1000px){/* END STYLABLE DIRECTIVE RULES */ | |
| 469 | + | |
| 470 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 471 | + | |
| 472 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { font-size: calc(19 * var(--theme-spx-ratio)); | |
| 473 | + font-size: 16px; | |
| 474 | +}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 475 | + | |
| 476 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon { | |
| 477 | + width: 12px; | |
| 478 | + height: 12px; | |
| 479 | + margin-left: 4px; | |
| 480 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 481 | + | |
| 482 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 483 | + | |
| 484 | +#comp-m8omdbex1 .style-m8omdbey8__root{ | |
| 485 | + padding-right: 0px; | |
| 486 | +} | |
| 487 | + | |
| 488 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { | |
| 489 | + margin-right: 4px; font-size: calc(19 * var(--theme-spx-ratio)); | |
| 490 | + font-size: 16px; | |
| 491 | +}}/* END STYLABLE DIRECTIVE RULES */ | |
| 492 | + | |
| 493 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding: 0px;border: 0px solid #949494;border-radius: 0px;background: rgba(255, 255, 255, 0)} | |
| 494 | + | |
| 495 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 496 | + | |
| 497 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover { | |
| 498 | + background: rgba(255, 255, 255, 0); | |
| 499 | + border: 0px solid #000000; | |
| 500 | +} | |
| 501 | + | |
| 502 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__icon { | |
| 503 | + transform: rotate(0deg); | |
| 504 | + fill: #4B6397;} | |
| 505 | + | |
| 506 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__label { | |
| 507 | + color: #FFFFFF; | |
| 508 | +} | |
| 509 | + | |
| 510 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled{border: 0px solid #000000;background: #EEEEEE} | |
| 511 | + | |
| 512 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__label{ | |
| 513 | + color: #4F4F4F} | |
| 514 | + | |
| 515 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 516 | + | |
| 517 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 518 | + | |
| 519 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #000000; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;margin-right: 0px;margin-left: 0px;margin-top: 0px;margin-bottom: 0px;display: none} | |
| 520 | + | |
| 521 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;width: 60px;height: 60px;margin-left: 0px;margin-right: 0px;margin-bottom: 0px;margin-top: 0px;fill: #000000;display: initial}@media screen and (min-width: 320px) and (max-width: 1000px){ | |
| 522 | + | |
| 523 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 524 | + -st-extends: HamburgerOpenButton; | |
| 525 | + border: 0px solid #000000; | |
| 526 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 527 | + | |
| 528 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 529 | + | |
| 530 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 531 | + fill: #FAFAFA;}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 532 | + | |
| 533 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 534 | + -st-extends: HamburgerOpenButton; | |
| 535 | + border: 0px solid #000000; | |
| 536 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 537 | + | |
| 538 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 539 | + | |
| 540 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 541 | + fill: #FAFAFA;}}#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 542 | + | |
| 543 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 544 | + | |
| 545 | +#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-styleId__root { -st-extends: HamburgerOverlay; background-color: rgba(0, 0, 0, 0.8); }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 546 | + | |
| 547 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 548 | + | |
| 549 | +/* END STYLABLE DIRECTIVE RULES */}#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 550 | + | |
| 551 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 552 | + | |
| 553 | +#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root { -st-extends: HamburgerMenuContainer; background-color: #FFFFFF; }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 554 | + | |
| 555 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 556 | + | |
| 557 | +/* END STYLABLE DIRECTIVE RULES */}/* END STYLABLE DIRECTIVE RULES */ | |
| 558 | + | |
| 559 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding-right: 0px;border-radius: 300px;background: rgba(255, 255, 255, 0)} | |
| 560 | + | |
| 561 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 562 | + | |
| 563 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover { | |
| 564 | + background: #FFFFFF; | |
| 565 | + border: 0px solid #000000; | |
| 566 | + border-radius: 0px; | |
| 567 | +} | |
| 568 | + | |
| 569 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__icon { | |
| 570 | + fill: #000000; | |
| 571 | + transform: rotate(90deg);} | |
| 572 | + | |
| 573 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__label { | |
| 574 | + color: #000000; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled{ | |
| 578 | + background: #EEEEEE} | |
| 579 | + | |
| 580 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__label{ | |
| 581 | + color: #4F4F4F} | |
| 582 | + | |
| 583 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 584 | + | |
| 585 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 586 | + | |
| 587 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #FFFFFF; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;display: none;margin-left: 1px} | |
| 588 | + | |
| 589 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;transform: rotate(0deg);fill: #000000;width: 28px;height: 28px;margin-right: 1px}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1 {/* START STYLABLE DIRECTIVE RULES */} | |
| 590 | + | |
| 591 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 592 | + | |
| 593 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{ | |
| 594 | + -st-extends: HamburgerCloseButton; | |
| 595 | +}}</style> | |
| 596 | +<style id="compCssMappers_ebqqm">#ebqqm{--shc-mutated-brightness:125,125,125;justify-self:unset;}#comp-m8omdbdn{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;--inherit-transition:var(--transition, none);}#comp-m8oqdae2{--shc-mutated-brightness:125,125,125;}#comp-m8omdbe910{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea7{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea15{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0466045 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0664894 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}#comp-m8omdbeb13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:14px !important;}}#comp-m8omdbec6{--shc-mutated-brightness:77,77,77;}#comp-m8omdbec15{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeg9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeh9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbei9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdben{--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--align:start;--textPaddingTop:0.75em;--textPaddingStart:12px;--textPaddingEnd:10px;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdber7{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8omdber7{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbeu13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeu13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbew :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FF4040;background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FF4040);}#comp-m8or8zjr{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8or8zjr{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbdr7{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82o{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82u{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82u :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu82z{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82z :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu8301{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu8301 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8omdbdy12{--shc-mutated-brightness:125,125,125;}#comp-m8omf94r{--shc-mutated-brightness:77,77,77;}#comp-m8omdbey11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbez{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}#comp-m8omdbf0{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf1{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf2{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf211{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf211 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;text-align:center;}#comp-m8omdbf39{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf415{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf510{--opacity:1;}#comp-m8omdbf61{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf68{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf711{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf82{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf813{--fill:#000000;--opacity:1;}#comp-m8omdbf97{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf916{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfa13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfb14{--shc-mutated-brightness:77,77,77;}#comp-m8omdbfc3{--shc-mutated-brightness:125,125,125;}#comp-m8omdbfc10{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfd11{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfe{--shc-mutated-brightness:123,123,123;}#comp-m8omdbfe11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbff{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8ooawu0{--text-direction:var(--wix-opt-in-direction);}#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfg7{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oobbzb{--text-direction:var(--wix-opt-in-direction);}#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oqa661{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-kbgakgyt{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y11976{--shc-mutated-brightness:77,77,77;}#comp-m8omcigd2_r_comp-m2y12dql{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y12dql :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}#comp-m8omcigd2_r_comp-m2y1gxle{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m2y1gkmp{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y1gkmp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}.comp-m8omcigd2_r_comp-m2y1awex { | |
| 597 | + --wix-direction: ltr; | |
| 598 | +--inputBorderRadius: 10; | |
| 599 | +--columnSpacing: 10; | |
| 600 | +--horizontalPadding: 0; | |
| 601 | +--verticalPadding: 0; | |
| 602 | +--submitButtonBorderRadius: 10; | |
| 603 | +--rowSpacing: 5; | |
| 604 | +--borderWidth: 0; | |
| 605 | +--borderRadius: 0; | |
| 606 | +--shadowAngle: 135; | |
| 607 | +--shadowDistance: 0; | |
| 608 | +--shadowSize: 0; | |
| 609 | +--shadowBlur: 25; | |
| 610 | +--buttonsStyle: 2; | |
| 611 | +--buttonsBorderWidth: 0; | |
| 612 | +--buttonsBorderRadius: 0; | |
| 613 | +--submitButtonStyle: 2; | |
| 614 | +--submitButtonBorderWidth: 0; | |
| 615 | +--nextButtonStyle: 2; | |
| 616 | +--nextButtonBorderWidth: 0; | |
| 617 | +--nextButtonBorderRadius: 0; | |
| 618 | +--previousButtonStyle: 2; | |
| 619 | +--previousButtonBorderWidth: 1; | |
| 620 | +--previousButtonBorderRadius: 0; | |
| 621 | +--inputBorderStyle: 1; | |
| 622 | +--inputBorderWidth: 1; | |
| 623 | +--buttonsFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 624 | +--buttonsFontHover: normal normal normal 16px/16px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 625 | +--submitButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 626 | +--submitButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 627 | +--nextButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 628 | +--nextButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 629 | +--previousButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 630 | +--previousButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 631 | +--headerThreeFont: normal normal normal 34px/1.4em montserrat-black,sans-serif; | |
| 632 | +--headerFourFont: normal normal normal 30px/1.4em montserrat-black,sans-serif; | |
| 633 | +--headerFiveFont: normal normal normal 25px/1.4em montserrat-black,sans-serif; | |
| 634 | +--headerSixFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 635 | +--headerOneFontH1: normal normal bold 65px/1.4em montserrat,sans-serif; | |
| 636 | +--headerTwoFontH2: normal normal bold 38px/1.4em montserrat,sans-serif; | |
| 637 | +--paragraphFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 638 | +--thankYouMessageFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 639 | +--headerTwoColor: 0,0,0; | |
| 640 | +--headerTwoColor-rgb: 0,0,0; | |
| 641 | +--headerTwoColor-opacity: 1; | |
| 642 | +--headerOneColor: 0,0,0; | |
| 643 | +--headerOneColor-rgb: 0,0,0; | |
| 644 | +--headerOneColor-opacity: 1; | |
| 645 | +--submitButtonBackgroundColor: 0,36,116; | |
| 646 | +--submitButtonBackgroundColor-rgb: 0,36,116; | |
| 647 | +--submitButtonBackgroundColor-opacity: 1; | |
| 648 | +--submitButtonBackgroundColorHover: 0,0,0,0.7; | |
| 649 | +--submitButtonBackgroundColorHover-rgb: 0,0,0; | |
| 650 | +--submitButtonBackgroundColorHover-opacity: 0.7; | |
| 651 | +--formBackground: 250,250,250; | |
| 652 | +--formBackground-rgb: 250,250,250; | |
| 653 | +--formBackground-opacity: 1; | |
| 654 | +--borderColor: 0,0,0,0; | |
| 655 | +--borderColor-rgb: 0,0,0; | |
| 656 | +--borderColor-opacity: 0; | |
| 657 | +--shadowColor: 0,0,0,0.15; | |
| 658 | +--shadowColor-rgb: 0,0,0; | |
| 659 | +--shadowColor-opacity: 0.15; | |
| 660 | +--buttonsColor: 250,250,250; | |
| 661 | +--buttonsColor-rgb: 250,250,250; | |
| 662 | +--buttonsColor-opacity: 1; | |
| 663 | +--buttonsBackgroundColor: 75,99,151; | |
| 664 | +--buttonsBackgroundColor-rgb: 75,99,151; | |
| 665 | +--buttonsBackgroundColor-opacity: 1; | |
| 666 | +--buttonsBorderColor: 250,250,250,0; | |
| 667 | +--buttonsBorderColor-rgb: 250,250,250; | |
| 668 | +--buttonsBorderColor-opacity: 0; | |
| 669 | +--buttonsColorHover: 250,250,250; | |
| 670 | +--buttonsColorHover-rgb: 250,250,250; | |
| 671 | +--buttonsColorHover-opacity: 1; | |
| 672 | +--buttonsBackgroundColorHover: 75,99,151,0.7; | |
| 673 | +--buttonsBackgroundColorHover-rgb: 75,99,151; | |
| 674 | +--buttonsBackgroundColorHover-opacity: 0.7; | |
| 675 | +--submitButtonColor: 250,250,250; | |
| 676 | +--submitButtonColor-rgb: 250,250,250; | |
| 677 | +--submitButtonColor-opacity: 1; | |
| 678 | +--submitButtonBorderColor: 250,250,250,0; | |
| 679 | +--submitButtonBorderColor-rgb: 250,250,250; | |
| 680 | +--submitButtonBorderColor-opacity: 0; | |
| 681 | +--submitButtonColorHover: 250,250,250; | |
| 682 | +--submitButtonColorHover-rgb: 250,250,250; | |
| 683 | +--submitButtonColorHover-opacity: 1; | |
| 684 | +--submitButtonBorderColorHover: 250,250,250,0; | |
| 685 | +--submitButtonBorderColorHover-rgb: 250,250,250; | |
| 686 | +--submitButtonBorderColorHover-opacity: 0; | |
| 687 | +--nextButtonColor: 250,250,250; | |
| 688 | +--nextButtonColor-rgb: 250,250,250; | |
| 689 | +--nextButtonColor-opacity: 1; | |
| 690 | +--nextButtonBackgroundColor: 75,99,151; | |
| 691 | +--nextButtonBackgroundColor-rgb: 75,99,151; | |
| 692 | +--nextButtonBackgroundColor-opacity: 1; | |
| 693 | +--nextButtonBorderColor: 250,250,250,0; | |
| 694 | +--nextButtonBorderColor-rgb: 250,250,250; | |
| 695 | +--nextButtonBorderColor-opacity: 0; | |
| 696 | +--nextButtonColorHover: 250,250,250; | |
| 697 | +--nextButtonColorHover-rgb: 250,250,250; | |
| 698 | +--nextButtonColorHover-opacity: 1; | |
| 699 | +--nextButtonBackgroundColorHover: 75,99,151,0.7; | |
| 700 | +--nextButtonBackgroundColorHover-rgb: 75,99,151; | |
| 701 | +--nextButtonBackgroundColorHover-opacity: 0.7; | |
| 702 | +--nextButtonBorderColorHover: 250,250,250,0; | |
| 703 | +--nextButtonBorderColorHover-rgb: 250,250,250; | |
| 704 | +--nextButtonBorderColorHover-opacity: 0; | |
| 705 | +--previousButtonColor: 0,0,0; | |
| 706 | +--previousButtonColor-rgb: 0,0,0; | |
| 707 | +--previousButtonColor-opacity: 1; | |
| 708 | +--previousButtonBackgroundColor: 75,99,151,0; | |
| 709 | +--previousButtonBackgroundColor-rgb: 75,99,151; | |
| 710 | +--previousButtonBackgroundColor-opacity: 0; | |
| 711 | +--previousButtonBorderColor: 0,0,0; | |
| 712 | +--previousButtonBorderColor-rgb: 0,0,0; | |
| 713 | +--previousButtonBorderColor-opacity: 1; | |
| 714 | +--previousButtonColorHover: 250,250,250; | |
| 715 | +--previousButtonColorHover-rgb: 250,250,250; | |
| 716 | +--previousButtonColorHover-opacity: 1; | |
| 717 | +--previousButtonBackgroundColorHover: 75,99,151,0.7; | |
| 718 | +--previousButtonBackgroundColorHover-rgb: 75,99,151; | |
| 719 | +--previousButtonBackgroundColorHover-opacity: 0.7; | |
| 720 | +--previousButtonBorderColorHover: 250,250,250,0; | |
| 721 | +--previousButtonBorderColorHover-rgb: 250,250,250; | |
| 722 | +--previousButtonBorderColorHover-opacity: 0; | |
| 723 | +--headerThreeColor: 0,0,0; | |
| 724 | +--headerThreeColor-rgb: 0,0,0; | |
| 725 | +--headerThreeColor-opacity: 1; | |
| 726 | +--headerFourColor: 0,0,0; | |
| 727 | +--headerFourColor-rgb: 0,0,0; | |
| 728 | +--headerFourColor-opacity: 1; | |
| 729 | +--headerFiveColor: 0,0,0; | |
| 730 | +--headerFiveColor-rgb: 0,0,0; | |
| 731 | +--headerFiveColor-opacity: 1; | |
| 732 | +--headerSixColor: 0,0,0; | |
| 733 | +--headerSixColor-rgb: 0,0,0; | |
| 734 | +--headerSixColor-opacity: 1; | |
| 735 | +--paragraphColor: 0,0,0; | |
| 736 | +--paragraphColor-rgb: 0,0,0; | |
| 737 | +--paragraphColor-opacity: 1; | |
| 738 | +--inputBackgroundColor: 250,250,250; | |
| 739 | +--inputBackgroundColor-rgb: 250,250,250; | |
| 740 | +--inputBackgroundColor-opacity: 1; | |
| 741 | +--inputBackgroundColorHover: 250,250,250; | |
| 742 | +--inputBackgroundColorHover-rgb: 250,250,250; | |
| 743 | +--inputBackgroundColorHover-opacity: 1; | |
| 744 | +--inputBorderColor: 0,0,0,0.6; | |
| 745 | +--inputBorderColor-rgb: 0,0,0; | |
| 746 | +--inputBorderColor-opacity: 0.6; | |
| 747 | +--inputBorderColorHover: 0,0,0; | |
| 748 | +--inputBorderColorHover-rgb: 0,0,0; | |
| 749 | +--inputBorderColorHover-opacity: 1; | |
| 750 | +--inputLabelColor: 0,0,0; | |
| 751 | +--inputLabelColor-rgb: 0,0,0; | |
| 752 | +--inputLabelColor-opacity: 1; | |
| 753 | +--inputValueColor: 0,0,0; | |
| 754 | +--inputValueColor-rgb: 0,0,0; | |
| 755 | +--inputValueColor-opacity: 1; | |
| 756 | +--inputOptionColor: 0,0,0; | |
| 757 | +--inputOptionColor-rgb: 0,0,0; | |
| 758 | +--inputOptionColor-opacity: 1; | |
| 759 | +--inputNoteColor: 51,51,51; | |
| 760 | +--inputNoteColor-rgb: 51,51,51; | |
| 761 | +--inputNoteColor-opacity: 1; | |
| 762 | +--inputPlaceholderColor: 51,51,51; | |
| 763 | +--inputPlaceholderColor-rgb: 51,51,51; | |
| 764 | +--inputPlaceholderColor-opacity: 1; | |
| 765 | +--inputSelectionColor: 75,99,151; | |
| 766 | +--inputSelectionColor-rgb: 75,99,151; | |
| 767 | +--inputSelectionColor-opacity: 1; | |
| 768 | +--dropdownBackgroundColor: 250,250,250; | |
| 769 | +--dropdownBackgroundColor-rgb: 250,250,250; | |
| 770 | +--dropdownBackgroundColor-opacity: 1; | |
| 771 | +--dropdownOptionTextColor: 0,0,0; | |
| 772 | +--dropdownOptionTextColor-rgb: 0,0,0; | |
| 773 | +--dropdownOptionTextColor-opacity: 1; | |
| 774 | +--linkColor: 75,99,151; | |
| 775 | +--linkColor-rgb: 75,99,151; | |
| 776 | +--linkColor-opacity: 1; | |
| 777 | +--thankYouMessageColor: 0,0,0; | |
| 778 | +--thankYouMessageColor-rgb: 0,0,0; | |
| 779 | +--thankYouMessageColor-opacity: 1; | |
| 780 | +--inputErrorColor: 223,49,49; | |
| 781 | +--inputErrorColor-rgb: 223,49,49; | |
| 782 | +--inputErrorColor-opacity: 1; | |
| 783 | +--inputValueFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 784 | +--inputValueFont-style: normal; | |
| 785 | +--inputValueFont-variant: normal; | |
| 786 | +--inputValueFont-weight: normal; | |
| 787 | +--inputValueFont-size: 14px; | |
| 788 | +--inputValueFont-line-height: 17px; | |
| 789 | +--inputValueFont-family: montserrat,sans-serif; | |
| 790 | +--inputValueFont-text-decoration: none; | |
| 791 | +--inputNoteFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 792 | +--inputNoteFont-style: normal; | |
| 793 | +--inputNoteFont-variant: normal; | |
| 794 | +--inputNoteFont-weight: normal; | |
| 795 | +--inputNoteFont-size: 14px; | |
| 796 | +--inputNoteFont-line-height: 17px; | |
| 797 | +--inputNoteFont-family: montserrat,sans-serif; | |
| 798 | +--inputNoteFont-text-decoration: none; | |
| 799 | +--headerTwoFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 800 | +--headerTwoFont-style: normal; | |
| 801 | +--headerTwoFont-variant: normal; | |
| 802 | +--headerTwoFont-weight: normal; | |
| 803 | +--headerTwoFont-size: 19px; | |
| 804 | +--headerTwoFont-line-height: 1.4em; | |
| 805 | +--headerTwoFont-family: montserrat,sans-serif; | |
| 806 | +--headerTwoFont-text-decoration: none; | |
| 807 | +--headerOneFont: normal normal normal 16px/20px montserrat,sans-serif; | |
| 808 | +--headerOneFont-style: normal; | |
| 809 | +--headerOneFont-variant: normal; | |
| 810 | +--headerOneFont-weight: normal; | |
| 811 | +--headerOneFont-size: 16px; | |
| 812 | +--headerOneFont-line-height: 20px; | |
| 813 | +--headerOneFont-family: montserrat,sans-serif; | |
| 814 | +--headerOneFont-text-decoration: none; | |
| 815 | +--inputLabelFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 816 | +--inputLabelFont-style: normal; | |
| 817 | +--inputLabelFont-variant: normal; | |
| 818 | +--inputLabelFont-weight: normal; | |
| 819 | +--inputLabelFont-size: 14px; | |
| 820 | +--inputLabelFont-line-height: 17px; | |
| 821 | +--inputLabelFont-family: montserrat,sans-serif; | |
| 822 | +--inputLabelFont-text-decoration: none; | |
| 823 | +--buttonsFont-style: normal; | |
| 824 | +--buttonsFont-variant: normal; | |
| 825 | +--buttonsFont-weight: normal; | |
| 826 | +--buttonsFont-size: 16px; | |
| 827 | +--buttonsFont-line-height: 1.4em; | |
| 828 | +--buttonsFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 829 | +--buttonsFont-text-decoration: none; | |
| 830 | +--buttonsFontHover-style: normal; | |
| 831 | +--buttonsFontHover-variant: normal; | |
| 832 | +--buttonsFontHover-weight: normal; | |
| 833 | +--buttonsFontHover-size: 16px; | |
| 834 | +--buttonsFontHover-line-height: 16px; | |
| 835 | +--buttonsFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 836 | +--buttonsFontHover-text-decoration: none; | |
| 837 | +--submitButtonFont-style: normal; | |
| 838 | +--submitButtonFont-variant: normal; | |
| 839 | +--submitButtonFont-weight: normal; | |
| 840 | +--submitButtonFont-size: 16px; | |
| 841 | +--submitButtonFont-line-height: 1.4em; | |
| 842 | +--submitButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 843 | +--submitButtonFont-text-decoration: none; | |
| 844 | +--submitButtonFontHover-style: normal; | |
| 845 | +--submitButtonFontHover-variant: normal; | |
| 846 | +--submitButtonFontHover-weight: normal; | |
| 847 | +--submitButtonFontHover-size: 16px; | |
| 848 | +--submitButtonFontHover-line-height: 1.4em; | |
| 849 | +--submitButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 850 | +--submitButtonFontHover-text-decoration: none; | |
| 851 | +--nextButtonFont-style: normal; | |
| 852 | +--nextButtonFont-variant: normal; | |
| 853 | +--nextButtonFont-weight: normal; | |
| 854 | +--nextButtonFont-size: 16px; | |
| 855 | +--nextButtonFont-line-height: 1.4em; | |
| 856 | +--nextButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 857 | +--nextButtonFont-text-decoration: none; | |
| 858 | +--nextButtonFontHover-style: normal; | |
| 859 | +--nextButtonFontHover-variant: normal; | |
| 860 | +--nextButtonFontHover-weight: normal; | |
| 861 | +--nextButtonFontHover-size: 16px; | |
| 862 | +--nextButtonFontHover-line-height: 1.4em; | |
| 863 | +--nextButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 864 | +--nextButtonFontHover-text-decoration: none; | |
| 865 | +--previousButtonFont-style: normal; | |
| 866 | +--previousButtonFont-variant: normal; | |
| 867 | +--previousButtonFont-weight: normal; | |
| 868 | +--previousButtonFont-size: 16px; | |
| 869 | +--previousButtonFont-line-height: 1.4em; | |
| 870 | +--previousButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 871 | +--previousButtonFont-text-decoration: none; | |
| 872 | +--previousButtonFontHover-style: normal; | |
| 873 | +--previousButtonFontHover-variant: normal; | |
| 874 | +--previousButtonFontHover-weight: normal; | |
| 875 | +--previousButtonFontHover-size: 16px; | |
| 876 | +--previousButtonFontHover-line-height: 1.4em; | |
| 877 | +--previousButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 878 | +--previousButtonFontHover-text-decoration: none; | |
| 879 | +--headerThreeFont-style: normal; | |
| 880 | +--headerThreeFont-variant: normal; | |
| 881 | +--headerThreeFont-weight: normal; | |
| 882 | +--headerThreeFont-size: 34px; | |
| 883 | +--headerThreeFont-line-height: 1.4em; | |
| 884 | +--headerThreeFont-family: montserrat-black,sans-serif; | |
| 885 | +--headerThreeFont-text-decoration: none; | |
| 886 | +--headerFourFont-style: normal; | |
| 887 | +--headerFourFont-variant: normal; | |
| 888 | +--headerFourFont-weight: normal; | |
| 889 | +--headerFourFont-size: 30px; | |
| 890 | +--headerFourFont-line-height: 1.4em; | |
| 891 | +--headerFourFont-family: montserrat-black,sans-serif; | |
| 892 | +--headerFourFont-text-decoration: none; | |
| 893 | +--headerFiveFont-style: normal; | |
| 894 | +--headerFiveFont-variant: normal; | |
| 895 | +--headerFiveFont-weight: normal; | |
| 896 | +--headerFiveFont-size: 25px; | |
| 897 | +--headerFiveFont-line-height: 1.4em; | |
| 898 | +--headerFiveFont-family: montserrat-black,sans-serif; | |
| 899 | +--headerFiveFont-text-decoration: none; | |
| 900 | +--headerSixFont-style: normal; | |
| 901 | +--headerSixFont-variant: normal; | |
| 902 | +--headerSixFont-weight: normal; | |
| 903 | +--headerSixFont-size: 19px; | |
| 904 | +--headerSixFont-line-height: 1.4em; | |
| 905 | +--headerSixFont-family: montserrat,sans-serif; | |
| 906 | +--headerSixFont-text-decoration: none; | |
| 907 | +--headerOneFontH1-style: normal; | |
| 908 | +--headerOneFontH1-variant: normal; | |
| 909 | +--headerOneFontH1-weight: bold; | |
| 910 | +--headerOneFontH1-size: 65px; | |
| 911 | +--headerOneFontH1-line-height: 1.4em; | |
| 912 | +--headerOneFontH1-family: montserrat,sans-serif; | |
| 913 | +--headerOneFontH1-text-decoration: none; | |
| 914 | +--headerTwoFontH2-style: normal; | |
| 915 | +--headerTwoFontH2-variant: normal; | |
| 916 | +--headerTwoFontH2-weight: bold; | |
| 917 | +--headerTwoFontH2-size: 38px; | |
| 918 | +--headerTwoFontH2-line-height: 1.4em; | |
| 919 | +--headerTwoFontH2-family: montserrat,sans-serif; | |
| 920 | +--headerTwoFontH2-text-decoration: none; | |
| 921 | +--paragraphFont-style: normal; | |
| 922 | +--paragraphFont-variant: normal; | |
| 923 | +--paragraphFont-weight: normal; | |
| 924 | +--paragraphFont-size: 16px; | |
| 925 | +--paragraphFont-line-height: 1.4em; | |
| 926 | +--paragraphFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 927 | +--paragraphFont-text-decoration: none; | |
| 928 | +--thankYouMessageFont-style: normal; | |
| 929 | +--thankYouMessageFont-variant: normal; | |
| 930 | +--thankYouMessageFont-weight: normal; | |
| 931 | +--thankYouMessageFont-size: 16px; | |
| 932 | +--thankYouMessageFont-line-height: 1.4em; | |
| 933 | +--thankYouMessageFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 934 | +--thankYouMessageFont-text-decoration: none; | |
| 935 | +--inputBorderLeftWidth: 1; | |
| 936 | +--inputBorderRightWidth: 1; | |
| 937 | +--inputBorderTopWidth: 1; | |
| 938 | +--inputBorderBottomWidth: 1; | |
| 939 | + --wix-color-1: 250,250,250; | |
| 940 | +--wix-color-2: 153,153,153; | |
| 941 | +--wix-color-3: 102,102,102; | |
| 942 | +--wix-color-4: 51,51,51; | |
| 943 | +--wix-color-5: 0,0,0; | |
| 944 | +--wix-color-6: 183,195,220; | |
| 945 | +--wix-color-7: 139,154,186; | |
| 946 | +--wix-color-8: 75,99,151; | |
| 947 | +--wix-color-9: 50,66,101; | |
| 948 | +--wix-color-10: 25,33,50; | |
| 949 | +--wix-color-11: 165,182,220; | |
| 950 | +--wix-color-12: 124,143,186; | |
| 951 | +--wix-color-13: 75,99,151; | |
| 952 | +--wix-color-14: 0,36,116; | |
| 953 | +--wix-color-15: 0,18,58; | |
| 954 | +--wix-color-16: 186,204,218; | |
| 955 | +--wix-color-17: 141,164,180; | |
| 956 | +--wix-color-18: 80,117,143; | |
| 957 | +--wix-color-19: 53,78,95; | |
| 958 | +--wix-color-20: 27,39,48; | |
| 959 | +--wix-color-21: 255,233,223; | |
| 960 | +--wix-color-22: 255,191,161; | |
| 961 | +--wix-color-23: 250,133,79; | |
| 962 | +--wix-color-24: 234,96,32; | |
| 963 | +--wix-color-25: 201,64,1; | |
| 964 | +--wix-color-26: 250,250,250; | |
| 965 | +--wix-color-27: 0,0,0; | |
| 966 | +--wix-color-28: 153,153,153; | |
| 967 | +--wix-color-29: 102,102,102; | |
| 968 | +--wix-color-30: 51,51,51; | |
| 969 | +--wix-color-31: 75,99,151; | |
| 970 | +--wix-color-32: 75,99,151; | |
| 971 | +--wix-color-33: 75,99,151; | |
| 972 | +--wix-color-34: 75,99,151; | |
| 973 | +--wix-color-35: 0,0,0; | |
| 974 | +--wix-color-36: 51,51,51; | |
| 975 | +--wix-color-37: 0,0,0; | |
| 976 | +--wix-color-38: 75,99,151; | |
| 977 | +--wix-color-39: 75,99,151; | |
| 978 | +--wix-color-40: 250,250,250; | |
| 979 | +--wix-color-41: 75,99,151; | |
| 980 | +--wix-color-42: 75,99,151; | |
| 981 | +--wix-color-43: 250,250,250; | |
| 982 | +--wix-color-44: 102,102,102; | |
| 983 | +--wix-color-45: 102,102,102; | |
| 984 | +--wix-color-46: 250,250,250; | |
| 985 | +--wix-color-47: 250,250,250; | |
| 986 | +--wix-color-48: 75,99,151; | |
| 987 | +--wix-color-49: 75,99,151; | |
| 988 | +--wix-color-50: 250,250,250; | |
| 989 | +--wix-color-51: 75,99,151; | |
| 990 | +--wix-color-52: 75,99,151; | |
| 991 | +--wix-color-53: 250,250,250; | |
| 992 | +--wix-color-54: 102,102,102; | |
| 993 | +--wix-color-55: 102,102,102; | |
| 994 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 995 | +--wix-font-Title-style: normal; | |
| 996 | +--wix-font-Title-variant: normal; | |
| 997 | +--wix-font-Title-weight: bold; | |
| 998 | +--wix-font-Title-size: 65px; | |
| 999 | +--wix-font-Title-line-height: 1.2em; | |
| 1000 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1001 | +--wix-font-Title-text-decoration: none; | |
| 1002 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1003 | +--wix-font-Menu-style: normal; | |
| 1004 | +--wix-font-Menu-variant: normal; | |
| 1005 | +--wix-font-Menu-weight: normal; | |
| 1006 | +--wix-font-Menu-size: 16px; | |
| 1007 | +--wix-font-Menu-line-height: 1.4em; | |
| 1008 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1009 | +--wix-font-Menu-text-decoration: none; | |
| 1010 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1011 | +--wix-font-Page-title-style: normal; | |
| 1012 | +--wix-font-Page-title-variant: normal; | |
| 1013 | +--wix-font-Page-title-weight: bold; | |
| 1014 | +--wix-font-Page-title-size: 38px; | |
| 1015 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1016 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1017 | +--wix-font-Page-title-text-decoration: none; | |
| 1018 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1019 | +--wix-font-Heading-XL-style: normal; | |
| 1020 | +--wix-font-Heading-XL-variant: normal; | |
| 1021 | +--wix-font-Heading-XL-weight: normal; | |
| 1022 | +--wix-font-Heading-XL-size: 34px; | |
| 1023 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1024 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1025 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1026 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1027 | +--wix-font-Heading-L-style: normal; | |
| 1028 | +--wix-font-Heading-L-variant: normal; | |
| 1029 | +--wix-font-Heading-L-weight: normal; | |
| 1030 | +--wix-font-Heading-L-size: 30px; | |
| 1031 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1032 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1033 | +--wix-font-Heading-L-text-decoration: none; | |
| 1034 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1035 | +--wix-font-Heading-M-style: normal; | |
| 1036 | +--wix-font-Heading-M-variant: normal; | |
| 1037 | +--wix-font-Heading-M-weight: normal; | |
| 1038 | +--wix-font-Heading-M-size: 25px; | |
| 1039 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1040 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1041 | +--wix-font-Heading-M-text-decoration: none; | |
| 1042 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1043 | +--wix-font-Heading-S-style: normal; | |
| 1044 | +--wix-font-Heading-S-variant: normal; | |
| 1045 | +--wix-font-Heading-S-weight: normal; | |
| 1046 | +--wix-font-Heading-S-size: 19px; | |
| 1047 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1048 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1049 | +--wix-font-Heading-S-text-decoration: none; | |
| 1050 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1051 | +--wix-font-Body-L-style: normal; | |
| 1052 | +--wix-font-Body-L-variant: normal; | |
| 1053 | +--wix-font-Body-L-weight: normal; | |
| 1054 | +--wix-font-Body-L-size: 16px; | |
| 1055 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1056 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1057 | +--wix-font-Body-L-text-decoration: none; | |
| 1058 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1059 | +--wix-font-Body-M-style: normal; | |
| 1060 | +--wix-font-Body-M-variant: normal; | |
| 1061 | +--wix-font-Body-M-weight: normal; | |
| 1062 | +--wix-font-Body-M-size: 16px; | |
| 1063 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1064 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1065 | +--wix-font-Body-M-text-decoration: none; | |
| 1066 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1067 | +--wix-font-Body-S-style: normal; | |
| 1068 | +--wix-font-Body-S-variant: normal; | |
| 1069 | +--wix-font-Body-S-weight: normal; | |
| 1070 | +--wix-font-Body-S-size: 12px; | |
| 1071 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1072 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1073 | +--wix-font-Body-S-text-decoration: none; | |
| 1074 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1075 | +--wix-font-Body-XS-style: normal; | |
| 1076 | +--wix-font-Body-XS-variant: normal; | |
| 1077 | +--wix-font-Body-XS-weight: normal; | |
| 1078 | +--wix-font-Body-XS-size: 12px; | |
| 1079 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1080 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1081 | +--wix-font-Body-XS-text-decoration: none; | |
| 1082 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1083 | +--wix-font-LIGHT-style: normal; | |
| 1084 | +--wix-font-LIGHT-variant: normal; | |
| 1085 | +--wix-font-LIGHT-weight: normal; | |
| 1086 | +--wix-font-LIGHT-size: 12px; | |
| 1087 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1088 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1089 | +--wix-font-LIGHT-text-decoration: none; | |
| 1090 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1091 | +--wix-font-MEDIUM-style: normal; | |
| 1092 | +--wix-font-MEDIUM-variant: normal; | |
| 1093 | +--wix-font-MEDIUM-weight: normal; | |
| 1094 | +--wix-font-MEDIUM-size: 12px; | |
| 1095 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1096 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1097 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1098 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1099 | +--wix-font-STRONG-style: normal; | |
| 1100 | +--wix-font-STRONG-variant: normal; | |
| 1101 | +--wix-font-STRONG-weight: normal; | |
| 1102 | +--wix-font-STRONG-size: 12px; | |
| 1103 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1104 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1105 | +--wix-font-STRONG-text-decoration: none; | |
| 1106 | + } | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | +#comp-m8omcigd2_r_comp-m8j7owsd{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m8j7o6oq{--opacity:1;}#comp-m8omcigd2_r_comp-m2y10ib8{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:0px;--sub-padding-start:10px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcigd2_r_comp-mbweuill{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}#comp-m8omcigd2_r_comp-kd5pdf7t{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-kd5pdf7t :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:12px;text-align:center;letter-spacing:0em;line-height:normal;}#comp-m8omcih716_r_comp-kd5px9hr{--screen-width:100vw;}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;--direction:rtl;--item-height:56px;--text-align:center;--template-columns:calc(40px + 1em) 1fr calc(40px + 1em);--template-areas:". label arrow";--padding-start:0px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcih716_r_comp-kkmqi5tc{--undefined:[object Object];--fill-opacity:1;--stroke-width:0;--stroke:#ED1566;--stroke-opacity:1;--fill:#000000;}#comp-m8omcihb_r_comp-kbgajy18{--bg-overlay-color:transparent;--bg-gradient:none;--transition-delay:0s,0s;--transition-duration:0.3s,0.3s;--transition-timing-function:ease,linear;--scrolled-transform:translateY(-38px);--transition-property:background-color,transform;--inherit-transition:var(--transition, none);}.comp-m8omcihb_r_comp-m6saac0q { | |
| 1147 | + --wix-direction: ltr; | |
| 1148 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1149 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1150 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1151 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1152 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1153 | +--cartWidget_cartIcon: 75,99,151; | |
| 1154 | +--cartWidget_cartIcon-rgb: 75,99,151; | |
| 1155 | +--cartWidget_cartIcon-opacity: 1; | |
| 1156 | +--cartWidget_cartIconText: 75,99,151; | |
| 1157 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1158 | +--cartWidget_cartIconText-opacity: 1; | |
| 1159 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1160 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1161 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1162 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1163 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1164 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1165 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1166 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1167 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1168 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1169 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1170 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1171 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1172 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1173 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1174 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1175 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1176 | + --wix-color-1: 250,250,250; | |
| 1177 | +--wix-color-2: 153,153,153; | |
| 1178 | +--wix-color-3: 102,102,102; | |
| 1179 | +--wix-color-4: 51,51,51; | |
| 1180 | +--wix-color-5: 0,0,0; | |
| 1181 | +--wix-color-6: 183,195,220; | |
| 1182 | +--wix-color-7: 139,154,186; | |
| 1183 | +--wix-color-8: 75,99,151; | |
| 1184 | +--wix-color-9: 50,66,101; | |
| 1185 | +--wix-color-10: 25,33,50; | |
| 1186 | +--wix-color-11: 165,182,220; | |
| 1187 | +--wix-color-12: 124,143,186; | |
| 1188 | +--wix-color-13: 75,99,151; | |
| 1189 | +--wix-color-14: 0,36,116; | |
| 1190 | +--wix-color-15: 0,18,58; | |
| 1191 | +--wix-color-16: 186,204,218; | |
| 1192 | +--wix-color-17: 141,164,180; | |
| 1193 | +--wix-color-18: 80,117,143; | |
| 1194 | +--wix-color-19: 53,78,95; | |
| 1195 | +--wix-color-20: 27,39,48; | |
| 1196 | +--wix-color-21: 255,233,223; | |
| 1197 | +--wix-color-22: 255,191,161; | |
| 1198 | +--wix-color-23: 250,133,79; | |
| 1199 | +--wix-color-24: 234,96,32; | |
| 1200 | +--wix-color-25: 201,64,1; | |
| 1201 | +--wix-color-26: 250,250,250; | |
| 1202 | +--wix-color-27: 0,0,0; | |
| 1203 | +--wix-color-28: 153,153,153; | |
| 1204 | +--wix-color-29: 102,102,102; | |
| 1205 | +--wix-color-30: 51,51,51; | |
| 1206 | +--wix-color-31: 75,99,151; | |
| 1207 | +--wix-color-32: 75,99,151; | |
| 1208 | +--wix-color-33: 75,99,151; | |
| 1209 | +--wix-color-34: 75,99,151; | |
| 1210 | +--wix-color-35: 0,0,0; | |
| 1211 | +--wix-color-36: 51,51,51; | |
| 1212 | +--wix-color-37: 0,0,0; | |
| 1213 | +--wix-color-38: 75,99,151; | |
| 1214 | +--wix-color-39: 75,99,151; | |
| 1215 | +--wix-color-40: 250,250,250; | |
| 1216 | +--wix-color-41: 75,99,151; | |
| 1217 | +--wix-color-42: 75,99,151; | |
| 1218 | +--wix-color-43: 250,250,250; | |
| 1219 | +--wix-color-44: 102,102,102; | |
| 1220 | +--wix-color-45: 102,102,102; | |
| 1221 | +--wix-color-46: 250,250,250; | |
| 1222 | +--wix-color-47: 250,250,250; | |
| 1223 | +--wix-color-48: 75,99,151; | |
| 1224 | +--wix-color-49: 75,99,151; | |
| 1225 | +--wix-color-50: 250,250,250; | |
| 1226 | +--wix-color-51: 75,99,151; | |
| 1227 | +--wix-color-52: 75,99,151; | |
| 1228 | +--wix-color-53: 250,250,250; | |
| 1229 | +--wix-color-54: 102,102,102; | |
| 1230 | +--wix-color-55: 102,102,102; | |
| 1231 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1232 | +--wix-font-Title-style: normal; | |
| 1233 | +--wix-font-Title-variant: normal; | |
| 1234 | +--wix-font-Title-weight: bold; | |
| 1235 | +--wix-font-Title-size: 65px; | |
| 1236 | +--wix-font-Title-line-height: 1.2em; | |
| 1237 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1238 | +--wix-font-Title-text-decoration: none; | |
| 1239 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1240 | +--wix-font-Menu-style: normal; | |
| 1241 | +--wix-font-Menu-variant: normal; | |
| 1242 | +--wix-font-Menu-weight: normal; | |
| 1243 | +--wix-font-Menu-size: 16px; | |
| 1244 | +--wix-font-Menu-line-height: 1.4em; | |
| 1245 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1246 | +--wix-font-Menu-text-decoration: none; | |
| 1247 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1248 | +--wix-font-Page-title-style: normal; | |
| 1249 | +--wix-font-Page-title-variant: normal; | |
| 1250 | +--wix-font-Page-title-weight: bold; | |
| 1251 | +--wix-font-Page-title-size: 38px; | |
| 1252 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1253 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1254 | +--wix-font-Page-title-text-decoration: none; | |
| 1255 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1256 | +--wix-font-Heading-XL-style: normal; | |
| 1257 | +--wix-font-Heading-XL-variant: normal; | |
| 1258 | +--wix-font-Heading-XL-weight: normal; | |
| 1259 | +--wix-font-Heading-XL-size: 34px; | |
| 1260 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1261 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1262 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1263 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1264 | +--wix-font-Heading-L-style: normal; | |
| 1265 | +--wix-font-Heading-L-variant: normal; | |
| 1266 | +--wix-font-Heading-L-weight: normal; | |
| 1267 | +--wix-font-Heading-L-size: 30px; | |
| 1268 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1269 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1270 | +--wix-font-Heading-L-text-decoration: none; | |
| 1271 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1272 | +--wix-font-Heading-M-style: normal; | |
| 1273 | +--wix-font-Heading-M-variant: normal; | |
| 1274 | +--wix-font-Heading-M-weight: normal; | |
| 1275 | +--wix-font-Heading-M-size: 25px; | |
| 1276 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1277 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1278 | +--wix-font-Heading-M-text-decoration: none; | |
| 1279 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1280 | +--wix-font-Heading-S-style: normal; | |
| 1281 | +--wix-font-Heading-S-variant: normal; | |
| 1282 | +--wix-font-Heading-S-weight: normal; | |
| 1283 | +--wix-font-Heading-S-size: 19px; | |
| 1284 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1285 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1286 | +--wix-font-Heading-S-text-decoration: none; | |
| 1287 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1288 | +--wix-font-Body-L-style: normal; | |
| 1289 | +--wix-font-Body-L-variant: normal; | |
| 1290 | +--wix-font-Body-L-weight: normal; | |
| 1291 | +--wix-font-Body-L-size: 16px; | |
| 1292 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1293 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1294 | +--wix-font-Body-L-text-decoration: none; | |
| 1295 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1296 | +--wix-font-Body-M-style: normal; | |
| 1297 | +--wix-font-Body-M-variant: normal; | |
| 1298 | +--wix-font-Body-M-weight: normal; | |
| 1299 | +--wix-font-Body-M-size: 16px; | |
| 1300 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1301 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1302 | +--wix-font-Body-M-text-decoration: none; | |
| 1303 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1304 | +--wix-font-Body-S-style: normal; | |
| 1305 | +--wix-font-Body-S-variant: normal; | |
| 1306 | +--wix-font-Body-S-weight: normal; | |
| 1307 | +--wix-font-Body-S-size: 12px; | |
| 1308 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1309 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1310 | +--wix-font-Body-S-text-decoration: none; | |
| 1311 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1312 | +--wix-font-Body-XS-style: normal; | |
| 1313 | +--wix-font-Body-XS-variant: normal; | |
| 1314 | +--wix-font-Body-XS-weight: normal; | |
| 1315 | +--wix-font-Body-XS-size: 12px; | |
| 1316 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1317 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1318 | +--wix-font-Body-XS-text-decoration: none; | |
| 1319 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1320 | +--wix-font-LIGHT-style: normal; | |
| 1321 | +--wix-font-LIGHT-variant: normal; | |
| 1322 | +--wix-font-LIGHT-weight: normal; | |
| 1323 | +--wix-font-LIGHT-size: 12px; | |
| 1324 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1325 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1326 | +--wix-font-LIGHT-text-decoration: none; | |
| 1327 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1328 | +--wix-font-MEDIUM-style: normal; | |
| 1329 | +--wix-font-MEDIUM-variant: normal; | |
| 1330 | +--wix-font-MEDIUM-weight: normal; | |
| 1331 | +--wix-font-MEDIUM-size: 12px; | |
| 1332 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1333 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1334 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1335 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1336 | +--wix-font-STRONG-style: normal; | |
| 1337 | +--wix-font-STRONG-variant: normal; | |
| 1338 | +--wix-font-STRONG-weight: normal; | |
| 1339 | +--wix-font-STRONG-size: 12px; | |
| 1340 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1341 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1342 | +--wix-font-STRONG-text-decoration: none; | |
| 1343 | + }#comp-m8omcihb_r_comp-mdeyh2rw{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-m2xyvk9x{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-m2xz2cwh{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxu2mi38{height:inherit;width:auto;}#comp-m8omcihb_r_comp-m5rceko6{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-mdezy72f{--boxShadow:none;--backgroundColor:rgba(255,255,255,1);--borderColor:50,65,88;--borderWidth:0px;--borderRadius:0px;--alpha-borderColor:0;}.comp-m8omcihb_r_comp-mdezy72s{--shc-mutated-brightness:77,77,77;}.comp-m8omcihb_r_comp-mdf0r6km{--text-direction:var(--wix-opt-in-direction);}.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.032 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}.comp-m8omcihb_r_comp-mdf0tx18{--btn-direction:var(--wix-opt-in-direction, ltr);--direction:inherit;--overflow:visible;--label-text-overflow:initial;--label-white-space:pre-line;--btn-min-width:min-content;--container-justify-content:center;--container-align-items:center;--icon-rotation:0deg;--disabled-icon-rotation:0deg;--hover-icon-rotation:0deg;}#comp-m8omcihb_r_comp-m5rceatr{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxubhuix{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:10px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--padding-start:0px;}}#comp-m8omcihb_r_comp-mdezahz3{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}.comp-m8omcihb_r_comp-m73v5p0x { | |
| 1344 | + --wix-direction: ltr; | |
| 1345 | +--cartWidgetIcon: 1; | |
| 1346 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1347 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1348 | +--cartWidget_cartIcon: 183,195,220; | |
| 1349 | +--cartWidget_cartIcon-rgb: 183,195,220; | |
| 1350 | +--cartWidget_cartIcon-opacity: 1; | |
| 1351 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1352 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1353 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1354 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1355 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1356 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1357 | +--cartWidget_cartIconText: 75,99,151; | |
| 1358 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1359 | +--cartWidget_cartIconText-opacity: 1; | |
| 1360 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1361 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1362 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1363 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1364 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1365 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1366 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1367 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1368 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1369 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1370 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1371 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1372 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1373 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1374 | + --wix-color-1: 250,250,250; | |
| 1375 | +--wix-color-2: 153,153,153; | |
| 1376 | +--wix-color-3: 102,102,102; | |
| 1377 | +--wix-color-4: 51,51,51; | |
| 1378 | +--wix-color-5: 0,0,0; | |
| 1379 | +--wix-color-6: 183,195,220; | |
| 1380 | +--wix-color-7: 139,154,186; | |
| 1381 | +--wix-color-8: 75,99,151; | |
| 1382 | +--wix-color-9: 50,66,101; | |
| 1383 | +--wix-color-10: 25,33,50; | |
| 1384 | +--wix-color-11: 165,182,220; | |
| 1385 | +--wix-color-12: 124,143,186; | |
| 1386 | +--wix-color-13: 75,99,151; | |
| 1387 | +--wix-color-14: 0,36,116; | |
| 1388 | +--wix-color-15: 0,18,58; | |
| 1389 | +--wix-color-16: 186,204,218; | |
| 1390 | +--wix-color-17: 141,164,180; | |
| 1391 | +--wix-color-18: 80,117,143; | |
| 1392 | +--wix-color-19: 53,78,95; | |
| 1393 | +--wix-color-20: 27,39,48; | |
| 1394 | +--wix-color-21: 255,233,223; | |
| 1395 | +--wix-color-22: 255,191,161; | |
| 1396 | +--wix-color-23: 250,133,79; | |
| 1397 | +--wix-color-24: 234,96,32; | |
| 1398 | +--wix-color-25: 201,64,1; | |
| 1399 | +--wix-color-26: 250,250,250; | |
| 1400 | +--wix-color-27: 0,0,0; | |
| 1401 | +--wix-color-28: 153,153,153; | |
| 1402 | +--wix-color-29: 102,102,102; | |
| 1403 | +--wix-color-30: 51,51,51; | |
| 1404 | +--wix-color-31: 75,99,151; | |
| 1405 | +--wix-color-32: 75,99,151; | |
| 1406 | +--wix-color-33: 75,99,151; | |
| 1407 | +--wix-color-34: 75,99,151; | |
| 1408 | +--wix-color-35: 0,0,0; | |
| 1409 | +--wix-color-36: 51,51,51; | |
| 1410 | +--wix-color-37: 0,0,0; | |
| 1411 | +--wix-color-38: 75,99,151; | |
| 1412 | +--wix-color-39: 75,99,151; | |
| 1413 | +--wix-color-40: 250,250,250; | |
| 1414 | +--wix-color-41: 75,99,151; | |
| 1415 | +--wix-color-42: 75,99,151; | |
| 1416 | +--wix-color-43: 250,250,250; | |
| 1417 | +--wix-color-44: 102,102,102; | |
| 1418 | +--wix-color-45: 102,102,102; | |
| 1419 | +--wix-color-46: 250,250,250; | |
| 1420 | +--wix-color-47: 250,250,250; | |
| 1421 | +--wix-color-48: 75,99,151; | |
| 1422 | +--wix-color-49: 75,99,151; | |
| 1423 | +--wix-color-50: 250,250,250; | |
| 1424 | +--wix-color-51: 75,99,151; | |
| 1425 | +--wix-color-52: 75,99,151; | |
| 1426 | +--wix-color-53: 250,250,250; | |
| 1427 | +--wix-color-54: 102,102,102; | |
| 1428 | +--wix-color-55: 102,102,102; | |
| 1429 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1430 | +--wix-font-Title-style: normal; | |
| 1431 | +--wix-font-Title-variant: normal; | |
| 1432 | +--wix-font-Title-weight: bold; | |
| 1433 | +--wix-font-Title-size: 65px; | |
| 1434 | +--wix-font-Title-line-height: 1.2em; | |
| 1435 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1436 | +--wix-font-Title-text-decoration: none; | |
| 1437 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1438 | +--wix-font-Menu-style: normal; | |
| 1439 | +--wix-font-Menu-variant: normal; | |
| 1440 | +--wix-font-Menu-weight: normal; | |
| 1441 | +--wix-font-Menu-size: 16px; | |
| 1442 | +--wix-font-Menu-line-height: 1.4em; | |
| 1443 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1444 | +--wix-font-Menu-text-decoration: none; | |
| 1445 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1446 | +--wix-font-Page-title-style: normal; | |
| 1447 | +--wix-font-Page-title-variant: normal; | |
| 1448 | +--wix-font-Page-title-weight: bold; | |
| 1449 | +--wix-font-Page-title-size: 38px; | |
| 1450 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1451 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1452 | +--wix-font-Page-title-text-decoration: none; | |
| 1453 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1454 | +--wix-font-Heading-XL-style: normal; | |
| 1455 | +--wix-font-Heading-XL-variant: normal; | |
| 1456 | +--wix-font-Heading-XL-weight: normal; | |
| 1457 | +--wix-font-Heading-XL-size: 34px; | |
| 1458 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1459 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1460 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1461 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1462 | +--wix-font-Heading-L-style: normal; | |
| 1463 | +--wix-font-Heading-L-variant: normal; | |
| 1464 | +--wix-font-Heading-L-weight: normal; | |
| 1465 | +--wix-font-Heading-L-size: 30px; | |
| 1466 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1467 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1468 | +--wix-font-Heading-L-text-decoration: none; | |
| 1469 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1470 | +--wix-font-Heading-M-style: normal; | |
| 1471 | +--wix-font-Heading-M-variant: normal; | |
| 1472 | +--wix-font-Heading-M-weight: normal; | |
| 1473 | +--wix-font-Heading-M-size: 25px; | |
| 1474 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1475 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1476 | +--wix-font-Heading-M-text-decoration: none; | |
| 1477 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1478 | +--wix-font-Heading-S-style: normal; | |
| 1479 | +--wix-font-Heading-S-variant: normal; | |
| 1480 | +--wix-font-Heading-S-weight: normal; | |
| 1481 | +--wix-font-Heading-S-size: 19px; | |
| 1482 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1483 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1484 | +--wix-font-Heading-S-text-decoration: none; | |
| 1485 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1486 | +--wix-font-Body-L-style: normal; | |
| 1487 | +--wix-font-Body-L-variant: normal; | |
| 1488 | +--wix-font-Body-L-weight: normal; | |
| 1489 | +--wix-font-Body-L-size: 16px; | |
| 1490 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1491 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1492 | +--wix-font-Body-L-text-decoration: none; | |
| 1493 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1494 | +--wix-font-Body-M-style: normal; | |
| 1495 | +--wix-font-Body-M-variant: normal; | |
| 1496 | +--wix-font-Body-M-weight: normal; | |
| 1497 | +--wix-font-Body-M-size: 16px; | |
| 1498 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1499 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1500 | +--wix-font-Body-M-text-decoration: none; | |
| 1501 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1502 | +--wix-font-Body-S-style: normal; | |
| 1503 | +--wix-font-Body-S-variant: normal; | |
| 1504 | +--wix-font-Body-S-weight: normal; | |
| 1505 | +--wix-font-Body-S-size: 12px; | |
| 1506 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1507 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1508 | +--wix-font-Body-S-text-decoration: none; | |
| 1509 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1510 | +--wix-font-Body-XS-style: normal; | |
| 1511 | +--wix-font-Body-XS-variant: normal; | |
| 1512 | +--wix-font-Body-XS-weight: normal; | |
| 1513 | +--wix-font-Body-XS-size: 12px; | |
| 1514 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1515 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1516 | +--wix-font-Body-XS-text-decoration: none; | |
| 1517 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1518 | +--wix-font-LIGHT-style: normal; | |
| 1519 | +--wix-font-LIGHT-variant: normal; | |
| 1520 | +--wix-font-LIGHT-weight: normal; | |
| 1521 | +--wix-font-LIGHT-size: 12px; | |
| 1522 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1523 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1524 | +--wix-font-LIGHT-text-decoration: none; | |
| 1525 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1526 | +--wix-font-MEDIUM-style: normal; | |
| 1527 | +--wix-font-MEDIUM-variant: normal; | |
| 1528 | +--wix-font-MEDIUM-weight: normal; | |
| 1529 | +--wix-font-MEDIUM-size: 12px; | |
| 1530 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1531 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1532 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1533 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1534 | +--wix-font-STRONG-style: normal; | |
| 1535 | +--wix-font-STRONG-variant: normal; | |
| 1536 | +--wix-font-STRONG-weight: normal; | |
| 1537 | +--wix-font-STRONG-size: 12px; | |
| 1538 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1539 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1540 | +--wix-font-STRONG-text-decoration: none; | |
| 1541 | + }#comp-m8omcihb_r_comp-m8j7mq6v{--opacity:1;}#comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdeyhsow{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-block:0;--item-margin-inline:0px 10px;--item-display:inline-block;--direction:var(--wix-opt-in-direction, ltr);--flex-direction:row;height:20px;width:calc(2 * (20px + 10px) - 10px);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));--item-margin-inline:0px max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)));height:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));width:calc(2 * (max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width))) + max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)))) - max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width))));}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-inline:0px 10px;height:20px;width:calc(2 * (20px + 10px) - 10px);}}#comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdf18wki{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FAFAFA !important;font-size:max(14px, min(16px, max(0.5px, 0.0112427 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;text-decoration:none !important;}#comp-m8omcihb_r_comp-mdf18wki [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FAFAFA) !important;}}</style> | |
| 1542 | + | |
| 1543 | +</head> | |
| 1544 | +<body class='responsive' > | |
| 1545 | +<script type="text/javascript"> | |
| 1546 | + var bodyCacheable = true; | |
| 1547 | + | |
| 1548 | + var exclusionReason = {"shouldRender":true,"forced":false}; | |
| 1549 | + var ssrInfo = {"cacheExclusionReason":"","renderBodyTime":2116,"renderTimeStamp":1786257325259} | |
| 1550 | +</script> | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + <!--pageHtmlEmbeds.bodyStart start--> | |
| 1559 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart start"></script> | |
| 1560 | + | |
| 1561 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart end"></script> | |
| 1562 | + <!--pageHtmlEmbeds.bodyStart end--> | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | +<script id="wix-first-paint"> | |
| 1568 | + if (window.ResizeObserver && | |
| 1569 | + (!window.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || PerformanceObserver.supportedEntryTypes.indexOf('paint') === -1)) { | |
| 1570 | + new ResizeObserver(function (entries, observer) { | |
| 1571 | + entries.some(function (entry) { | |
| 1572 | + var contentRect = entry.contentRect; | |
| 1573 | + if (contentRect.width > 0 && contentRect.height > 0) { | |
| 1574 | + requestAnimationFrame(function (now) { | |
| 1575 | + window.wixFirstPaint = now; | |
| 1576 | + dispatchEvent(new CustomEvent('wixFirstPaint')); | |
| 1577 | + }); | |
| 1578 | + observer.disconnect(); | |
| 1579 | + return true; | |
| 1580 | + } | |
| 1581 | + }); | |
| 1582 | + }).observe(document.body); | |
| 1583 | + } | |
| 1584 | +</script> | |
| 1585 | + | |
| 1586 | + | |
| 1587 | +<script id="scroll-bar-width-calculation"> | |
| 1588 | + const div = document.createElement('div') | |
| 1589 | + div.style.overflowY = 'scroll' | |
| 1590 | + div.style.width = '50px' | |
| 1591 | + div.style.height = '50px' | |
| 1592 | + div.style.visibility = 'hidden' | |
| 1593 | + document.body.appendChild(div) | |
| 1594 | + const scrollbarWidth= div.offsetWidth - div.clientWidth | |
| 1595 | + document.body.removeChild(div) | |
| 1596 | + if(scrollbarWidth > 0){ | |
| 1597 | + document.body.style.setProperty('--scrollbar-width', `${scrollbarWidth}px`) | |
| 1598 | + } | |
| 1599 | +</script> | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + <style id=wix-custom-css>/* Users Custom CSS code */ | |
| 1606 | + } | |
| 1607 | +</style> | |
| 1608 | + | |
| 1609 | + | |
| 1610 | + | |
| 1611 | + <!-- domStoreHtml --> | |
| 1612 | + <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> | |
| 1613 | + | |
| 1614 | + | |
| 1615 | +<div id="SITE_CONTAINER"><style id="STYLE_OVERRIDES_ID">#comp-m8omdbeu13{visibility:hidden !important;} #comp-m8omdbew{visibility:hidden !important;} #comp-m8omdbf211{--corvid-color:green;} #comp-m8omdbf2{--container-corvid-background-color:#D1FFBD;}</style><div id="main_MF" class="main_MF"><div id="SCROLL_TO_TOP" class="qe3oTb ignore-focus SCROLL_TO_TOP" role="region" tabindex="-1" aria-label="top of page"><span class="TvbeET">top of page</span></div><div id="site-root" class="site-root"><div id="masterPage" class="masterPage css-editing-scope"><div id="SITE_PAGES" class="Y3K28_ SITE_PAGES"><div id="ebqqm" class="ETqrjz theme-vars ebqqm"><div class="g0IvTF wixui-page" data-testid="page-bg"></div><div><div class="ebqqm-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="ebqqm-container"><div id="comp-m8omcihb-pinned-layer" class="comp-m8omcihb-pinned-layer QED8q1"><header id="comp-m8omcihb" class="comp-m8omcihb S829f_ comp-m8omcihb-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcihb_r_comp-kbgajy18" tabindex="-1" data-block-level-container="Section" class="Lnr3dj comp-m8omcihb_r_comp-kbgajy18 Lnr3dj w2JesW wixui-header fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcihb_r_comp-kbgajy18" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcihb_r_comp-kbgajy18" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcihb_r_comp-kbgajy18" data-motion-part="BG_MEDIA comp-m8omcihb_r_comp-kbgajy18" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-kbgajy18-container"><div id="comp-m8omcihb_r_comp-m6saac0q" class="QrIus comp-m8omcihb_r_comp-m6saac0q"><div class="comp-m8omcihb_r_comp-m6saac0q"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m6saadbd" class="comp-m8omcihb_r_comp-m6saadbd" style="visibility:hidden;overflow:hidden;width:0;min-width:0;height:0;min-height:0;pointer-events:none;margin:0;position:absolute"></div><div id="comp-m8omcihb_r_comp-mdeyh2rw" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyh2rw-container comp-m8omcihb_r_comp-mdeyh2rw wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-m2xyvk9x" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m2xyvk9x wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-m2xyvk9x-container"><div class="comp-m8omcihb_r_comp-m2xz2cwh lIkFMb" id="comp-m8omcihb_r_comp-m2xz2cwh" aria-disabled="false"><a data-testid="linkElement" href="http://www.sflogements.com" target="_self" rel="noreferrer noopener" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><div id="comp-m8omcihb_r_comp-lxu2mi30" class="comp-m8omcihb_r_comp-lxu2mi30-container wiZmhC"><nav aria-label="Site" class="HamburgerOpenButton3537389287__nav"><div id="comp-m8omcihb_r_comp-lxu2mi38" class="HamburgerOpenButton3537389287__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38" data-semantic-classname="hamburger-open-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38-styleId__root wixui-hamburger-open-button" data-testid="buttonContent" aria-expanded="false" aria-haspopup="dialog" aria-label="Menu"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-open-button__label" data-testid="stylablebutton-label">Menu</span><span class="StylableButton2545352419__icon wixui-hamburger-open-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1616 | +<svg data-bbox="60 70 80 60" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1617 | + <g> | |
| 1618 | + <path d="M64 78h72a4 4 0 0 0 0-8H64a4 4 0 0 0 0 8z"></path> | |
| 1619 | + <path d="M136 96H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1620 | + <path d="M136 122H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1621 | + </g> | |
| 1622 | +</svg> | |
| 1623 | +</span></span></span></button></div></nav><div id="comp-m8omcihb_r_comp-lxu2mi3c" class="HamburgerOverlay547129737--showBackgroundOverlay HamburgerOverlay547129737__root OrbgmN" role="dialog" aria-modal="true" aria-label="Navigation sur le site" data-visible="false" data-hook="hamburger-overlay-root" tabindex="-1" data-part="hamburger-overlay" data-animation-name="none"><div data-hook="hamburger-overlay-dialog" aria-hidden="true" class="HamburgerOverlay547129737__overlay comp-m8omcihb_r_comp-lxu2mi3c-styleId__root wixui-hamburger-overlay"></div><div class="comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3c-container"><div id="comp-m8omcihb_r_comp-lxu2mi3d5" tabindex="-1" class="comp-m8omcihb_r_comp-lxu2mi3d5 ZBf0K1 fy6eJk" data-animation-name="none"><div aria-hidden="true" class="HamburgerMenuContainer502174924__root comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root wixui-hamburger-menu-container"></div><div class="comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3d5-container"><div id="comp-m8omcihb_r_comp-lxu2mi3i1" class="HamburgerCloseButton872037521__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1" data-semantic-classname="hamburger-close-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root wixui-hamburger-close-button" data-testid="buttonContent" aria-label="Close"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-close-button__label" data-testid="stylablebutton-label">Close</span><span class="StylableButton2545352419__icon wixui-hamburger-close-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1624 | +<svg data-bbox="33 33 133.333 133.333" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1625 | + <g> | |
| 1626 | + <path d="M166.333 38.892 160.442 33 99.667 93.775 38.892 33 33 38.892l60.775 60.775L33 160.442l5.892 5.891 60.775-60.775 60.775 60.775 5.891-5.891-60.775-60.775 60.775-60.775Z" fill-rule="evenodd"></path> | |
| 1627 | + </g> | |
| 1628 | +</svg> | |
| 1629 | +</span></span></span></button></div><div id="comp-m8omcihb_r_comp-m5rceko6" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m5rceko6-container comp-m8omcihb_r_comp-m5rceko6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-mdezy72f" class="ArRNfA comp-m8omcihb_r_comp-mdezy72f wixui-repeater"><div data-testid="responsive-container-content" role="list" class="comp-m8omcihb_r_comp-mdezy72f-container"><div id="comp-m8omcihb_r_comp-mdezy72s__item1" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item1 wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item1" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item1 wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">À Propos</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item1" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item1" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/entreprise" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="À Propos"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1630 | + <g> | |
| 1631 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1632 | + </g> | |
| 1633 | +</svg> | |
| 1634 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Obtenir un devis</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Obtenir un devis"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1635 | + <g> | |
| 1636 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1637 | + </g> | |
| 1638 | +</svg> | |
| 1639 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Blog</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/blog" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Blog"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1640 | + <g> | |
| 1641 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1642 | + </g> | |
| 1643 | +</svg> | |
| 1644 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Contact</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Contact"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1645 | + <g> | |
| 1646 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1647 | + </g> | |
| 1648 | +</svg> | |
| 1649 | +</span></span></span></a></div></div></div></div><div class="comp-m8omcihb_r_comp-m5rceatr lIkFMb" id="comp-m8omcihb_r_comp-m5rceatr" aria-disabled="false"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><nav id="comp-m8omcihb_r_comp-lxubhuix" aria-label="Site" class="d2V6sy comp-m8omcihb_r_comp-lxubhuix wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcihb_r_comp-lxubhuix-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcihb_r_comp-lxubhuix-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcihb_r_comp-mdezahz3"></div></div></div></div></div></div></div></div></div><div id="comp-m8omcihb_r_comp-m73v5p0x" class="QrIus comp-m8omcihb_r_comp-m73v5p0x"><div class="comp-m8omcihb_r_comp-m73v5p0x"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m8j7mq6v" class="comp-m8omcihb_r_comp-m8j7mq6v wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcihb_r_comp-m8j7mq6v" class="iL7Pq5 gx51wo"> | |
| 1650 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omcihb_r_comp-m8j7mq6v svg [data-color="1"] {fill: #FAFAFA;}</style></defs> | |
| 1651 | + <g> | |
| 1652 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 1653 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 1654 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 1655 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 1656 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 1657 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 1658 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 1659 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 1660 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 1661 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 1662 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 1663 | + </g> | |
| 1664 | +</svg> | |
| 1665 | +</div></a></div><div id="comp-m8omcihb_r_comp-m99166jr" class="comp-m8omcihb_r_comp-m99166jr-container comp-m8omcihb_r_comp-m99166jr" data-prehydration=""><div id="comp-m8omcihb_r_comp-m99166jr-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/forfaits" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion d'immeubles à revenus</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion de copropriété</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdez2caz" class="n8bAtI comp-m8omcihb_r_comp-mdez2caz"><div class="zACo20 wixui-vertical-line"></div></div></div></div><div id="comp-m8omcihb_r_comp-mdeyhsow" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyhsow wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-mdeyhsow-container"><div id="comp-m8omcihb_r_comp-mdeylyv3" class="comp-m8omcihb_r_comp-mdeylyv3 eAOB3n"><ul class="tDHQQD" aria-label="Barre de réseaux sociaux"><li id="dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.instagram.com/sf.habitations/" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Instagram"><wow-image id="img_0_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":201,"uri":"11062b_cef3b719166a4815b446d4dcfcb6120d~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Instagram"/></wow-image></a></li><li id="dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.facebook.com/profile.php?id=61555968238150" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Facebook"><wow-image id="img_1_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":200,"uri":"11062b_ef6a6ac194704911951645990055c2ce~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Facebook"/></wow-image></a></li></ul></div><div id="comp-m8omcihb_r_comp-mdeyqfi8" class="comp-m8omcihb_r_comp-mdeyqfi8-container comp-m8omcihb_r_comp-mdeyqfi8" data-prehydration=""><div id="comp-m8omcihb_r_comp-mdeyqfi8-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/entreprise" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">À Propos</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/blog" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Blog</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Obtenir un devis</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Contact</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdf18wki" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf18wki wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="tel: 450.499.7978" class="wixui-rich-text__text"> 450.499.7978</a></p></div></div></div></div><div id="comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID" style="display:none"></div></div></section></header></div><main id="PAGE_SECTIONSebqqm" class="PAGE_SECTIONSebqqm ooGRUo" data-main-content-parent="true"><section id="comp-m8omdbdn" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omdbdn wixui-section fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omdbdn" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omdbdn" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omdbdn" data-motion-part="BG_MEDIA comp-m8omdbdn" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdn-container max-width-container"><div id="comp-m8oqdae2" role="" class="HFEOE3 NaeT1r comp-m8oqdae2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqdae2-container"><div id="comp-m8omdbe910" role="" class="HFEOE3 NaeT1r comp-m8omdbe910-container comp-m8omdbe910 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea7" role="" class="HFEOE3 NaeT1r comp-m8omdbea7-container comp-m8omdbea7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea15" class="N8MGzv _v6ohL PO9MfV comp-m8omdbea15 wixui-rich-text" data-testid="richTextElement"><h3 class="font_3 wixui-rich-text__text"><span class="wixui-rich-text__text">Cette unité vous intéresse?</span></h3></div><div id="comp-m8omdbeb13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeb13 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">Veuillez remplir le formulaire ci-dessous pour réserver l'unité ou être notifié lorsque celle-ci devient disponible.</span></p></div></div><div id="comp-m8omdbec6" role="" class="HFEOE3 NaeT1r comp-m8omdbec6-container comp-m8omdbec6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbec15" class="Yz8ZCc comp-m8omdbec15 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbec15" class="QyrExM wixui-text-input__label">Prénom</label><div class="nuFEsg"><input name="prénom" id="input_comp-m8omdbec15" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="John" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeg9" class="Yz8ZCc comp-m8omdbeg9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeg9" class="QyrExM wixui-text-input__label">Nom de Famille</label><div class="nuFEsg"><input name="nom-de famille" id="input_comp-m8omdbeg9" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="Doe" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeh9" class="Yz8ZCc comp-m8omdbeh9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeh9" class="QyrExM wixui-text-input__label">Téléphone</label><div class="nuFEsg"><input name="phone" id="input_comp-m8omdbeh9" class="nbaJII has-custom-focus wixui-text-input__input" type="tel" placeholder="450.499.7978" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbei9" class="Yz8ZCc comp-m8omdbei9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbei9" class="QyrExM wixui-text-input__label">Courriel</label><div class="nuFEsg"><input name="email" id="input_comp-m8omdbei9" class="nbaJII has-custom-focus wixui-text-input__input" type="email" placeholder="johndoe@gmail.com" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdben" class="YbkIHV comp-m8omdben wixui-text-box bCYfl0"><label for="textarea_comp-m8omdben" class="P3lL3X wixui-text-box__label">Message</label><textarea id="textarea_comp-m8omdben" class="XXgBXC has-custom-focus wixui-text-box__input" rows="1" placeholder="Posez-nous vos questions" aria-required="false" aria-invalid="false"></textarea></div><div id="comp-m8omdber7" class="Y_w4j4 uvl2Tw comp-m8omdber7 wixui-dropdown VYqX7C DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8omdber7">Unité</label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8omdber7" data-testid="select-trigger" required="" aria-required="true" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir l'unité</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div><div id="comp-m8omdbeu13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeu13 wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Nous avons reçu votre demande. Nous vous contacterons sous-peu.</p></div></div><div id="comp-m8omdbew" class="N8MGzv _v6ohL PO9MfV comp-m8omdbew wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Une erreur s'est produite. Veuillez réessayer.</p></div></div><div id="comp-m8omdbex1" class="comp-m8omdbex1" data-semantic-classname="button"><button type="button" class="StylableButton2545352419__root style-m8omdbey8__root wixui-button" data-testid="buttonContent" aria-label="Envoyer"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-button__label" data-testid="stylablebutton-label">Envoyer</span><span class="StylableButton2545352419__icon wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1666 | +<svg data-bbox="28 20 144 160" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1667 | + <g> | |
| 1668 | + <path d="M172 172.105l-.065-83.094a7.89 7.89 0 0 0-2.635-5.88l-64.103-57.226a7.88 7.88 0 0 0-10.499.001L30.634 83.128A7.891 7.891 0 0 0 28 89.013v83.098A7.887 7.887 0 0 0 35.884 180h34a7.887 7.887 0 0 0 7.884-7.889v-44.828a7.887 7.887 0 0 1 7.884-7.889h28.667a7.887 7.887 0 0 1 7.884 7.889v44.828a7.887 7.887 0 0 0 7.884 7.889h34.029c4.357 0 7.887-3.536 7.884-7.895z"></path> | |
| 1669 | + <path d="M132.069 31.41l31.357 28.145V31.41c0-6.302-5.105-11.41-11.403-11.41h-8.551c-6.298 0-11.403 5.108-11.403 11.41z"></path> | |
| 1670 | + </g> | |
| 1671 | +</svg> | |
| 1672 | +</span></span></span></button></div><div id="comp-m8or8zjr" class="Y_w4j4 uvl2Tw comp-m8or8zjr wixui-dropdown DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8or8zjr"></label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8or8zjr" data-testid="select-trigger" required="" aria-required="true" aria-label="Choisir une option" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir une option</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div></div></div></div></div><div id="comp-m8omdbdr7" role="" class="HFEOE3 NaeT1r comp-m8omdbdr7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdr7-container"><div id="comp-m8oqu82o" role="" class="HFEOE3 NaeT1r comp-m8oqu82o-container comp-m8oqu82o wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8oqu82u" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82u wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="https://www.leshabitationssf.com" target="_self" class="wixui-rich-text__text">Toutes les Propriétés</a></p></div><div id="comp-m8oqu82z" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82z wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oqu8301" class="N8MGzv _v6ohL PO9MfV comp-m8oqu8301 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">3 1/2 4 1/2 5 1/2 NEUF SAINT-CHARLES-BORROMEE</p></div></div></div></div><div id="comp-m8omdbdy12" role="" class="HFEOE3 NaeT1r comp-m8omdbdy12 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdy12-container"><div id="comp-m8omf94r" role="" class="HFEOE3 NaeT1r comp-m8omf94r wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div class="comp-m8omf94r-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omf94r-container"><div id="comp-m8omf94t" class=" comp-m8omf94t"><div class="comp-m8omf94t"><style>.comp-m8omf94t { | |
| 1673 | + --wix-color-1: 250,250,250; | |
| 1674 | +--wix-color-2: 153,153,153; | |
| 1675 | +--wix-color-3: 102,102,102; | |
| 1676 | +--wix-color-4: 51,51,51; | |
| 1677 | +--wix-color-5: 0,0,0; | |
| 1678 | +--wix-color-6: 183,195,220; | |
| 1679 | +--wix-color-7: 139,154,186; | |
| 1680 | +--wix-color-8: 75,99,151; | |
| 1681 | +--wix-color-9: 50,66,101; | |
| 1682 | +--wix-color-10: 25,33,50; | |
| 1683 | +--wix-color-11: 165,182,220; | |
| 1684 | +--wix-color-12: 124,143,186; | |
| 1685 | +--wix-color-13: 75,99,151; | |
| 1686 | +--wix-color-14: 0,36,116; | |
| 1687 | +--wix-color-15: 0,18,58; | |
| 1688 | +--wix-color-16: 186,204,218; | |
| 1689 | +--wix-color-17: 141,164,180; | |
| 1690 | +--wix-color-18: 80,117,143; | |
| 1691 | +--wix-color-19: 53,78,95; | |
| 1692 | +--wix-color-20: 27,39,48; | |
| 1693 | +--wix-color-21: 255,233,223; | |
| 1694 | +--wix-color-22: 255,191,161; | |
| 1695 | +--wix-color-23: 250,133,79; | |
| 1696 | +--wix-color-24: 234,96,32; | |
| 1697 | +--wix-color-25: 201,64,1; | |
| 1698 | +--wix-color-26: 250,250,250; | |
| 1699 | +--wix-color-27: 0,0,0; | |
| 1700 | +--wix-color-28: 153,153,153; | |
| 1701 | +--wix-color-29: 102,102,102; | |
| 1702 | +--wix-color-30: 51,51,51; | |
| 1703 | +--wix-color-31: 75,99,151; | |
| 1704 | +--wix-color-32: 75,99,151; | |
| 1705 | +--wix-color-33: 75,99,151; | |
| 1706 | +--wix-color-34: 75,99,151; | |
| 1707 | +--wix-color-35: 0,0,0; | |
| 1708 | +--wix-color-36: 51,51,51; | |
| 1709 | +--wix-color-37: 0,0,0; | |
| 1710 | +--wix-color-38: 75,99,151; | |
| 1711 | +--wix-color-39: 75,99,151; | |
| 1712 | +--wix-color-40: 250,250,250; | |
| 1713 | +--wix-color-41: 75,99,151; | |
| 1714 | +--wix-color-42: 75,99,151; | |
| 1715 | +--wix-color-43: 250,250,250; | |
| 1716 | +--wix-color-44: 102,102,102; | |
| 1717 | +--wix-color-45: 102,102,102; | |
| 1718 | +--wix-color-46: 250,250,250; | |
| 1719 | +--wix-color-47: 250,250,250; | |
| 1720 | +--wix-color-48: 75,99,151; | |
| 1721 | +--wix-color-49: 75,99,151; | |
| 1722 | +--wix-color-50: 250,250,250; | |
| 1723 | +--wix-color-51: 75,99,151; | |
| 1724 | +--wix-color-52: 75,99,151; | |
| 1725 | +--wix-color-53: 250,250,250; | |
| 1726 | +--wix-color-54: 102,102,102; | |
| 1727 | +--wix-color-55: 102,102,102; | |
| 1728 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1729 | +--wix-font-Title-style: normal; | |
| 1730 | +--wix-font-Title-variant: normal; | |
| 1731 | +--wix-font-Title-weight: bold; | |
| 1732 | +--wix-font-Title-size: 65px; | |
| 1733 | +--wix-font-Title-line-height: 1.2em; | |
| 1734 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1735 | +--wix-font-Title-text-decoration: none; | |
| 1736 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1737 | +--wix-font-Menu-style: normal; | |
| 1738 | +--wix-font-Menu-variant: normal; | |
| 1739 | +--wix-font-Menu-weight: normal; | |
| 1740 | +--wix-font-Menu-size: 16px; | |
| 1741 | +--wix-font-Menu-line-height: 1.4em; | |
| 1742 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1743 | +--wix-font-Menu-text-decoration: none; | |
| 1744 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1745 | +--wix-font-Page-title-style: normal; | |
| 1746 | +--wix-font-Page-title-variant: normal; | |
| 1747 | +--wix-font-Page-title-weight: bold; | |
| 1748 | +--wix-font-Page-title-size: 38px; | |
| 1749 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1750 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1751 | +--wix-font-Page-title-text-decoration: none; | |
| 1752 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1753 | +--wix-font-Heading-XL-style: normal; | |
| 1754 | +--wix-font-Heading-XL-variant: normal; | |
| 1755 | +--wix-font-Heading-XL-weight: normal; | |
| 1756 | +--wix-font-Heading-XL-size: 34px; | |
| 1757 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1758 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1759 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1760 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1761 | +--wix-font-Heading-L-style: normal; | |
| 1762 | +--wix-font-Heading-L-variant: normal; | |
| 1763 | +--wix-font-Heading-L-weight: normal; | |
| 1764 | +--wix-font-Heading-L-size: 30px; | |
| 1765 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1766 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1767 | +--wix-font-Heading-L-text-decoration: none; | |
| 1768 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1769 | +--wix-font-Heading-M-style: normal; | |
| 1770 | +--wix-font-Heading-M-variant: normal; | |
| 1771 | +--wix-font-Heading-M-weight: normal; | |
| 1772 | +--wix-font-Heading-M-size: 25px; | |
| 1773 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1774 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1775 | +--wix-font-Heading-M-text-decoration: none; | |
| 1776 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1777 | +--wix-font-Heading-S-style: normal; | |
| 1778 | +--wix-font-Heading-S-variant: normal; | |
| 1779 | +--wix-font-Heading-S-weight: normal; | |
| 1780 | +--wix-font-Heading-S-size: 19px; | |
| 1781 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1782 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1783 | +--wix-font-Heading-S-text-decoration: none; | |
| 1784 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1785 | +--wix-font-Body-L-style: normal; | |
| 1786 | +--wix-font-Body-L-variant: normal; | |
| 1787 | +--wix-font-Body-L-weight: normal; | |
| 1788 | +--wix-font-Body-L-size: 16px; | |
| 1789 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1790 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1791 | +--wix-font-Body-L-text-decoration: none; | |
| 1792 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1793 | +--wix-font-Body-M-style: normal; | |
| 1794 | +--wix-font-Body-M-variant: normal; | |
| 1795 | +--wix-font-Body-M-weight: normal; | |
| 1796 | +--wix-font-Body-M-size: 16px; | |
| 1797 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1798 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1799 | +--wix-font-Body-M-text-decoration: none; | |
| 1800 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1801 | +--wix-font-Body-S-style: normal; | |
| 1802 | +--wix-font-Body-S-variant: normal; | |
| 1803 | +--wix-font-Body-S-weight: normal; | |
| 1804 | +--wix-font-Body-S-size: 12px; | |
| 1805 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1806 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1807 | +--wix-font-Body-S-text-decoration: none; | |
| 1808 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1809 | +--wix-font-Body-XS-style: normal; | |
| 1810 | +--wix-font-Body-XS-variant: normal; | |
| 1811 | +--wix-font-Body-XS-weight: normal; | |
| 1812 | +--wix-font-Body-XS-size: 12px; | |
| 1813 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1814 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1815 | +--wix-font-Body-XS-text-decoration: none; | |
| 1816 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1817 | +--wix-font-LIGHT-style: normal; | |
| 1818 | +--wix-font-LIGHT-variant: normal; | |
| 1819 | +--wix-font-LIGHT-weight: normal; | |
| 1820 | +--wix-font-LIGHT-size: 12px; | |
| 1821 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1822 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1823 | +--wix-font-LIGHT-text-decoration: none; | |
| 1824 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1825 | +--wix-font-MEDIUM-style: normal; | |
| 1826 | +--wix-font-MEDIUM-variant: normal; | |
| 1827 | +--wix-font-MEDIUM-weight: normal; | |
| 1828 | +--wix-font-MEDIUM-size: 12px; | |
| 1829 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1830 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1831 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1832 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1833 | +--wix-font-STRONG-style: normal; | |
| 1834 | +--wix-font-STRONG-variant: normal; | |
| 1835 | +--wix-font-STRONG-weight: normal; | |
| 1836 | +--wix-font-STRONG-size: 12px; | |
| 1837 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1838 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1839 | +--wix-font-STRONG-text-decoration: none; | |
| 1840 | + --wix-direction: ltr; | |
| 1841 | +--newItemsDetails: 1; | |
| 1842 | +--galleryImageRatio: 2; | |
| 1843 | +--galleryThumbnailsAlignment: 3; | |
| 1844 | +--titlePlacementHorizontallyCompatible: 1; | |
| 1845 | +--overlayGradientDegrees: 180; | |
| 1846 | +--slideshowInfoSize: 120; | |
| 1847 | +--gridStyle: 1; | |
| 1848 | +--previewHover: 0; | |
| 1849 | +--arrowsSize: 50; | |
| 1850 | +--itemBorderRadius: 0; | |
| 1851 | +--arrowsType: 4; | |
| 1852 | +--customButtonBorderRadius: 0; | |
| 1853 | +--m_fixedGalleryRatio: 2; | |
| 1854 | +--isVertical: 1; | |
| 1855 | +--titleDescriptionSpace: 2; | |
| 1856 | +--gallerySize: 50; | |
| 1857 | +--te-padding-slider: 50; | |
| 1858 | +--m_designedPresetId: -1; | |
| 1859 | +--newItemsLocation: 0; | |
| 1860 | +--scrollDirection: 0; | |
| 1861 | +--overlayAnimation: 0; | |
| 1862 | +--collageDensity: 100; | |
| 1863 | +--calculateTextBoxHeightMode: 0; | |
| 1864 | +--slideshowLoop: 1; | |
| 1865 | +--externalCustomButtonBorderWidth: 1; | |
| 1866 | +--m_thumbnailSize: 80; | |
| 1867 | +--loveCounter: 0; | |
| 1868 | +--galleryLayout: 3; | |
| 1869 | +--titlePlacement: 1; | |
| 1870 | +--m_galleryLayout: 3; | |
| 1871 | +--scrollAnimation: 0; | |
| 1872 | +--numberOfImagesPerRow: 4; | |
| 1873 | +--fixedGalleryRatio: 0; | |
| 1874 | +--galleryVerticalAlign: 2; | |
| 1875 | +--imageHoverAnimation: 0; | |
| 1876 | +--m_allowFixedGalleryRatio: 1; | |
| 1877 | +--arrowsVerticalPosition: 1; | |
| 1878 | +--galleryHorizontalAlign: 0; | |
| 1879 | +--thumbnailSpacings: 10; | |
| 1880 | +--imageResize: 0; | |
| 1881 | +--designedPresetId: -1; | |
| 1882 | +--imageMargin: 10; | |
| 1883 | +--allowFixedGalleryRatio: 0; | |
| 1884 | +--arrowsContainerType: 2; | |
| 1885 | +--m_galleryThumbnailsAlignment: 0; | |
| 1886 | +--arrowsContainerBorderRadius: 50; | |
| 1887 | +--textBoxHeight: 199; | |
| 1888 | +--scrollDuration: 1; | |
| 1889 | +--textFont: normal normal normal 20px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1890 | +--m_itemIconColorSlideshow: 0,0,0; | |
| 1891 | +--m_itemIconColorSlideshow-rgb: 0,0,0; | |
| 1892 | +--m_itemIconColorSlideshow-opacity: 1; | |
| 1893 | +--m_itemDescriptionFontColor: 255,255,255; | |
| 1894 | +--m_itemDescriptionFontColor-rgb: 255,255,255; | |
| 1895 | +--m_itemDescriptionFontColor-opacity: 1; | |
| 1896 | +--m_itemBorderColor: 0,0,0; | |
| 1897 | +--m_itemBorderColor-rgb: 0,0,0; | |
| 1898 | +--m_itemBorderColor-opacity: 1; | |
| 1899 | +--itemIconColor: 255,255,255; | |
| 1900 | +--itemIconColor-rgb: 255,255,255; | |
| 1901 | +--itemIconColor-opacity: 1; | |
| 1902 | +--titleColorExpand: 0,0,0; | |
| 1903 | +--titleColorExpand-rgb: 0,0,0; | |
| 1904 | +--titleColorExpand-opacity: 1; | |
| 1905 | +--loadMoreButtonFontColor: 0,0,0; | |
| 1906 | +--loadMoreButtonFontColor-rgb: 0,0,0; | |
| 1907 | +--loadMoreButtonFontColor-opacity: 1; | |
| 1908 | +--itemDescriptionFontColor: 255,255,255; | |
| 1909 | +--itemDescriptionFontColor-rgb: 255,255,255; | |
| 1910 | +--itemDescriptionFontColor-opacity: 1; | |
| 1911 | +--m_customButtonFontColor: 255,255,255; | |
| 1912 | +--m_customButtonFontColor-rgb: 255,255,255; | |
| 1913 | +--m_customButtonFontColor-opacity: 1; | |
| 1914 | +--m_overlayGradientColor1: 0,0,0; | |
| 1915 | +--m_overlayGradientColor1-rgb: 0,0,0; | |
| 1916 | +--m_overlayGradientColor1-opacity: 1; | |
| 1917 | +--m_arrowsColor: 0,0,0; | |
| 1918 | +--m_arrowsColor-rgb: 0,0,0; | |
| 1919 | +--m_arrowsColor-opacity: 1; | |
| 1920 | +--arrowsContainerBackgroundColor: 255,255,255,0.5; | |
| 1921 | +--arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1922 | +--arrowsContainerBackgroundColor-opacity: 0.5; | |
| 1923 | +--m_externalCustomButtonColor: 26,106,255; | |
| 1924 | +--m_externalCustomButtonColor-rgb: 26,106,255; | |
| 1925 | +--m_externalCustomButtonColor-opacity: 1; | |
| 1926 | +--customButtonBorderColor: 255,255,255; | |
| 1927 | +--customButtonBorderColor-rgb: 255,255,255; | |
| 1928 | +--customButtonBorderColor-opacity: 1; | |
| 1929 | +--m_customButtonFontColorForHover: 0,0,0; | |
| 1930 | +--m_customButtonFontColorForHover-rgb: 0,0,0; | |
| 1931 | +--m_customButtonFontColorForHover-opacity: 1; | |
| 1932 | +--m_itemOpacity: 0,0,0,0.3; | |
| 1933 | +--m_itemOpacity-rgb: 0,0,0; | |
| 1934 | +--m_itemOpacity-opacity: 0.3; | |
| 1935 | +--textBoxFillColor: 238,238,238; | |
| 1936 | +--textBoxFillColor-rgb: 238,238,238; | |
| 1937 | +--textBoxFillColor-opacity: 1; | |
| 1938 | +--backgroundGradientColor2: 26,106,255; | |
| 1939 | +--backgroundGradientColor2-rgb: 26,106,255; | |
| 1940 | +--backgroundGradientColor2-opacity: 1; | |
| 1941 | +--itemOpacity: 0,0,0,0; | |
| 1942 | +--itemOpacity-rgb: 0,0,0; | |
| 1943 | +--itemOpacity-opacity: 0; | |
| 1944 | +--loadMoreButtonColor: 255,255,255; | |
| 1945 | +--loadMoreButtonColor-rgb: 255,255,255; | |
| 1946 | +--loadMoreButtonColor-opacity: 1; | |
| 1947 | +--m_itemFontColor: 255,255,255; | |
| 1948 | +--m_itemFontColor-rgb: 255,255,255; | |
| 1949 | +--m_itemFontColor-opacity: 1; | |
| 1950 | +--m_arrowsContainerBackgroundColor: 255,255,255; | |
| 1951 | +--m_arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1952 | +--m_arrowsContainerBackgroundColor-opacity: 1; | |
| 1953 | +--loadMoreButtonBorderColor: 0,0,0; | |
| 1954 | +--loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1955 | +--loadMoreButtonBorderColor-opacity: 1; | |
| 1956 | +--m_itemShadowOpacityAndColor: 0,0,0; | |
| 1957 | +--m_itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1958 | +--m_itemShadowOpacityAndColor-opacity: 1; | |
| 1959 | +--customButtonFontColor: 255,255,255; | |
| 1960 | +--customButtonFontColor-rgb: 255,255,255; | |
| 1961 | +--customButtonFontColor-opacity: 1; | |
| 1962 | +--imageLoadingColor: 238,238,238; | |
| 1963 | +--imageLoadingColor-rgb: 238,238,238; | |
| 1964 | +--imageLoadingColor-opacity: 1; | |
| 1965 | +--m_itemFontColorSlideshow: 0,0,0; | |
| 1966 | +--m_itemFontColorSlideshow-rgb: 0,0,0; | |
| 1967 | +--m_itemFontColorSlideshow-opacity: 1; | |
| 1968 | +--externalCustomButtonBorderColor: 0,0,0; | |
| 1969 | +--externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 1970 | +--externalCustomButtonBorderColor-opacity: 1; | |
| 1971 | +--itemShadowOpacityAndColor: 0,0,0; | |
| 1972 | +--itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1973 | +--itemShadowOpacityAndColor-opacity: 1; | |
| 1974 | +--externalCustomButtonColor: 26,106,255; | |
| 1975 | +--externalCustomButtonColor-rgb: 26,106,255; | |
| 1976 | +--externalCustomButtonColor-opacity: 1; | |
| 1977 | +--itemFontColorSlideshow: 0,0,0; | |
| 1978 | +--itemFontColorSlideshow-rgb: 0,0,0; | |
| 1979 | +--itemFontColorSlideshow-opacity: 1; | |
| 1980 | +--itemFontColor: 255,255,255; | |
| 1981 | +--itemFontColor-rgb: 255,255,255; | |
| 1982 | +--itemFontColor-opacity: 1; | |
| 1983 | +--m_oneColorAnimationColor: 255,255,255; | |
| 1984 | +--m_oneColorAnimationColor-rgb: 255,255,255; | |
| 1985 | +--m_oneColorAnimationColor-opacity: 1; | |
| 1986 | +--arrowsColor: 25,33,50; | |
| 1987 | +--arrowsColor-rgb: 25,33,50; | |
| 1988 | +--arrowsColor-opacity: 1; | |
| 1989 | +--m_itemIconColor: 255,255,255; | |
| 1990 | +--m_itemIconColor-rgb: 255,255,255; | |
| 1991 | +--m_itemIconColor-opacity: 1; | |
| 1992 | +--itemBorderColor: 0,0,0; | |
| 1993 | +--itemBorderColor-rgb: 0,0,0; | |
| 1994 | +--itemBorderColor-opacity: 1; | |
| 1995 | +--m_loadMoreButtonBorderColor: 0,0,0; | |
| 1996 | +--m_loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1997 | +--m_loadMoreButtonBorderColor-opacity: 1; | |
| 1998 | +--m_loadMoreButtonColor: 255,255,255; | |
| 1999 | +--m_loadMoreButtonColor-rgb: 255,255,255; | |
| 2000 | +--m_loadMoreButtonColor-opacity: 1; | |
| 2001 | +--backgroundGradientColor1: 255,255,255; | |
| 2002 | +--backgroundGradientColor1-rgb: 255,255,255; | |
| 2003 | +--backgroundGradientColor1-opacity: 1; | |
| 2004 | +--m_customButtonBorderColor: 255,255,255; | |
| 2005 | +--m_customButtonBorderColor-rgb: 255,255,255; | |
| 2006 | +--m_customButtonBorderColor-opacity: 1; | |
| 2007 | +--itemIconColorSlideshow: 0,0,0; | |
| 2008 | +--itemIconColorSlideshow-rgb: 0,0,0; | |
| 2009 | +--itemIconColorSlideshow-opacity: 1; | |
| 2010 | +--foreColor: 238,238,238; | |
| 2011 | +--foreColor-rgb: 238,238,238; | |
| 2012 | +--foreColor-opacity: 1; | |
| 2013 | +--m_itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2014 | +--m_itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2015 | +--m_itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2016 | +--bgColorExpand: 255,255,255; | |
| 2017 | +--bgColorExpand-rgb: 255,255,255; | |
| 2018 | +--bgColorExpand-opacity: 1; | |
| 2019 | +--textBoxBorderColor: 0,0,0; | |
| 2020 | +--textBoxBorderColor-rgb: 0,0,0; | |
| 2021 | +--textBoxBorderColor-opacity: 1; | |
| 2022 | +--customButtonFontColorForHover: 0,0,0; | |
| 2023 | +--customButtonFontColorForHover-rgb: 0,0,0; | |
| 2024 | +--customButtonFontColorForHover-opacity: 1; | |
| 2025 | +--m_loadMoreButtonFontColor: 0,0,0; | |
| 2026 | +--m_loadMoreButtonFontColor-rgb: 0,0,0; | |
| 2027 | +--m_loadMoreButtonFontColor-opacity: 1; | |
| 2028 | +--customButtonColor: 255,255,255; | |
| 2029 | +--customButtonColor-rgb: 255,255,255; | |
| 2030 | +--customButtonColor-opacity: 1; | |
| 2031 | +--descriptionColorExpand: 0,0,0; | |
| 2032 | +--descriptionColorExpand-rgb: 0,0,0; | |
| 2033 | +--descriptionColorExpand-opacity: 1; | |
| 2034 | +--actionsColorExpand: 0,0,0; | |
| 2035 | +--actionsColorExpand-rgb: 0,0,0; | |
| 2036 | +--actionsColorExpand-opacity: 1; | |
| 2037 | +--oneColorAnimationColor: 255,255,255; | |
| 2038 | +--oneColorAnimationColor-rgb: 255,255,255; | |
| 2039 | +--oneColorAnimationColor-opacity: 1; | |
| 2040 | +--backColor: 238,238,238; | |
| 2041 | +--backColor-rgb: 238,238,238; | |
| 2042 | +--backColor-opacity: 1; | |
| 2043 | +--itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2044 | +--itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2045 | +--itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2046 | +--m_externalCustomButtonBorderColor: 0,0,0; | |
| 2047 | +--m_externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 2048 | +--m_externalCustomButtonBorderColor-opacity: 1; | |
| 2049 | +--te-background-color-picker: 149,185,255; | |
| 2050 | +--te-background-color-picker-rgb: 149,185,255; | |
| 2051 | +--te-background-color-picker-opacity: 1; | |
| 2052 | +--m_customButtonColor: 255,255,255; | |
| 2053 | +--m_customButtonColor-rgb: 255,255,255; | |
| 2054 | +--m_customButtonColor-opacity: 1; | |
| 2055 | +--overlayGradientColor2: 0,0,0; | |
| 2056 | +--overlayGradientColor2-rgb: 0,0,0; | |
| 2057 | +--overlayGradientColor2-opacity: 1; | |
| 2058 | +--m_overlayGradientColor2: 0,0,0; | |
| 2059 | +--m_overlayGradientColor2-rgb: 0,0,0; | |
| 2060 | +--m_overlayGradientColor2-opacity: 1; | |
| 2061 | +--overlayGradientColor1: 0,0,0; | |
| 2062 | +--overlayGradientColor1-rgb: 0,0,0; | |
| 2063 | +--overlayGradientColor1-opacity: 1; | |
| 2064 | +--backgroundColor: 102,102,102; | |
| 2065 | +--backgroundColor-rgb: 102,102,102; | |
| 2066 | +--backgroundColor-opacity: 1; | |
| 2067 | +--textColor: 0,0,0; | |
| 2068 | +--textColor-rgb: 0,0,0; | |
| 2069 | +--textColor-opacity: 1; | |
| 2070 | +--m_customButtonFontForHover: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2071 | +--m_customButtonFontForHover-style: normal; | |
| 2072 | +--m_customButtonFontForHover-variant: normal; | |
| 2073 | +--m_customButtonFontForHover-weight: normal; | |
| 2074 | +--m_customButtonFontForHover-size: 15px; | |
| 2075 | +--m_customButtonFontForHover-line-height: 18px; | |
| 2076 | +--m_customButtonFontForHover-family: proxima-n-w01-reg,sans-serif; | |
| 2077 | +--m_customButtonFontForHover-text-decoration: none; | |
| 2078 | +--m_customButtonFont: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2079 | +--m_customButtonFont-style: normal; | |
| 2080 | +--m_customButtonFont-variant: normal; | |
| 2081 | +--m_customButtonFont-weight: normal; | |
| 2082 | +--m_customButtonFont-size: 15px; | |
| 2083 | +--m_customButtonFont-line-height: 18px; | |
| 2084 | +--m_customButtonFont-family: proxima-n-w01-reg,sans-serif; | |
| 2085 | +--m_customButtonFont-text-decoration: none; | |
| 2086 | +--m_itemFont: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2087 | +--m_itemFont-style: normal; | |
| 2088 | +--m_itemFont-variant: normal; | |
| 2089 | +--m_itemFont-weight: normal; | |
| 2090 | +--m_itemFont-size: 22px; | |
| 2091 | +--m_itemFont-line-height: 27px; | |
| 2092 | +--m_itemFont-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2093 | +--m_itemFont-text-decoration: none; | |
| 2094 | +--m_itemFontSlideshow: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2095 | +--m_itemFontSlideshow-style: normal; | |
| 2096 | +--m_itemFontSlideshow-variant: normal; | |
| 2097 | +--m_itemFontSlideshow-weight: normal; | |
| 2098 | +--m_itemFontSlideshow-size: 22px; | |
| 2099 | +--m_itemFontSlideshow-line-height: 27px; | |
| 2100 | +--m_itemFontSlideshow-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2101 | +--m_itemFontSlideshow-text-decoration: none; | |
| 2102 | +--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2103 | +--customButtonFontForHover-style: normal; | |
| 2104 | +--customButtonFontForHover-variant: normal; | |
| 2105 | +--customButtonFontForHover-weight: normal; | |
| 2106 | +--customButtonFontForHover-size: 16px; | |
| 2107 | +--customButtonFontForHover-line-height: 1.6em; | |
| 2108 | +--customButtonFontForHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2109 | +--customButtonFontForHover-text-decoration: none; | |
| 2110 | +--text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2111 | +--text-editor-font-style: normal; | |
| 2112 | +--text-editor-font-variant: normal; | |
| 2113 | +--text-editor-font-weight: normal; | |
| 2114 | +--text-editor-font-size: 40px; | |
| 2115 | +--text-editor-font-line-height: 50px; | |
| 2116 | +--text-editor-font-family: avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2117 | +--text-editor-font-text-decoration: none; | |
| 2118 | +--m_loadMoreButtonFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2119 | +--m_loadMoreButtonFont-style: normal; | |
| 2120 | +--m_loadMoreButtonFont-variant: normal; | |
| 2121 | +--m_loadMoreButtonFont-weight: normal; | |
| 2122 | +--m_loadMoreButtonFont-size: 15px; | |
| 2123 | +--m_loadMoreButtonFont-line-height: 18px; | |
| 2124 | +--m_loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2125 | +--m_loadMoreButtonFont-text-decoration: none; | |
| 2126 | +--itemDescriptionFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2127 | +--itemDescriptionFont-style: normal; | |
| 2128 | +--itemDescriptionFont-variant: normal; | |
| 2129 | +--itemDescriptionFont-weight: normal; | |
| 2130 | +--itemDescriptionFont-size: 16px; | |
| 2131 | +--itemDescriptionFont-line-height: 1.6em; | |
| 2132 | +--itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2133 | +--itemDescriptionFont-text-decoration: none; | |
| 2134 | +--text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2135 | +--text-editor-font-1499774301866-style: normal; | |
| 2136 | +--text-editor-font-1499774301866-variant: normal; | |
| 2137 | +--text-editor-font-1499774301866-weight: normal; | |
| 2138 | +--text-editor-font-1499774301866-size: 40px; | |
| 2139 | +--text-editor-font-1499774301866-line-height: 50px; | |
| 2140 | +--text-editor-font-1499774301866-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2141 | +--text-editor-font-1499774301866-text-decoration: none; | |
| 2142 | +--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2143 | +--customButtonFont-style: normal; | |
| 2144 | +--customButtonFont-variant: normal; | |
| 2145 | +--customButtonFont-weight: normal; | |
| 2146 | +--customButtonFont-size: 16px; | |
| 2147 | +--customButtonFont-line-height: 1.6em; | |
| 2148 | +--customButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2149 | +--customButtonFont-text-decoration: none; | |
| 2150 | +--text-editor-font-1499927482082: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2151 | +--text-editor-font-1499927482082-style: normal; | |
| 2152 | +--text-editor-font-1499927482082-variant: normal; | |
| 2153 | +--text-editor-font-1499927482082-weight: normal; | |
| 2154 | +--text-editor-font-1499927482082-size: 40px; | |
| 2155 | +--text-editor-font-1499927482082-line-height: 50px; | |
| 2156 | +--text-editor-font-1499927482082-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2157 | +--text-editor-font-1499927482082-text-decoration: none; | |
| 2158 | +--m_itemDescriptionFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2159 | +--m_itemDescriptionFont-style: normal; | |
| 2160 | +--m_itemDescriptionFont-variant: normal; | |
| 2161 | +--m_itemDescriptionFont-weight: normal; | |
| 2162 | +--m_itemDescriptionFont-size: 15px; | |
| 2163 | +--m_itemDescriptionFont-line-height: 18px; | |
| 2164 | +--m_itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2165 | +--m_itemDescriptionFont-text-decoration: none; | |
| 2166 | +--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2167 | +--loadMoreButtonFont-style: normal; | |
| 2168 | +--loadMoreButtonFont-variant: normal; | |
| 2169 | +--loadMoreButtonFont-weight: normal; | |
| 2170 | +--loadMoreButtonFont-size: 16px; | |
| 2171 | +--loadMoreButtonFont-line-height: 1.6em; | |
| 2172 | +--loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2173 | +--loadMoreButtonFont-text-decoration: none; | |
| 2174 | +--itemFontSlideshow: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2175 | +--itemFontSlideshow-style: normal; | |
| 2176 | +--itemFontSlideshow-variant: normal; | |
| 2177 | +--itemFontSlideshow-weight: normal; | |
| 2178 | +--itemFontSlideshow-size: 19px; | |
| 2179 | +--itemFontSlideshow-line-height: 1.4em; | |
| 2180 | +--itemFontSlideshow-family: montserrat,sans-serif; | |
| 2181 | +--itemFontSlideshow-text-decoration: none; | |
| 2182 | +--titleFontExpand: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2183 | +--titleFontExpand-style: normal; | |
| 2184 | +--titleFontExpand-variant: normal; | |
| 2185 | +--titleFontExpand-weight: normal; | |
| 2186 | +--titleFontExpand-size: 19px; | |
| 2187 | +--titleFontExpand-line-height: 1.4em; | |
| 2188 | +--titleFontExpand-family: montserrat,sans-serif; | |
| 2189 | +--titleFontExpand-text-decoration: none; | |
| 2190 | +--m_itemDescriptionFontSlideshow: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2191 | +--m_itemDescriptionFontSlideshow-style: normal; | |
| 2192 | +--m_itemDescriptionFontSlideshow-variant: normal; | |
| 2193 | +--m_itemDescriptionFontSlideshow-weight: normal; | |
| 2194 | +--m_itemDescriptionFontSlideshow-size: 15px; | |
| 2195 | +--m_itemDescriptionFontSlideshow-line-height: 18px; | |
| 2196 | +--m_itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2197 | +--m_itemDescriptionFontSlideshow-text-decoration: none; | |
| 2198 | +--itemDescriptionFontSlideshow: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2199 | +--itemDescriptionFontSlideshow-style: normal; | |
| 2200 | +--itemDescriptionFontSlideshow-variant: normal; | |
| 2201 | +--itemDescriptionFontSlideshow-weight: normal; | |
| 2202 | +--itemDescriptionFontSlideshow-size: 16px; | |
| 2203 | +--itemDescriptionFontSlideshow-line-height: 1.6em; | |
| 2204 | +--itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2205 | +--itemDescriptionFontSlideshow-text-decoration: none; | |
| 2206 | +--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2207 | +--descriptionFontExpand-style: normal; | |
| 2208 | +--descriptionFontExpand-variant: normal; | |
| 2209 | +--descriptionFontExpand-weight: normal; | |
| 2210 | +--descriptionFontExpand-size: 16px; | |
| 2211 | +--descriptionFontExpand-line-height: 1.6em; | |
| 2212 | +--descriptionFontExpand-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2213 | +--descriptionFontExpand-text-decoration: none; | |
| 2214 | +--itemFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2215 | +--itemFont-style: normal; | |
| 2216 | +--itemFont-variant: normal; | |
| 2217 | +--itemFont-weight: normal; | |
| 2218 | +--itemFont-size: 19px; | |
| 2219 | +--itemFont-line-height: 1.4em; | |
| 2220 | +--itemFont-family: montserrat,sans-serif; | |
| 2221 | +--itemFont-text-decoration: none; | |
| 2222 | +--textFont-style: normal; | |
| 2223 | +--textFont-variant: normal; | |
| 2224 | +--textFont-weight: normal; | |
| 2225 | +--textFont-size: 20px; | |
| 2226 | +--textFont-line-height: 1.4em; | |
| 2227 | +--textFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2228 | +--textFont-text-decoration: none; | |
| 2229 | + }</style><style> | |
| 2230 | + | |
| 2231 | + .s__3mb942.oUUTDbO--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2232 | + | |
| 2233 | + .sfxZxsX{--wbu-color-blue-0:#0F2CCF;--wbu-color-blue-100:#2F5DFF;--wbu-color-blue-200:#597DFF;--wbu-color-blue-300:#ACBEFF;--wbu-color-blue-400:#D5DFFF;--wbu-color-blue-500:#EAEFFF;--wbu-color-blue-600:#F5F7FF;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#A8A6A5;--wbu-color-black-500:#E0DFDF;--wbu-color-black-600:#F1F0EF;--wbu-color-red-0:#9C2426;--wbu-color-red-100:#DF3336;--wbu-color-red-200:#E55C5E;--wbu-color-red-300:#ED8F90;--wbu-color-red-400:#F4B8B9;--wbu-color-red-500:#F9D6D7;--wbu-color-red-600:#FCEBEB;--wbu-color-green-0:#0D4F3D;--wbu-color-green-100:#4B916D;--wbu-color-green-200:#97C693;--wbu-color-green-300:#BDE2A7;--wbu-color-green-400:#DAF3C0;--wbu-color-green-500:#EFFAE5;--wbu-color-green-600:#F1F5ED;--wbu-color-yellow-0:#D49341;--wbu-color-yellow-100:#F9AD4D;--wbu-color-yellow-200:#FABD71;--wbu-color-yellow-300:#FCD29D;--wbu-color-yellow-400:#FDEAD2;--wbu-color-yellow-500:#FEF3E5;--wbu-color-yellow-600:#FEF6ED;--wbu-color-orange-0:#AE3E09;--wbu-color-orange-100:#FF8044;--wbu-color-orange-200:#FE9361;--wbu-color-orange-300:#FDA77F;--wbu-color-orange-400:#FBCFBB;--wbu-color-orange-500:#FBE3D9;--wbu-color-orange-600:#FDF1EC;--wbu-color-purple-0:#5000AA;--wbu-color-purple-100:#7200F3;--wbu-color-purple-200:#8B2DF5;--wbu-color-purple-300:#BE89F9;--wbu-color-purple-400:#D7B7FB;--wbu-color-purple-500:#F1E5FE;--wbu-color-purple-600:#F8F2FF;--wbu-color-ai-0:#4D3DD0;--wbu-color-ai-100:#5A48F5;--wbu-color-ai-200:#7B6DF7;--wbu-color-ai-300:#A59BFA;--wbu-color-ai-400:#D6D1FC;--wbu-color-ai-500:#E7E4FE;--wbu-color-ai-600:#EEECFE;--wbu-heading-font-stack:'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3', 'hiragino kaku gothic pro', sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600} | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + .sDDrUS7.oINNVeg--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2237 | + | |
| 2238 | + | |
| 2239 | + | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | + | |
| 2244 | + | |
| 2245 | + | |
| 2246 | +/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2247 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/GalleryWrapperWixStyles.scss ***! | |
| 2248 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .nav-arrows-container .custom-nav-arrows svg{width:100%;height:100%}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2249 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/FullscreenWrapperWixStyles.scss ***! | |
| 2250 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ | |
| 2251 | + | |
| 2252 | + .fullscreen-focus-lock { | |
| 2253 | + height: 100%; | |
| 2254 | +} | |
| 2255 | + | |
| 2256 | +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2257 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/GalleryWrapper.global.scss ***! | |
| 2258 | + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-gallery-stop-scroll-for-fullscreen{overflow-y:hidden}div.pro-gallery-parent-container .show-more-container i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container button.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more:hover{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{background:none !important;font-size:26px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{font-size:15px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i{font-size:26px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{font-size:15px}/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2259 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/FullscreenWrapper.global.scss ***! | |
| 2260 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{opacity:.3} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-cart-icon{background:inherit !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love-store.pro-gallery-loved{color:#e03939 !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love.pro-gallery-loved{color:#e03939 !important}/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2261 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/SocialShareWrapper.global.scss ***! | |
| 2262 | + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .social-share-wrapper{position:fixed;top:0;bottom:0;left:0;right:0;z-index:200005} .social-share-wrapper .mobile-social-share-screen{position:absolute;top:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0)} .social-share-wrapper .mobile-social-share-screen.mobile-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:background-color .3s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-background{height:calc(100% - 150px);touch-action:none} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab{position:absolute;bottom:0px;width:100%;height:150px;box-sizing:border-box;background-color:#fff;margin-bottom:-150px;display:flex;justify-content:center;align-items:center;transition:all .4s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab.mobile-social-share-tab-visible{margin-bottom:0px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:220px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list .social-share-icon{height:16px;width:16px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container{height:32px;margin-top:20px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-input{width:200px;font-size:11px;padding:2px 4px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button{width:40px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{height:16px;width:16px} .social-share-wrapper .desktop-social-share-screen{position:fixed;top:0;left:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center} .social-share-wrapper .desktop-social-share-screen.desktop-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-background{position:fixed;height:100%;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup{position:relative;width:580px;height:250px;box-sizing:border-box;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:-100px;opacity:0;transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup.desktop-social-share-popup-visible{margin-bottom:0px;opacity:1} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button{position:absolute;top:24px;right:24px;cursor:pointer} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:280px} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list .social-share-icon{height:24px;width:24px;transition:color .2s ease} .social-share-wrapper .social-share-item{position:relative} .social-share-wrapper .social-share-item .social-share-button{opacity:1;transition:opacity .2s ease;cursor:pointer} .social-share-wrapper .social-share-item .social-share-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-item .social-share-button:hover{opacity:.65} .social-share-wrapper .social-share-item .social-share-button:active{opacity:1} .social-share-wrapper .social-share-copylink-container{display:flex;margin-top:25px;height:40px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-input{border:1px solid #000;padding:2px 8px;height:100%;width:260px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button{width:50px;height:100%;background-color:#000;color:#fff;cursor:pointer;transition:background-color .1s ease} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover{background-color:rgba(0,0,0,.65)} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{margin-top:2px}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2263 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../../core-packages/pro-gallery-old/dist/statics/main.css ***! | |
| 2264 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover) .gallery-item-content .gallery-item{transition:opacity .4s ease !important}div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{opacity:0}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .hover-info-element{transition:transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(1.1)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(1.11)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover) .hover-info-element,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover) .hover-info-element{transform:scale(0.9009)}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .4s linear !important}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{filter:blur(6px)}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover):hover .gallery-item-content{filter:grayscale(1)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover){transition:background-color .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover){transition:transform .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover{background-color:rgba(0,0,0,0) !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(0.985)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(0.985)}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover):hover .gallery-item-content{filter:invert(1)}div.pro-gallery .gallery-item-container.color-in-on-hover .gallery-item-content{filter:grayscale(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.color-in-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.color-in-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:grayscale(0)}div.pro-gallery .gallery-item-container.darkened-on-hover .gallery-item-content{filter:brightness(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.darkened-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.darkened-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:brightness(0.7)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover .gallery-item-hover-inner{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover):before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover:before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner{opacity:1}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover):before{opacity:0}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:0 !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(0)} .animation-slide{transition:width .4s ease,height .4s ease,top .4s ease,left .4s ease} .item-with-secondary-media-container .secondary-media-item.hide{opacity:0} .item-with-secondary-media-container .secondary-media-item.show{opacity:1} *[data-collapsed=true] .pro-gallery-parent-container .gallery-item, *[data-hidden=true] .pro-gallery-parent-container .gallery-item{background-image:none !important}html.pro-gallery{width:100%;height:auto}body.pro-gallery{transition:opacity 2s ease} #gallery-loader{position:fixed;top:50%} .show-more-container{text-align:center;line-height:138px} .show-more-container i.show-more{color:#5d5d61;font-size:40px;cursor:pointer;margin-top:-3px} .show-more-container button.show-more{display:inline-block;padding:11px 29px;border-radius:0;border:2px solid #5d5d61;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:12px;color:#5d5d61;background:rgba(0,0,0,0);cursor:pointer} .show-more-container button.show-more:hover{background:rgba(0,0,0,.1)} .more-items-loader{display:block;width:100%;text-align:center;line-height:50px;font-size:30px;color:#116dff} .version-header{color:#e03939;text-align:left;font-family:"Consolas",monospace;font-size:13px;position:absolute;top:0;left:0;width:320px;height:100px;line-height:30px;background:hsla(0,0%,100%,.8);z-index:100} .auto-slideshow-button{margin-top:19px;padding:5px;height:28px;width:20px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9} .auto-slideshow-counter{margin-top:24px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;opacity:.9;font-size:15px;line-height:normal}@keyframes fadeIn{from{opacity:0}to{opacity:1}} .mouse-cursor{display:flex;width:100%;position:absolute} .nav-arrows-container{left:auto;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9;align-items:center;background:rgba(0,0,0,0);border:none;justify-content:center} .nav-arrows-container.follow-mouse-cursor{position:relative;cursor:none} .nav-arrows-container:hover{opacity:1} .nav-arrows-container.drop-shadow svg{filter:drop-shadow(0px 1px 0.15px #B2B2B2)} .nav-arrows-container .slideshow-arrow{flex-shrink:0} .nav-arrows-container:focus:not(:focus-visible){--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important} .arrow-portal-container span{animation:fadeIn .1s ease-in-out;position:fixed;transition:top 50ms,left 50ms;display:flex;align-items:center;justify-content:center}div.gallery-slideshow div.pro-gallery,div.gallery-slideshow .gallery-column{box-sizing:content-box !important}div.gallery-slideshow .gallery-group,div.gallery-slideshow .gallery-item-container,div.gallery-slideshow .gallery-item-wrapper{overflow:visible !important}div.gallery-slideshow.streched .gallery-slideshow-info{padding-left:50px !important;padding-right:50px !important}@media(max-width: 500px){div.gallery-slideshow div.pro-gallery .gallery-slideshow-info{padding-left:20px;padding-right:20px}}div.gallery-slideshow div.pro-gallery .gallery-item-container .gallery-slideshow-info{position:absolute;padding-top:0px;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15} .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 60px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 10px 50px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px}div.pro-gallery{width:100%;height:100%;overflow:hidden;backface-visibility:hidden;position:relative}div.pro-gallery .gallery-column{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden}div.pro-gallery .gallery-column .gallery-left-padding{display:inline-block;height:100%}div.pro-gallery .gallery-column .gallery-top-padding{display:block;width:100%}div.pro-gallery .gallery-group{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden;box-sizing:border-box;padding:0;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px}div.pro-gallery .gallery-group.debug.gallery-group-gone{background:#cdcdd0}div.pro-gallery .gallery-group.debug.gallery-group-visible{background:#c1f0c1}div.pro-gallery .gallery-group.debug.gallery-group-hidden{background:#f99}div.pro-gallery .gallery-item-container{position:absolute;display:inline-block;vertical-align:top;border:none;padding:0;border-radius:0;box-sizing:border-box;overflow:hidden;transform-style:preserve-3d;backface-visibility:hidden;outline:none;text-decoration:none;color:inherit;will-change:top,left,width,height;box-sizing:border-box;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px;cursor:default;scroll-snap-align:center}div.pro-gallery .gallery-item-container .item-action{width:1px;height:1px;overflow:hidden;position:absolute;pointer-events:none;z-index:-1}div.pro-gallery .gallery-item-container .item-action:focus{--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info{cursor:pointer}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info button{text-decoration:underline;cursor:pointer}div.pro-gallery .gallery-item-container.visible{transform:translate3d(0, 0, 0)}div.pro-gallery .gallery-item-container.clickable{cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper{position:relative;width:100%;height:100%;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item{position:absolute;z-index:1;width:100%;height:100%;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .gallery-item{-o-object-fit:cover;object-fit:cover}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .text-item>div{width:100% !important;height:100% !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper.transparent,div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit{background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-preload{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit .gallery-item{background:rgba(0,0,0,0);-o-object-fit:contain;object-fit:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;overflow:hidden;border-radius:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item{box-sizing:border-box;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;white-space:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item .te-pro-gallery-text-item{line-height:normal !important;letter-spacing:normal !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item>div{background:initial !important;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item p,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item div,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h3,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h6,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item i{margin:0;padding:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item .pro-circle-preloader{top:50%;left:50%;height:30px;width:15px;z-index:-1;opacity:.4}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item img.gallery--placeholder-item{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded{background-color:rgba(0,0,0,0);opacity:1 !important;animation:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded.image-item:after{display:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded~.pro-circle-preloader{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.error{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded{background-size:cover;background-repeat:no-repeat;background-position:center center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded.grid-fit{background-size:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video{overflow:hidden;text-align:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video iframe{left:0;top:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing i{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playedOnce~.image-item{pointer-events:none;opacity:0;transition:opacity .2s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{display:inline-block;text-rendering:auto;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;position:absolute;z-index:11;top:50%;left:50%;height:60px;text-align:center;margin:-30px 0 0 -30px;background:#080808;color:#fff;border-radius:50px;opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle{opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-background,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-background{font-size:26px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:hover{opacity:.9}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:before,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:before{font-size:2.3em;opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info{position:absolute;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info>div{height:100%;width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{white-space:initial;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;border-radius:0;z-index:15;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-hover-inner{height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover.no-hover-bg:before{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;z-index:-1}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery.one-row{white-space:nowrap;float:left}div.pro-gallery.one-row .gallery-column{width:100%;float:none;white-space:nowrap}div.pro-gallery.one-row .gallery-column .gallery-group{display:inline-block;float:none}div.pro-gallery.one-row.slider .gallery-column{overflow-x:scroll}div.pro-gallery.one-row.slider .gallery-column.scroll-snap{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}div.pro-gallery.one-row .gallery-horizontal-scroll-inner{position:relative;will-change:transform}div.pro-gallery.thumbnails-gallery{overflow:hidden;float:left}div.pro-gallery.thumbnails-gallery .galleryColumn{position:relative;overflow:visible}div.pro-gallery.thumbnails-gallery .thumbnailItem{position:absolute;background-color:#fff;background-size:cover;background-position:center;overflow-y:inherit;border-radius:0px;cursor:pointer}div.pro-gallery.thumbnails-gallery .thumbnailItem.pro-gallery-highlight::after{content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;background-color:hsla(0,0%,100%,.6)}@media(max-width: 500px){div.pro-gallery.thumbnails-gallery{overflow:visible}}div.pro-gallery *:focus{box-shadow:none}div.pro-gallery.accessible i:focus,div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus{box-shadow:inset 0 0 0 1px #fff,inset 0 0 1px 4px #116dff}div.pro-gallery.accessible i:focus:not(:focus-visible),div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus:not(:focus-visible){box-shadow:none !important}div.pro-gallery.accessible .gallery-item-hover i:focus,div.pro-gallery.accessible .gallery-item-hover button:focus{box-shadow:none}div.pro-gallery.accessible .gallery-item-container:has(.item-action:focus)::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit;z-index:15}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before{box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit}div.pro-gallery .hide-scrollbars{-ms-overflow-style:none;overflow:-moz-scrollbars-none;scrollbar-width:none}div.pro-gallery .hide-scrollbars::-webkit-scrollbar,div.pro-gallery .hide-scrollbars ::-webkit-scrollbar{width:0 !important;height:0 !important}div.pro-gallery .rtl{direction:rtl}div.pro-gallery .ltr{direction:ltr} .sr-only.out-of-view-component{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:circle(0%);border:0} .screen-logs{word-wrap:break-word;background:#fff;width:280px;font-size:10px} .fade{display:block;transition:opacity 600ms ease} .fade-visible{opacity:1} .fade-hidden{opacity:0} .deck-before{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(-100%)} .deck-before-rtl{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(100%)} .deck-current{display:block;z-index:0;transition:transform 600ms ease;transform:translateX(0)} .deck-current .override{transition:transform 600ms ease,opacity .1s ease 200ms !important} .deck-after{display:block;transition:opacity .2s ease 600ms;z-index:-1;opacity:0} .deck-after .override{transition:opacity .1s ease 0s !important} .disabled-transition{transition:none !important}@keyframes changing_background{0%{background-color:rgba(241,241,241,.2)}50%{background-color:rgba(241,241,241,.8)}100%{background-color:rgba(241,241,241,.2)}} .pro-gallery-parent-container.gallery-slideshow [data-hook=group-view]::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .pro-gallery-parent-container:not(.gallery-slideshow) [data-hook=group-view] .item-link-wrapper::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .gallery-item-container{scroll-snap-align:none !important} .gallery-slideshow .gallery-item-container:not(.clickable) a{cursor:default}/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2265 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGallery.global.scss ***! | |
| 2266 | + \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2267 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../pro-gallery-info-element/dist/statics/app.css ***! | |
| 2268 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2269 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/infoElement.scss ***! | |
| 2270 | + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .slideshow-info-element-inner .info-element-text>div{width:100%} .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info{box-sizing:border-box;padding-top:24px;height:100%;width:100%;padding-top:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-item-common-info.gallery-item-bottom-info .info-element-text>div{width:100%} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description>span{white-space:normal} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-member.hide{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.populated-item{margin-bottom:24px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center{justify-content:center} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text>div{width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element{display:flex;flex-direction:column;justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social{margin:0;height:auto;position:static;display:flex;flex-direction:row} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows{width:auto;margin:0px -10px 0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top{background:linear-gradient(rgba(0, 0, 0, 0.2) 0, transparent 140px)} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center{justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button{position:static !important;margin:0;padding:0 20px;font-size:19px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share{margin-top:-3px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{white-space:normal} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px 0 0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{display:flex;justify-content:center;opacity:0;/*! autoprefixer: ignore next */-webkit-box-pack:center;transition:opacity .4s ease;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper .buy-icon{margin-right:7px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;opacity:0;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;white-space:nowrap;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px;display:flex;flex-direction:column;margin:0;box-sizing:border-box;height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.short-item{padding-top:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.narrow-item{padding-left:5px;padding-right:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text>div{width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.push-down{padding-top:60px;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{line-height:32px;font-size:21px;padding:0;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0;white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements{width:100%;height:24px !important;display:flex;flex-direction:row}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-love{margin-right:auto}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-button{padding-left:10px;padding-right:10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-absolute{position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social{outline:none;width:100%;height:100%;overflow:visible;z-index:16;transition:opacity .4s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item{display:flex;align-items:flex-end;justify-content:space-around;height:90%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item .info-element-social-button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item .info-element-social-button{position:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.with-arrows{width:86%;margin:0 7%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button{outline:none;bottom:30px;position:absolute;margin:0;display:inline-block;font-size:19px;color:#fff;cursor:pointer;opacity:0;padding:10px;margin:-10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.visible{opacity:1 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments{left:26px;top:26px;bottom:initial;font-size:15px;border:none;background:#2b5672;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love{left:30px;bottom:30px;font-size:15px;border:none;background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love i{outline:none;float:left;display:inline-block;line-height:14px;border:none;background:rgba(0,0,0,0);font-size:18px;padding:1px 5px;text-decoration:none;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;line-height:15px;font-size:15px;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-share{bottom:26px;left:auto;right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-dots{left:auto;right:22px;top:26px;height:30px;width:20px;display:flex;justify-content:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download{bottom:25px;left:auto;right:68px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download.pull-right{right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments{left:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments span{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-share{right:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-download{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-dots{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button{bottom:auto;left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-comments{top:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-share{top:auto;right:auto;bottom:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-download{top:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-dots{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box{position:absolute;top:0;left:50%;width:100%;height:100%;max-width:300px;min-width:200px;overflow:visible;z-index:16;font-size:12px;opacity:0;transform:translateX(-50%);margin-top:1px;margin-left:-3px;transition:opacity .4s ease;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i{display:inline-block;font-size:15px;color:#fff;cursor:pointer;position:absolute;top:50%;width:22px;text-align:center;transform:translateY(-50%);background:rgba(0,0,0,0);border:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i:hover{opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-1{margin-left:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-2{font-size:13px;margin-top:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-4{margin-left:-1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-5{font-size:13px;margin-top:1px;margin-left:-3px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item{top:50%;left:0;max-width:none;min-width:0;max-height:300px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i{left:50%;margin-left:-10px;margin-top:8px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-2{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-5{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{/*! autoprefixer: ignore next */overflow:hidden;/*! autoprefixer: ignore next */display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description{/*! autoprefixer: ignore next */overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description>span{white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery.thumbnails-gallery .gallery-item-container .info-element-custom-button-wrapper{display:none !important}/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2271 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/InfoElement.global.scss ***! | |
| 2272 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2273 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/Tooltip.global.scss ***! | |
| 2274 | + \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ :root{--tooltip-text-color: white;--tooltip-background-color: black;--tooltip-margin: 30px;--tooltip-arrow-size: 6px} .tooltip-wrapper{position:absolute;top:0;z-index:100;background-color:var(--tooltip-background-color);color:var(--tooltip-text-color);box-shadow:0px 0px 4px 0px rgba(0,0,0,.1);border:1px solid var(--tooltip-text-color)} .tooltip-body{padding:4px;font-size:14px;font-family:Helvetica} .tooltip-body::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:var(--tooltip-arrow-size);margin-left:calc(var(--tooltip-arrow-size)*-1)} .tooltip-body.arrow{top:calc(var(--tooltip-margin)*-1)} .tooltip-body.arrow::before{top:100%;border-top-color:var(--tooltip-background-color)}/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2275 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGalleryRenderIndicator.global.scss ***! | |
| 2276 | + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pg-render-indicator{position:absolute;bottom:15.5px;left:15.5px;border:1px solid #717171;padding:5px 10px 5px 5px;font-size:16px;z-index:2147483648;cursor:default;line-height:20px} .pg-render-indicator table{table-layout:fixed} .pg-render-indicator.rendered{background-color:#7fff00} .pg-render-indicator.not-rendered{background-color:red} .pg-render-indicator .log-column{max-height:450px;max-width:500px;overflow:auto;background-color:#fff} .pg-render-indicator .show-on-hover{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;top:-9999px;left:-9999px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important} .pg-render-indicator div.worker-log-text{word-wrap:break-word;max-width:500px;min-width:100px} .pg-render-indicator:hover{max-width:90%;max-height:90%} .pg-render-indicator:hover .show-on-hover{clip:auto !important;clip-path:none;display:block;height:auto;line-height:normal;text-decoration:none;width:auto;position:static} | |
| 2277 | + | |
| 2278 | + .pro-fullscreen-wrapper, .pro-fullscreen-wrapper-loading{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:100005} | |
| 2279 | + .pro-gallery-empty{top:0;left:0;height:100%;width:100%;background-color:hsla(0,0%,100%,.9)} .pro-gallery-empty .pro-gallery-empty-content{height:334px;width:100%;overflow:hidden} .pro-gallery-empty .pro-gallery-empty-image{margin:66px auto 35px;width:262px;height:132px;background-image:url(media/emptystate.85a4add5.svg);background-size:contain} .pro-gallery-empty .pro-gallery-empty-title{color:#4eb7f5;font-family:"HelveticaNeueW01-55Roma","HelveticaNeueW02-55Roma","HelveticaNeueW10-55Roma",sans-serif;font-size:20px;line-height:25px;text-align:center;margin-bottom:10px} .pro-gallery-empty .pro-gallery-empty-info{color:#4eb7f5;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:14px;line-height:20px;text-align:center} | |
| 2280 | +</style><style> | |
| 2281 | +.comp-m8omf94t div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content{background-color:#000000}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:rgba(0, 0, 0, 0.9);font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:1px;border-color:#000000;border-radius:0px}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:#000000;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:undefinedpx;border-color:#000000;border-radius:undefinedpx}.comp-m8omf94t .nav-arrows-container .slideshow-arrow,.comp-m8omf94t .nav-arrows-container .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .pro-gallery.inline-styles .auto-slideshow-counter{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:1px;border-radius:0px;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:1px;border-radius:0px}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0.3) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:undefinedpx;border-radius:undefinedpx;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:undefinedpx;border-radius:undefinedpx}.comp-m8omf94t .te-pro-gallery-text-item{font:normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FAFAFA}.comp-m8omf94t .pro-fullscreen-wrapper .pro-fullscreen-text-item{--fullscreen-text-item-bg: #000000;background-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1{--titleColorExpand: #000000;--titleFontExpand: normal normal normal 25px/1.3em montserrat-black,sans-serif;color:#000000;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{--descriptionColorExpand: #000000;border-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background{--bgColorExpand: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon{--descriptionColorExpand: #000000;--bgColorExpand: #FAFAFA;color:#000000;background:#FFFFFF} | |
| 2282 | +</style><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div id="gallery-wrapper-comp-m8omf94t" style="overflow:hidden;height:100%;width:100%"><style>div.comp-m8omf94t:not(.fullscreen-comp-wrapper) { | |
| 2283 | + height: 100%; | |
| 2284 | + width: 100%; | |
| 2285 | + position: relative; | |
| 2286 | + } | |
| 2287 | + div.comp-m8omf94t:not(.fullscreen-comp-wrapper) #gallery-wrapper-comp-m8omf94t { | |
| 2288 | + position: absolute; | |
| 2289 | + top: 0; | |
| 2290 | + left: 0; | |
| 2291 | + }</style><div id="pro-gallery-comp-m8omf94t" class="pro-gallery"><div data-key="pro-gallery-inner-container" class="pro-gallery-prerender" tabindex="-1"><div data-hook="css-scroll-indicator" data-scroll-base="0" data-scroll-top="0" class="pgscl-0 pgscl_m8omf94t_0-40960 pgscl_m8omf94t_0-20480 pgscl_m8omf94t_0-10240 pgscl_m8omf94t_0-5120 pgscl_m8omf94t_0-2560 pgscl_m8omf94t_0-1280 pgscl_m8omf94t_0-640 pgscl_m8omf94t_0-320 pgscl_m8omf94t_0-160 pgscl_m8omf94t_0-80 pgscl_m8omf94t_0-40 pgscl_m8omf94t_0-20 pgscl_m8omf94t_0-10" style="display:none"></div><div class="pro-gallery-parent-container gallery-thumbnails" style="margin:0;width:1450px;height:700px" role="region"><div id="pro-gallery-container-comp-m8omf94t" class="pro-gallery inline-styles one-row hide-scrollbars slider ltr " style="width:100%;height:700px;display:flex;justify-content:space-between"><div data-hook="gallery-column" id="gallery-horizontal-scroll-comp-m8omf94t" class="gallery-horizontal-scroll gallery-column hide-scrollbars ltr scroll-snap " style="width:100%;height:700px;overflow-y:visible"><div class="gallery-horizontal-scroll-inner"><div data-hook="group-view" style="--group-top:0px;--group-left:0px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-link-wrapper" data-idx="0" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2jpg_0" data-hash="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-idx="0" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:0;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="false"><div data-idx="0" id="item-action-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-action" tabindex="0" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="0" src="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:1315px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-link-wrapper" data-idx="1" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2jpg_1" data-hash="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-idx="1" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:1315px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="1" id="item-action-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="1" src="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:2630px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-link-wrapper" data-idx="2" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_c6215d03bc304694ba4e465180af8208mv2jpg_2" data-hash="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-idx="2" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:2630px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="2" id="item-action-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="2" src="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:3945px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-link-wrapper" data-idx="3" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_b6d99cec44d64b09960646e4549c9724mv2jpg_3" data-hash="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-idx="3" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:3945px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="3" id="item-action-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="3" src="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:5260px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-link-wrapper" data-idx="4" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2jpg_4" data-hash="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-idx="4" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:5260px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="4" id="item-action-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="4" src="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:6575px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-link-wrapper" data-idx="5" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2jpg_5" data-hash="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-idx="5" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:6575px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="5" id="item-action-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="5" src="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:7890px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-link-wrapper" data-idx="6" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2jpg_6" data-hash="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-idx="6" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:7890px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="6" id="item-action-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="6" src="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:9205px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-link-wrapper" data-idx="7" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_33e34e4dd24246328faed19722c123ccmv2jpg_7" data-hash="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-idx="7" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:9205px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="7" id="item-action-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="7" src="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:10520px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-link-wrapper" data-idx="8" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_1f2afdb08689460faf1583f3697f1611mv2jpg_8" data-hash="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-idx="8" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:10520px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="8" id="item-action-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="8" src="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:11835px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-link-wrapper" data-idx="9" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2jpg_9" data-hash="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-idx="9" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:11835px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="9" id="item-action-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="9" src="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:13150px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-link-wrapper" data-idx="10" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2jpg_10" data-hash="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-idx="10" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:13150px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="10" id="item-action-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="10" src="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:14465px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-link-wrapper" data-idx="11" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_c6215d03bc304694ba4e465180af8208mv2jpg_11" data-hash="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-idx="11" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:14465px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="11" id="item-action-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="11" src="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:15780px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-link-wrapper" data-idx="12" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_b6d99cec44d64b09960646e4549c9724mv2jpg_12" data-hash="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-idx="12" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:15780px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="12" id="item-action-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="12" src="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:17095px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-link-wrapper" data-idx="13" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2jpg_13" data-hash="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-idx="13" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:17095px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="13" id="item-action-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="13" src="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:18410px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-link-wrapper" data-idx="14" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2jpg_14" data-hash="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-idx="14" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:18410px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="14" id="item-action-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="14" src="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:19725px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-link-wrapper" data-idx="15" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2jpg_15" data-hash="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-idx="15" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:19725px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="15" id="item-action-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="15" src="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:21040px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-link-wrapper" data-idx="16" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_33e34e4dd24246328faed19722c123ccmv2jpg_16" data-hash="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-idx="16" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:21040px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="16" id="item-action-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="16" src="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:22355px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-link-wrapper" data-idx="17" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_1f2afdb08689460faf1583f3697f1611mv2jpg_17" data-hash="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-idx="17" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:22355px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="17" id="item-action-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="17" src="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:23670px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-link-wrapper" data-idx="18" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2jpg_18" data-hash="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-idx="18" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:23670px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="18" id="item-action-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="18" src="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:24985px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-link-wrapper" data-idx="19" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2jpg_19" data-hash="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-idx="19" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:24985px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="19" id="item-action-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="19" src="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:26300px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-link-wrapper" data-idx="20" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_c6215d03bc304694ba4e465180af8208mv2jpg_20" data-hash="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-idx="20" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:26300px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="20" id="item-action-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="20" src="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:27615px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-link-wrapper" data-idx="21" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_b6d99cec44d64b09960646e4549c9724mv2jpg_21" data-hash="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-idx="21" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:27615px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="21" id="item-action-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="21" src="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:28930px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-link-wrapper" data-idx="22" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2jpg_22" data-hash="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-idx="22" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:28930px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="22" id="item-action-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="22" src="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:30245px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-link-wrapper" data-idx="23" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2jpg_23" data-hash="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-idx="23" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:30245px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="23" id="item-action-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="23" src="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:31560px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-link-wrapper" data-idx="24" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2jpg_24" data-hash="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-idx="24" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:31560px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="24" id="item-action-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="24" src="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:32875px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-link-wrapper" data-idx="25" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_33e34e4dd24246328faed19722c123ccmv2jpg_25" data-hash="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-idx="25" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:32875px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="25" id="item-action-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="25" src="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:34190px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-link-wrapper" data-idx="26" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_1f2afdb08689460faf1583f3697f1611mv2jpg_26" data-hash="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-idx="26" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:34190px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="26" id="item-action-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="26" src="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:35505px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-link-wrapper" data-idx="27" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2jpg_27" data-hash="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" data-idx="27" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:35505px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="27" id="item-action-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="27" src="https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:36820px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-link-wrapper" data-idx="28" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2jpg_28" data-hash="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" data-idx="28" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:36820px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="28" id="item-action-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="28" src="https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:38135px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-link-wrapper" data-idx="29" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_c6215d03bc304694ba4e465180af8208mv2jpg_29" data-hash="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" data-idx="29" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:38135px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="29" id="item-action-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="29" src="https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:39450px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-link-wrapper" data-idx="30" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_b6d99cec44d64b09960646e4549c9724mv2jpg_30" data-hash="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" data-idx="30" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:39450px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="30" id="item-action-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="30" src="https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:40765px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-link-wrapper" data-idx="31" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2jpg_31" data-hash="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" data-idx="31" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:40765px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="31" id="item-action-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="31" src="https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:42080px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-link-wrapper" data-idx="32" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2jpg_32" data-hash="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" data-idx="32" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:42080px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="32" id="item-action-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="32" src="https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:43395px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-link-wrapper" data-idx="33" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2jpg_33" data-hash="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" data-idx="33" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:43395px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="33" id="item-action-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="33" src="https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:44710px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-link-wrapper" data-idx="34" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_33e34e4dd24246328faed19722c123ccmv2jpg_34" data-hash="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" data-idx="34" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:44710px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="34" id="item-action-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_33e34e4dd24246328faed19722c123ccmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="34" src="https://static.wixstatic.com/media/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:46025px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-link-wrapper" data-idx="35" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi0df8bb_1f2afdb08689460faf1583f3697f1611mv2jpg_35" data-hash="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" data-idx="35" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:46025px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="35" id="item-action-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 1x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 2x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 3x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 4x, https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg 5x" type="image/jpeg"/><img id="0df8bb_1f2afdb08689460faf1583f3697f1611mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="35" src="https://static.wixstatic.com/media/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div></div></div></div><div class="pro-gallery inline-styles thumbnails-gallery ltr " style="width:130px;height:700px;margin-left:5px;margin-right:0" data-hook="gallery-thumbnails"><div data-hook="gallery-thumbnails-column" class="galleryColumn" style="overflow:visible;width:130px;height:700px;top:0"><div class="thumbnailItem pro-gallery-highlight" data-key="0df8bb_206b69b69ffc4b23b0763a9ff69506b1mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg);top:0"></div><div class="thumbnailItem" data-key="0df8bb_a48ad9f732ba4c4eb8dc684ab110b267mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg);top:130px"></div><div class="thumbnailItem" data-key="0df8bb_c6215d03bc304694ba4e465180af8208mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg);top:260px"></div><div class="thumbnailItem" data-key="0df8bb_b6d99cec44d64b09960646e4549c9724mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg);top:390px"></div><div class="thumbnailItem" data-key="0df8bb_021012ca524a4c00b8190e4a373ec6d6mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg);top:520px"></div><div class="thumbnailItem" data-key="0df8bb_0e4a2d0f488741d2b55130e20501a1fcmv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg);top:650px"></div><div class="thumbnailItem" data-key="0df8bb_fe7f201e249645e7b90ee3665b8ee923mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg);top:780px"></div></div></div></div><div data-key="items-styles" style="display:none"><style>#pro-gallery-comp-m8omf94t .gallery-item-container, #pro-gallery-comp-m8omf94t .thumbnails-gallery { opacity: 0 }</style></div></div></div><div id="layout-fixer-comp-m8omf94ttrue" style="display:none"><link href="" rel="stylesheet" id="layout-fixer-style-comp-m8omf94t"/><script>try { | |
| 2292 | + window.requestAnimationFrame(function() { | |
| 2293 | + setTimeout(() => { | |
| 2294 | + | |
| 2295 | + | |
| 2296 | + var ele = document.getElementById('pro-gallery-comp-m8omf94t'); | |
| 2297 | + var pgMeasures = ele.getBoundingClientRect(); | |
| 2298 | + var options = (() => "layoutParams_cropRatio:100%/100%|layoutParams_structure_galleryRatio_value:0|layoutParams_repeatingGroupTypes:|layoutParams_gallerySpacing:0|groupTypes:1|numberOfImagesPerRow:4|collageAmount:0.8|textsVerticalPadding:0|textsHorizontalPadding:0|calculateTextBoxHeightMode:MANUAL|targetItemSize:50|cubeRatio:100%/100%|externalInfoHeight:0|externalInfoWidth:0|isRTL:false|isVertical:false|minItemSize:120|groupSize:1|chooseBestGroup:true|cubeImages:true|cubeType:fill|smartCrop:false|collageDensity:1|imageMargin:0|hasThumbnails:true|galleryThumbnailsAlignment:right|gridStyle:1|titlePlacement:SHOW_ON_HOVER|arrowsSize:50|slideshowInfoSize:120|imageInfoType:NO_BACKGROUND|textBoxHeight:0|scrollDirection:1|galleryLayout:3|gallerySizeType:smart|gallerySize:50|cropOnlyFill:false|numberOfImagesPerCol:1|groupsPerStrip:0|scatter:0|enableInfiniteScroll:true|thumbnailSpacings:5|arrowsPosition:0|thumbnailSize:120|calculateTextBoxWidthMode:PERCENT|textBoxWidthPercent:50|useMaxDimensions:false|rotatingGroupTypes:|fixedColumns:0|rotatingCropRatios:|gallerySizePx:0|placeGroupsLtr:false")(ele); | |
| 2299 | + var width = pgMeasures.width; | |
| 2300 | + var height = pgMeasures.height; | |
| 2301 | + | |
| 2302 | + var isIOS = /iPad|iPhone|iPod/.test(navigator?.userAgent); | |
| 2303 | + if(isIOS) { | |
| 2304 | + width = width; | |
| 2305 | + width = width; | |
| 2306 | + height = height; | |
| 2307 | + height = height; | |
| 2308 | + } else { | |
| 2309 | + width = width; | |
| 2310 | + width = width; | |
| 2311 | + height = height; | |
| 2312 | + height = height; | |
| 2313 | + } | |
| 2314 | + | |
| 2315 | + pgMeasures = { top: pgMeasures.top, width, height }; | |
| 2316 | + | |
| 2317 | + var isVertical = options.includes('layoutParams_structure_scrollDirection:"VERTICAL"'); | |
| 2318 | + var layoutFixerUrl = '/_serverless/pro-gallery-css-v4-server/layoutCss?ver=2&id=comp-m8omf94t&items=3568_2048_1365|3696_2048_1365|3451_2048_1365|3492_2048_1365|3479_2048_1365|3483_2048_1365|3580_2048_1365|3549_2048_1365|3522_2048_1365|3568_2048_1365|3696_2048_1365|3451_2048_1365|3492_2048_1365|3479_2048_1365|3483_2048_1365|3580_2048_1365|3549_2048_1365|3522_2048_1365|3568_2048_1365|3696_2048_1365&container=' + pgMeasures.top + '_' + pgMeasures.width + '_' + pgMeasures.height + '_' + window.innerHeight + '&options=' + options; | |
| 2319 | + document.getElementById('layout-fixer-style-comp-m8omf94t').setAttribute('href', encodeURI(layoutFixerUrl)); | |
| 2320 | + | |
| 2321 | + }, 0); | |
| 2322 | + }); | |
| 2323 | + } catch (e) { | |
| 2324 | + console.warn('Cannot set layoutFixer css', e); | |
| 2325 | + }</script></div></div></div></div></div></div></div></div></div></div><div id="comp-m8omdbey11" role="" class="HFEOE3 NaeT1r comp-m8omdbey11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbey11-container"><div id="comp-m8omdbez" class="N8MGzv _v6ohL PO9MfV comp-m8omdbez wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">3 1/2 À PARTIR DE 1150$</p> | |
| 2326 | +<p class="font_8 wixui-rich-text__text">4 1/2 À PARTIR DE 1250$</p> | |
| 2327 | +<p class="font_8 wixui-rich-text__text">5 1/2 À PARTIR DE 1500$</p> | |
| 2328 | +<p class="font_8 wixui-rich-text__text">Ces prix sont sujets à changement selon les promotions et loyer en vigueur</p> | |
| 2329 | +<p class="font_8 wixui-rich-text__text">Adresse: Flavie-Poirier, Saint-Charles-Borromee</p> | |
| 2330 | +<p class="font_8 wixui-rich-text__text">Les appartements comprennent :</p> | |
| 2331 | +<p class="font_8 wixui-rich-text__text">- 1 Salle de bain</p> | |
| 2332 | +<p class="font_8 wixui-rich-text__text">- Salle de lavage</p> | |
| 2333 | +<p class="font_8 wixui-rich-text__text">- Air climatisé mural/thermopompe et Échangeur d’air</p> | |
| 2334 | +<p class="font_8 wixui-rich-text__text">- Un espace ouvert et lumineux</p> | |
| 2335 | +<p class="font_8 wixui-rich-text__text">- Un espace extérieur (balcon)</p> | |
| 2336 | +<p class="font_8 wixui-rich-text__text">- Animaux acceptés sous certaines conditions</p> | |
| 2337 | +<p class="font_8 wixui-rich-text__text">- TV/Internet Vidéotron inclus</p> | |
| 2338 | +<p class="font_8 wixui-rich-text__text">- 1 Stationnements inclus</p> | |
| 2339 | +<p class="font_8 wixui-rich-text__text">- Rangement intérieur disponible ($)</p> | |
| 2340 | +<p class="font_8 wixui-rich-text__text">Emplacement idéal pour ceux qui cherchent à conjuguer qualité de vie et beauté naturelle, à proximité de tous les services essentiels. Laissez-vous charmer par nos unités !</p> | |
| 2341 | +<p class="font_8 wixui-rich-text__text">**Photos à titre indicatif seulement**</p> | |
| 2342 | +<p class="font_8 wixui-rich-text__text">N'hésitez pas à nous contacter pour plus d'informations ou pour planifier une visite!</p> | |
| 2343 | +<p class="font_8 wixui-rich-text__text">CONTACT : 450-499-7978</p> | |
| 2344 | +<p class="font_8 wixui-rich-text__text">COURRIEL : <a data-auto-recognition="true" href="mailto:info@leshabitationssf.com" class="wixui-rich-text__text">info@leshabitationssf.com</a></p> | |
| 2345 | +<p class="font_8 wixui-rich-text__text">*Certaines conditions s'appliquent*</p></div></div></div><div id="comp-m8omdbf0" role="" class="HFEOE3 NaeT1r comp-m8omdbf0 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf0-container"><div id="comp-m8omdbf1" role="" class="HFEOE3 NaeT1r comp-m8omdbf1-container comp-m8omdbf1 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf2" role="" class="HFEOE3 NaeT1r comp-m8omdbf2-container comp-m8omdbf2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf211" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf211 wixui-rich-text N5mCVp" data-testid="richTextElement"><h6 class="font_6 wixui-rich-text__text"><span class="wixui-rich-text__text">Disponible</span></h6></div></div><div id="comp-m8omdbf39" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf39 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">APPARTEMENT</span></p></div><div id="comp-m8omdbf415" role="" class="HFEOE3 NaeT1r comp-m8omdbf415 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf415-container"><div id="comp-m8omdbf510" class="comp-m8omdbf510 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf510" class="iL7Pq5 gx51wo"> | |
| 2346 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="20 45 160 110" viewBox="20 45 160 110" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omdbf510 svg [data-color="1"] {fill: #000000;}</style></defs> | |
| 2347 | + <g> | |
| 2348 | + <path d="M33.968 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395.001 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2349 | + <path d="M166.032 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07 0 2.118-1.705 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2350 | + <path d="M155.873 52.674H44.127c-2.104 0-3.81-1.718-3.81-3.837S42.022 45 44.127 45h111.746c2.104 0 3.81 1.718 3.81 3.837 0 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2351 | + <path d="M33.968 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2352 | + <path d="M166.032 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2353 | + <path d="M166.032 103.837H33.968c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h132.064c2.104 0 3.81 1.718 3.81 3.837s-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2354 | + <path d="M23.81 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c-.001 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2355 | + <path d="M176.19 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c0 2.12-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2356 | + <path d="M23.81 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395 0 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2357 | + <path d="M176.19 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07.001 2.118-1.704 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2358 | + <path d="M176.19 144.767H23.81c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h152.38c2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2359 | + <path d="M33.968 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v10.233c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2360 | + <path d="M166.032 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837v10.233c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2361 | + <path d="M51.746 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2362 | + <path d="M92.381 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2363 | + <path d="M92.381 73.14H51.746c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2364 | + <path d="M107.619 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2365 | + <path d="M148.254 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2366 | + <path d="M148.254 73.14h-40.635c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2367 | + </g> | |
| 2368 | +</svg> | |
| 2369 | +</div></div><div id="comp-m8omdbf61" role="" class="HFEOE3 NaeT1r comp-m8omdbf61-container comp-m8omdbf61 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf68" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf68 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1-3</span></p></div><div id="comp-m8omdbf711" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf711 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Chambre(s)</span></p></div></div></div></div><div id="comp-m8omdbf82" role="" class="HFEOE3 NaeT1r comp-m8omdbf82 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf82-container"><div id="comp-m8omdbf813" class="comp-m8omdbf813 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf813" class="iL7Pq5 gx51wo"><svg preserveAspectRatio="xMidYMid meet" data-bbox="21 36.054 160 127.946" xmlns="http://www.w3.org/2000/svg" viewBox="21 36.054 160 127.946" height="200" width="200" data-type="tint" role="presentation" aria-hidden="true" aria-label=""> | |
| 2370 | + <g> | |
| 2371 | + <path d="M30.796 91.95V65.162c0-8.036 3.116-15.34 8.199-20.755 5.477-5.835 13.237-8.132 21.842-8.132h9.143v.372a27.803 27.803 0 0 1 28.808 11.735l2.733 4.065-45.975 31.107-2.749-4.088c-6.886-10.241-6.112-23.402 1.012-32.643-2.898.706-5.522 2.018-7.682 4.319a20.385 20.385 0 0 0-5.535 14.02V91.95H181v40.938c0 13.565-10.964 24.562-24.49 24.562h-1.632V164h-9.796v-6.55H56.918V164h-9.796v-6.55H45.49c-13.526 0-24.49-10.997-24.49-24.563V91.95h9.796zm0 9.825v31.112c0 8.14 6.579 14.738 14.694 14.738h111.02c8.115 0 14.694-6.598 14.694-14.737v-31.113H30.796zm34.936-52.838c-6.81 4.608-9.457 13.107-6.994 20.595L87.37 50.158c-5.99-5.103-14.829-5.83-21.639-1.221z" fill="#111111" fill-rule="evenodd"></path> | |
| 2372 | + </g> | |
| 2373 | +</svg> | |
| 2374 | +</div></div><div id="comp-m8omdbf97" role="" class="HFEOE3 NaeT1r comp-m8omdbf97-container comp-m8omdbf97 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf916" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf916 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1</span></p></div><div id="comp-m8omdbfa13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfa13 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Salle(s) de bain</span></p></div></div></div></div><div id="comp-m8omdbfb14" role="" class="HFEOE3 NaeT1r comp-m8omdbfb14 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbfb14-container"><div id="comp-m8omdbfc3" role="" class="HFEOE3 NaeT1r comp-m8omdbfc3-container comp-m8omdbfc3 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfc10" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfc10 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><span class="wixGuard">​</span></span></p></div><div id="comp-m8omdbfd11" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfd11 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Pieds²</span></p></div></div></div></div><div id="comp-m8omdbfe" role="" class="HFEOE3 NaeT1r comp-m8omdbfe-container comp-m8omdbfe wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfe11" role="" class="HFEOE3 NaeT1r comp-m8omdbfe11-container comp-m8omdbfe11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbff" class="N8MGzv _v6ohL PO9MfV comp-m8omdbff wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1250</span></p></div><div id="comp-m8ooawu0" class="N8MGzv _v6ohL PO9MfV comp-m8ooawu0 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">$</span></p></div><div id="comp-m8omdbfg7" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfg7 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oobbzb" class="N8MGzv _v6ohL PO9MfV comp-m8oobbzb wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">MOIS</span></p></div></div></div></div></div></div><div id="comp-m8oqa661" role="" class="HFEOE3 NaeT1r comp-m8oqa661 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqa661-container"><div id="comp-m8oqbc3l" class="DDi8v8 comp-m8oqbc3l wixui-google-map"></div></div></div></div></section></main><footer id="comp-m8omcigd2" class="comp-m8omcigd2 S829f_ comp-m8omcigd2-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcigd2_r_comp-kbgakgyt" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omcigd2_r_comp-kbgakgyt wixui-footer fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcigd2_r_comp-kbgakgyt" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcigd2_r_comp-kbgakgyt" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcigd2_r_comp-kbgakgyt" data-motion-part="BG_MEDIA comp-m8omcigd2_r_comp-kbgakgyt" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-kbgakgyt-container max-width-container"><div id="comp-m8omcigd2_r_comp-m2y11976" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y11976 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-m2y11976-container"><div id="comp-m8omcigd2_r_comp-m2y12dql" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y12dql wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Tél : 450.499.7978</span></p> | |
| 2375 | + | |
| 2376 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2377 | + | |
| 2378 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2379 | + | |
| 2380 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">E-mail:</span></p> | |
| 2381 | + | |
| 2382 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@sfhabitations.com" class="wixui-rich-text__text">info@sfhabitations.com</a></span></p> | |
| 2383 | + | |
| 2384 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2385 | + | |
| 2386 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2387 | + | |
| 2388 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Secteur de Lanaudière, Laurentides, Montréal</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1gxle" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y1gxle-container comp-m8omcigd2_r_comp-m2y1gxle wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m2y1gkmp" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y1gkmp wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">S'ABONNER</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1awex" class="QrIus comp-m8omcigd2_r_comp-m2y1awex"><div class="comp-m8omcigd2_r_comp-m2y1awex"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div style="--index2490108247-shadowXOffset:0px;--index2490108247-shadowYOffset:0px;overflow:visible;--wix-forms-formHeaderTwoFont-size:var(--wix-forms-formHeaderTwoFontH2-size);--wix-forms-formHeaderTwoFont-family:var(--wix-forms-formHeaderTwoFontH2-family)" class="sN4uTVR" data-hook="Form-wrapper"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div><form aria-label="Abonnement" id="form-39743f17-3b77-49be-b37c-a7284b6479cc" data-hook="form-39743f17-3b77-49be-b37c-a7284b6479cc" class=""><fieldset class="kLNiUo"><div data-hook="form-root"><div class="ckHV4G" dir=""><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 2;grid-column:1 / span 12" data-hook="form-field-9c5d853d-7654-4b58-5574-bf0262076a35" data-field-type="HEADER"><div class="ElBhne" data-hook="ricos-viewer"><div class="zrLtk" dir="ltr" style="--ricos-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-text-color-tuple:var(--wix-forms-formParagraphColor);--ricos-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-background-color-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-fallback-color:rgb(0, 0, 0);--ricos-fallback-color-tuple:0, 0, 0;--ricos-settings-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-settings-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-focus-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-focus-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-action-color-fallback:rgb(0, 0, 0);--ricos-action-color-fallback-tuple:0, 0, 0;--ricos-theme-color-1:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-theme-color-1-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-theme-color-2:rgb(var(--wix-forms-formParagraphColor));--ricos-theme-color-2-tuple:var(--wix-forms-formParagraphColor);--ricos-theme-color-3:rgb(var(--wix-forms-formLinkColor));--ricos-theme-color-3-tuple:var(--wix-forms-formLinkColor);--ricos-custom-button-background-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-button-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-secondary-button-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-link-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-audio-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-audio-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-action-text-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-file-icon-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-table-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-vertical-embed-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-ribbon-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-link-preview-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-link-preview-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-line-height:1.5;--ricos-custom-toc-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-toc-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-divider-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-quote-line-height:1.5;--ricos-custom-quote-font-size:18px;--ricos-custom-smart-block-label-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-p-font-weight:normal;--ricos-custom-p-font-style:normal;--ricos-custom-p-line-height:1.5;--ricos-custom-p-font-size:var(--wix-forms-formParagraphFont-size, 16px);--ricos-custom-p-font-family:var(--wix-forms-formParagraphFont-family);--ricos-custom-p-color:rgb(var(--wix-forms-formParagraphColor, 0,0,0));--ricos-custom-h1-font-weight:normal;--ricos-custom-h1-font-style:normal;--ricos-custom-h1-line-height:1.5;--ricos-custom-h1-font-size:var(--wix-forms-formHeaderOneFont-size, 50px);--ricos-custom-h1-font-family:var(--wix-forms-formHeaderOneFont-family);--ricos-custom-h1-color:rgb(var(--wix-forms-formHeaderOneColor, 0,0,0));--ricos-custom-h2-font-weight:normal;--ricos-custom-h2-font-style:normal;--ricos-custom-h2-line-height:1.5;--ricos-custom-h2-font-size:var(--wix-forms-formHeaderTwoFont-size, 42px);--ricos-custom-h2-font-family:var(--wix-forms-formHeaderTwoFont-family);--ricos-custom-h2-color:rgb(var(--wix-forms-formHeaderTwoColor, 0,0,0));--ricos-custom-h3-font-weight:normal;--ricos-custom-h3-font-style:normal;--ricos-custom-h3-line-height:1.5;--ricos-custom-h3-font-size:var(--wix-forms-formHeaderThreeFont-size, 38px);--ricos-custom-h3-font-family:var(--wix-forms-formHeaderThreeFont-family);--ricos-custom-h3-color:rgb(var(--wix-forms-formHeaderThreeColor, 0,0,0));--ricos-custom-h4-font-weight:normal;--ricos-custom-h4-font-style:normal;--ricos-custom-h4-line-height:1.5;--ricos-custom-h4-font-size:var(--wix-forms-formHeaderFourFont-size, 34px);--ricos-custom-h4-font-family:var(--wix-forms-formHeaderFourFont-family);--ricos-custom-h4-color:rgb(var(--wix-forms-formHeaderFourColor, 0,0,0));--ricos-custom-h5-font-weight:normal;--ricos-custom-h5-font-style:normal;--ricos-custom-h5-line-height:1.5;--ricos-custom-h5-font-size:var(--wix-forms-formHeaderFiveFont-size, 28px);--ricos-custom-h5-font-family:var(--wix-forms-formHeaderFiveFont-family);--ricos-custom-h5-color:rgb(var(--wix-forms-formHeaderFiveColor, 0,0,0));--ricos-custom-h6-font-weight:normal;--ricos-custom-h6-font-style:normal;--ricos-custom-h6-line-height:1.5;--ricos-custom-h6-font-size:var(--wix-forms-formHeaderSixFont-size, 22px);--ricos-custom-h6-font-family:var(--wix-forms-formHeaderSixFont-family);--ricos-custom-h6-color:rgb(var(--wix-forms-formHeaderSixColor, 0,0,0));--ricos-breakout-normal-padding-start:0;--ricos-breakout-normal-padding-end:0;--ricos-breakout-full-width-padding-start:0;--ricos-breakout-full-width-padding-end:0" data-id="content-viewer"><div class="tlZw8"><div class="_7UvJA"><h1 class="JLkq2 LI-hR _0uG9a _41BxQ" dir="auto" id="viewer-cuu0z29" tabindex="-1"><span aria-hidden="true" id="abonnez-vous-aux-nouvelles-cuu0z29"></span><span class="_7sCfP"><span>Abonnez-vous aux nouvelles</span></span></h1></div></div></div></div></div></div></div><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 1;grid-column:1 / span 8;display:flex;align-items:flex-end"><label id="form-field-label-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" for="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" class="shszO9W sdcwRYb">E-mail<span aria-hidden="true" class="sHbjjkq">*</span></label></div><div style="grid-row:2 / span 1;grid-column:1 / span 8" data-hook="form-field-email_443e" data-field-type="CONTACTS_EMAIL"><div data-hook="text-field-root" class="sigpKjl oYEaGDN---theme-3-box oYEaGDN--newErrorMessage snZ_6f6 sL5d0Ld"><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__8YVWUI"><div class="s__72lfJk smyXERm oYEaGDN---theme-3-box" data-theme="box" data-success="false" data-error="false" data-empty-state="true"><input id="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" data-theme="box" data-success="false" data-error="false" data-empty-state="true" aria-invalid="false" required="" aria-label="E-mail" type="email" class="sjImZoO has-custom-focus" value=""/></div></div></div><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__0oqQvY" data-hook="field-error-email_443e"></div></div><div style="grid-row:1 / span 1;grid-column:9 / span 4;display:flex;align-items:flex-end"></div><div style="grid-row:2 / span 1;grid-column:9 / span 4" data-hook="form-field-d5df37db-369b-4f3c-f561-579e39eeee46" data-field-type="SUBMIT_BUTTON"><div class=""><button data-fullwidth="false" data-mobile="false" data-hook="submit-button" style="--wix-ui-tpa-button-font-size-default:16px;--wix-ui-tpa-button-line-height-default:1.5em" aria-live="assertive" type="button" class="s__3DOwO7 sFTe_V3 sWHTiwe ojChOw_---paddingMode-16-explicitPaddings ojChOw_--wrapContent ojChOw_---hoverStyle-9-underline spPayPE ohrgDww--upgrade sgKo7D0 sasFW9G" data-focusable-focus="false" data-focusable-focus-visible="false" tabindex="0" aria-disabled="false"><span class="sezcxt9 sewooAr">S'ABONNER</span></button></div></div></div></div></div><div role="region" aria-live="polite"><div style="transition:opacity 350ms ease-in-out;opacity:0"></div></div></div></fieldset></form></div></div></div></div></div></div></div><div id="comp-m8omcigd2_r_comp-m8j7owsd" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m8j7owsd-container comp-m8omcigd2_r_comp-m8j7owsd wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m8j7o6oq" class="comp-m8omcigd2_r_comp-m8j7o6oq wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcigd2_r_comp-m8j7o6oq" class="iL7Pq5 gx51wo"> | |
| 2389 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""> | |
| 2390 | + <g> | |
| 2391 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 2392 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 2393 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 2394 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 2395 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 2396 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 2397 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 2398 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 2399 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 2400 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 2401 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 2402 | + </g> | |
| 2403 | +</svg> | |
| 2404 | +</div></a></div><nav id="comp-m8omcigd2_r_comp-m2y10ib8" aria-label="Site" class="d2V6sy comp-m8omcigd2_r_comp-m2y10ib8 wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcigd2_r_comp-mbweuill"></div></div></div></div><div id="comp-m8omcigd2_r_comp-kd5pdf7t" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-kd5pdf7t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text"><span class="wixui-rich-text__text">© S&F Gestion. Par <span style="font-weight:bold;" class="wixui-rich-text__text"><a href="https://www.justsimpleweb.com/" target="_blank" rel="noreferrer noopener" class="wixui-rich-text__text">Just Simple Web.</a></span></span></p></div></div></section></footer><div id="comp-m8omcih716-pinned-layer" class="comp-m8omcih716-pinned-layer QED8q1"><div id="comp-m8omcih716" class="comp-m8omcih716 S829f_ comp-m8omcih716-container" slots="[object Object]" wix="[object Object]"><div id="comp-m8omcih716_r_comp-kd5px9hr" class="vO4l6e"><div id="overlay-comp-m8omcih716_r_comp-kd5px9hr" class="KyTZlx"></div><div id="container-comp-m8omcih716_r_comp-kd5px9hr" class="V1WvhC" data-block-level-container="MenuContainer"><div class="qINwWP"></div><div id="inlineContentParent-comp-m8omcih716_r_comp-kd5px9hr" class="dz6k8U"><div class="comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper dz6k8U wixui-mobile-menu ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="dialog" aria-label="Site navigation" class="comp-m8omcih716_r_comp-kd5px9hr-container"><nav id="comp-m8omcih716_r_comp-kd5px9kk" aria-label="Site" class="d2V6sy comp-m8omcih716_r_comp-kd5px9kk wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><button id="comp-m8omcih716_r_comp-kkmqi5tc" class="comp-m8omcih716_r_comp-kkmqi5tc wixui-vector-image"><div data-testid="svgRoot-comp-m8omcih716_r_comp-kkmqi5tc" class="iL7Pq5 gx51wo LXgYyC"> | |
| 2405 | +<svg preserveAspectRatio="none" data-bbox="65.35 65.35 69.3 69.3" viewBox="65.35 65.35 69.3 69.3" xmlns="http://www.w3.org/2000/svg" data-type="shape" role="img" aria-label="Close Site Navigation"> | |
| 2406 | + <g> | |
| 2407 | + <path d="M134.65 128.99L105.66 100l28.99-28.99-5.66-5.66L100 94.34 71.01 65.35l-5.66 5.66L94.34 100l-28.99 28.99 5.66 5.66L100 105.66l28.99 28.99 5.66-5.66z"></path> | |
| 2408 | + </g> | |
| 2409 | +</svg> | |
| 2410 | +</div></button></div></div></div></div></div></div></div><div id="comp-m8omcih82-pinned-layer" class="comp-m8omcih82-pinned-layer QED8q1"><div id="comp-m8omcih82" style="display:none"></div></div><div id="comp-m8oopad5-pinned-layer" class="comp-m8oopad5-pinned-layer QED8q1"><div id="comp-m8oopad5" style="display:none"></div></div><div id="comp-mfl8zvjs-pinned-layer" class="comp-mfl8zvjs-pinned-layer QED8q1"><div id="comp-mfl8zvjs" style="display:none"></div></div></div></div></div></div></div><div id="comp-m9cxxt3r-pinned-layer" class="comp-m9cxxt3r-pinned-layer QED8q1"><div id="comp-m9cxxt3r" class="comp-m9cxxt3r S829f_ comp-m9cxxt3r-container" slots="[object Object]" wix="[object Object]"><div id="comp-m9cxxt3r_r_comp-m9cxxr9c" class="chBh7 comp-m9cxxt3r_r_comp-m9cxxr9c mqeQ0"><iframe class="UkML6" title="Wix Chat" aria-label="Wix Chat" scrolling="no" allowfullscreen="" allowtransparency="true" allowvr="true" frameBorder="0" allow="clipboard-write;autoplay;camera;microphone;geolocation;vr"></iframe></div></div></div></div></div><div id="SCROLL_TO_BOTTOM" class="qe3oTb ignore-focus SCROLL_TO_BOTTOM" role="region" tabindex="-1" aria-label="bottom of page"><span class="TvbeET">bottom of page</span></div></div></div> | |
| 2411 | + | |
| 2412 | +<script id="wix-skip-played-animations"> | |
| 2413 | + window.__pageRevealPromise && window.__pageRevealPromise.then(function() { | |
| 2414 | + requestAnimationFrame(function() { | |
| 2415 | + try { | |
| 2416 | + var stored = sessionStorage.getItem('wix-motion-played-animations'); | |
| 2417 | + if (stored) { | |
| 2418 | + var played = JSON.parse(stored); | |
| 2419 | + for (var compId in played) { | |
| 2420 | + if (played[compId]) { | |
| 2421 | + var el = document.getElementById(compId); | |
| 2422 | + if (el) { | |
| 2423 | + el.dataset.motionEnter = 'done'; | |
| 2424 | + } | |
| 2425 | + } | |
| 2426 | + } | |
| 2427 | + } | |
| 2428 | + } catch (e) {} | |
| 2429 | + }); | |
| 2430 | + }); | |
| 2431 | +</script> | |
| 2432 | + | |
| 2433 | + <script type="application/json" id="wix-fedops">{"data":{"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"b3c3f81c-743b-46c1-8269-545c5f5f3656","isSEO":false,"appNameForBiEvents":"wix-studio"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","isInSEO":false,"platformOnSite":true}}</script> | |
| 2434 | + <script>window.fedops = JSON.parse(document.getElementById('wix-fedops').textContent)</script> | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js">(()=>{"use strict";var e={},r={};function t(i){var n=r[i];if(void 0!==n)return n.exports;var o=r[i]={exports:{}};return e[i](o,o.exports,t),o.exports}t.rv=()=>"1.6.8",t.ruid="bundler=rspack@1.6.8";let i="unknown",n=e=>{let r,t,n=(r=e.cache,t=e.varnish,`${r||i},${t||i}`);return{caching:n,isCached:n.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}};function o(){return"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let r=16*Math.random()|0;return("x"===e?r:3&r|8).toString(16)})}let a=/Mobile|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i,s=/iPhone|iPad|iPod/i,c=e=>!!e&&s.test(e);!function(){var e;let r,{site:t,rollout:s,fleetConfig:d,requestUrl:l,isInSEO:p,shouldReportErrorOnlyInPanorama:u}=window.fedops.data,m=(e=>{let{userAgent:r}=e.navigator;return/instagram.+google\/google/i.test(r)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(r)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:r}=window;if(!e||!r)return"document";let{webdriver:t,userAgent:i,plugins:n,languages:o}=r;if(t)return"webdriver";if(!n||Array.isArray(n))return"plugins";if(Object.getOwnPropertyDescriptor(n,"0")?.writable)return"plugins-extra";if(!i)return"userAgent";if(i.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!o||0===o.length||!Object.isFrozen(o))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:r}=e;if(r&&/ (\(internal\/)|(\(?file:\/)/.test(r))return"stack"}}return""})()||(p?"seo":""),w=!!m,{isCached:h,caching:f,microPop:g}=((e,r)=>{let t,o=(e=>{let r;try{r=e()}catch{r=[]}let t=r.reduce((e,r)=>(e[r.name]=r.description,e),{});return{cache:t.cache,varnish:t.varnish,microPop:t.dc}})(r);if(o.cache||o.varnish)return n({cache:o.cache||i,varnish:o.varnish||i,microPop:o.microPop});let a=(t=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&t.length?{cache:t[1],varnish:t[2]||i,microPop:t[3]}:null;return a?n(a):{caching:i,isCached:!1}})(document.cookie,()=>performance.getEntriesByType("navigation")[0].serverTiming||[]),v={WixSite:1,UGC:2,Template:3}[t.siteType]||0,x=t.appNameForBiEvents,{isDACRollout:y,siteAssetsVersionsRollout:S}=s,I=+!!y,$=+!!S,b=0===d.code||1===d.code?d.code:null,_=2===d.code,P=Date.now()-window.initialTimestamps.initialTimestamp,O=Math.round(performance.now()-(()=>{try{let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e.activationStart??0}catch{}return 0})()),{visibilityState:T}=document,{fedops:R,addEventListener:k,thunderboltVersion:A}=window;R.apps=R.apps||{},R.apps[x]={startLoadTime:O},R.sessionId=t.sessionId,R.vsi=o(),R.is_cached=h,R.phaseStarted=C(28),R.phaseEnded=C(22),performance.mark("[cache] "+f+(g?" ["+g+"]":"")),R.reportError=(e,r="load")=>{let t=e?.reason||e?.message;t?(u||N(26,`&errorInfo=${t}&errorType=${r}`),E({error:{name:r,message:t,stack:e?.stack}})):e.preventDefault()},k("error",R.reportError),k("unhandledrejection",R.reportError);let M=!1;function N(e,r=""){if(l.includes("suppressbi=true"))return;var i="//frog.wix.com/bolt-performance?src=72&evid="+e+"&appName="+x+"&is_rollout="+b+"&is_company_network="+_+"&is_sav_rollout="+$+"&is_dac_rollout="+I+"&dc="+t.dc+(g?"µPop="+g:"")+"&is_cached="+h+"&msid="+t.metaSiteId+"&session_id="+window.fedops.sessionId+"&ish="+w+"&isb="+w+(w?"&isbr="+m:"")+"&vsi="+window.fedops.vsi+"&caching="+f+(M?",browser_cache":"")+"&pv="+T+"&pn=1&v="+A+"&url="+encodeURIComponent(l)+"&client_url="+encodeURIComponent(window.location.href)+"&st="+v+`&ts=${P}&tsn=${O}`+r;let n=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{n=navigator.sendBeacon(i)}catch{}n||(new Image().src=i)}function E({transaction:e,error:r}){let i=[{fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",componentId:`${"Studio"===window.fedops.data.site.editorName?"wix-studio":`thunderbolt${window.fedops.data.site.isResponsive?"-responsive":""}`}`,platform:"viewer",msid:window.fedops.data.site.metaSiteId,sessionId:window.fedops.vsi,sessionTime:Date.now()-window.initialTimestamps.initialTimestamp,logLevel:r?"ERROR":"INFO",message:r?.message??(e?.name&&`${e.name} START`),errorName:r?.name,errorStack:r?.stack,transactionName:e?.name,transactionAction:e&&"START",isSsr:!1,dataCenter:t.dc,isCached:!!h,isRollout:!!b,isHeadless:!!w,isDacRollout:!!I,isSavRollout:!!$,isCompanyNetwork:!!_}];try{let e=JSON.stringify({messages:i});return navigator.sendBeacon("https://panorama.wixapps.net/api/v1/bulklog",e)}catch(e){console.error(e)}}function C(e){return(r,t)=>{let i=Date.now()-P,n=`&name=${r}&duration=${i}`,o=t&&t.paramsOverrides?Object.keys(t.paramsOverrides).map(e=>e+"="+t.paramsOverrides[e]).join("&"):"";N(e,o?`${n}&${o}`:n)}}if(k("pageshow",({persisted:e})=>{e&&!M&&(M=!0,R.is_cached=!0)},!0),window.__browser_deprecation__)return;let D=document.referrer?`&document_referrer=${document.referrer}`:"",U=window.sessionStorage.getItem("isMpa"),B=U?`&isMpa=${U}`:"";U&&window.sessionStorage.removeItem("isMpa");let W=window.sessionStorage.getItem("mpaSessionId");W||(W=o(),window.sessionStorage.setItem("mpaSessionId",W)),window.fedops.mpaSessionId=W;let j=((e,r=!1)=>{if(!e)return 1;let t=e.navigator?.userAgent||"",i=e.devicePixelRatio||1;if(c(t))return e.visualViewport?.scale||1;if((e=>!!e&&!!e&&a.test(e)&&!c(e))(t)){let e,t;if(!r)return 1;let n=(()=>{try{let e=localStorage.getItem("wix_dpr_baseline");if(!e)return null;let r=Number(e);return r>0?{dpr:r}:null}catch{return null}})();return n?(e=i,t=n.dpr,!e||!t||t<=0||e<=t?1:Math.round(e/t*100)/100):1}return((e,r=0,t=0)=>{if(!e||!r||!t)return 1;let i=e&&r&&t?Math.trunc(e*r)<=t?1:2:1;return!i||e<=i?1:Math.round(e/i*100)/100})(i,e.innerWidth,e.outerWidth)})(window)>1,F=(e=window,r=e.visualViewport?.scale,{devicePixelRatio:e.devicePixelRatio||1,innerWidth:e.innerWidth,outerWidth:e.outerWidth,...null!=r?{visualViewportScale:r}:{}});N(21,`&platformOnSite=${window.fedops.data.platformOnSite}&hasInitialZoom=${j}&infoInitialZoom=${encodeURIComponent(JSON.stringify(F))}&mpaSessionId=${W}${D}${B}`),E({transaction:{name:"PANORAMA_COMPONENT_LOAD"}})}()})(); | |
| 2438 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js.map</script> | |
| 2439 | + | |
| 2440 | + | |
| 2441 | + <!-- Polyfills check --> | |
| 2442 | + <script> | |
| 2443 | + if ( | |
| 2444 | + typeof Promise === 'undefined' || | |
| 2445 | + typeof Set === 'undefined' || | |
| 2446 | + typeof Object.assign === 'undefined' || | |
| 2447 | + typeof Array.from === 'undefined' || | |
| 2448 | + typeof Symbol === 'undefined' | |
| 2449 | + ) { | |
| 2450 | + // send bi in order to detect the browsers in which polyfills are not working | |
| 2451 | + window.fedops.phaseStarted('missing_polyfills') | |
| 2452 | + } | |
| 2453 | + </script> | |
| 2454 | + | |
| 2455 | + | |
| 2456 | +<!-- initCustomElements # 1--> | |
| 2457 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js">(()=>{"use strict";var e,r,o,a,t,i,c,n={},d={};function f(e){var r=d[e];if(void 0!==r)return r.exports;var o=d[e]={id:e,loaded:!1,exports:{}};return n[e].call(o.exports,o,o.exports,f),o.loaded=!0,o.exports}if(f.m=n,f.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return f.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,f.t=function(o,a){if(1&a&&(o=this(o)),8&a||"object"==typeof o&&o&&(4&a&&o.__esModule||16&a&&"function"==typeof o.then))return o;var t=Object.create(null);f.r(t);var i={};e=e||[null,r({}),r([]),r(r)];for(var c=2&a&&o;("object"==typeof c||"function"==typeof c)&&!~e.indexOf(c);c=r(c))Object.getOwnPropertyNames(c).forEach(e=>{i[e]=()=>o[e]});return i.default=()=>o,f.d(t,i),t},f.d=(e,r)=>{for(var o in r)f.o(r,o)&&!f.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},f.f={},f.e=e=>Promise.all(Object.keys(f.f).reduce((r,o)=>(f.f[o](e,r),r),[])),f.u=e=>"6948"===e?"thunderbolt-commons.9eb9a4be.bundle.min.js":"3033"===e?"fastdom.inline.48a8bd4b.bundle.min.js":"1619"===e?"custom-element-utils.inline.bec24b26.bundle.min.js":"5205"===e?"render-indicator.inline.df41a0e9.bundle.min.js":"7151"===e?"version-indicator.inline.704acef2.bundle.min.js":"6008"===e?"bi-common.inline.24faadf6.bundle.min.js":""+(({1059:"santa-platform-utils",1090:"speculationRules",1116:"passwordProtectedPage",1122:"group_19",1211:"siteUrlService",1278:"group_24",131:"siteThemeService",1353:"pageContextService",1374:"editorWixCodeSdk",1438:"sdkStateService",1522:"builderContextProviders",1533:"merge-mappers",1538:"businessLogger",1611:"group_44",1638:"quickActionBar",1788:"qaApi",1791:"businessLoggerService",1799:"BackgroundLayer",180:"urlService",1802:"provideCssService",1818:"Repeater_FixedColumns",182:"consentPolicy",1869:"windowScroll",1899:"platformSiteBusinessLoggerService",1932:"customCss",1951:"group_45",1969:"wixEcomFrontendWixCodeSdk",2017:"debug",2031:"platformInteractionsService",2089:"group_47",2122:"siteDynamicRouteService",2130:"ForwardRef",2198:"platformDynamicRouteService",2214:"siteConfigurationService",2220:"group_31",2221:"anchorsService",2226:"translationsService",2242:"builderModuleLoader",2303:"externalServices",2304:"TPAModal",2442:"group_37",2463:"siteTopologyService",2570:"thunderbolt-components-registry",2609:"imagePlaceholder",2616:"linkUtilsService",2624:"group_2",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",2771:"publicApiCallerService",28:"thunderbolt-components-registry-builder",2859:"platformEnvironmentService",2867:"namedSignalsService",2870:"platformNamedSignalsService",2880:"environmentService",294:"stores",2996:"seoService",3026:"lightboxService",3187:"businessManager",3220:"platformPublicApiCallerService",3221:"multilingual",325:"servicesManager",3336:"platformExperimentsService",3370:"domSelectors",338:"platformSiteTopologyService",3399:"platformSiteDynamicRouteService",3407:"clientSdk",3531:"panorama",3556:"warmupData",3607:"UnauthorizedComponent",3654:"ssrCache",3714:"seo-api-converters",3801:"wixDomSanitizer",3872:"siteMembers",3884:"tpaModuleProvider",3894:"protectedPages",3937:"siteRendererConfigurationService",3968:"platformEditorContextService",3979:"dynamicPages",399:"searchBox",3992:"componentsqaapi",3996:"environmentWixCodeSdk",4134:"group_4",4183:"svgLoader",419:"TPAPopup",4217:"group_21",4218:"group_0",4310:"becky-css",4331:"platform",4345:"dashboardWixCodeSdk",4354:"editorElementsDynamicTheme",4443:"pagesService",4444:"siteExperimentsService",4456:"sitePagesService",4499:"siteScrollBlockerService",4675:"stickyToComponent",470:"rendererConfigurationService",4708:"reporter-api",477:"group_32",4803:"dynamicRouteService",4819:"group_35",4990:"accessibility",5002:"group_28",5067:"accessibilityBrowserZoom",5154:"servicesManagerReact",5183:"renderIndicator",5187:"group_7",5213:"scrollToAnchor",5217:"siteRenderingContextService",5221:"containerSliderService",5238:"triggersAndReactions",5289:"SiteStyles",5296:"platformPubsub",5298:"assetsLoader",5363:"environment",5391:"widgetWixCodeSdk",5474:"platformPageContextService",5581:"platformRenderingContextService",5675:"group_41",569:"siteMembersService",572:"animationsWixCodeSdk",5735:"platformSiteSiteThemeService",5745:"ByocStyles",5750:"platformSiteMembersService",5761:"group_10",5794:"seo-api",5837:"group_14",5850:"siteBusinessLoggerService",5863:"appMonitoring",5874:"navigation",5901:"group_5",5976:"AppPart",6070:"platformSiteInteractionsService",6095:"styleUtilsService",6103:"usedPlatformApis",6134:"routerService",6135:"customUrlMapper",6155:"imagePlaceholderService",6182:"motion",6218:"group_11",6258:"group_20",6285:"versionIndicator",6336:"siteSiteThemeService",6428:"ContentReflowBanner",6453:"platformRendererConfigurationService",6526:"siteDeviceInfoService",6647:"mobileFullScreen",6715:"feedback",6732:"siteProvideCssService",6749:"router",6839:"platformFedopsLoggerService",6891:"group_38",6979:"consentPolicyService",6992:"platformTranslationsService",700:"module-executor",7016:"externalComponent",7109:"group_43",7141:"group_50",7146:"serviceRegistrar",7200:"canvas",7233:"FontRulersContainer",7284:"widget",7291:"platformMultilingualService",7356:"group_48",7360:"AppPart2",7482:"vsm-css",7502:"group_42",7538:"group_8",7554:"headAppenderService",7575:"renderer",7644:"group_6",7716:"group_40",7726:"TPAUnavailableMessageOverlay",7729:"tpa",7796:"Repeater_FluidColumns",7801:"testApi",7859:"siteMembersWixCodeSdk",7862:"platformLocaleService",7896:"platformSiteUrlService",7921:"interactions",7981:"domStore",8051:"animations",8207:"FontFaces",821:"group_25",8211:"cyclicTabbingService",8255:"platformRouterService",8277:"pageAnchors",8319:"platformSitePagesService",8332:"platformSiteThemeService",8339:"platformLinkUtilsService",8402:"platformConfigurationService",8428:"containerSlider",8547:"group_49",8559:"TPAWorker",8574:"builderComponent",858:"fedopsLoggerService",8634:"platformDeviceInfoService",8656:"RemoteRefDeadComp",8662:"GhostComp",8678:"cyclicTabbing",87:"ooi",8729:"group_9",8742:"topologyService",8770:"platformStyleUtilsService",8897:"siteAboveTheFoldService",8919:"group_3",8932:"group_39",897:"group_29",8970:"contentReflow",898:"group_46",906:"onloadCompsBehaviors",9081:"group_18",9091:"platformTopologyService",9111:"BuilderComponentDeadComp",9132:"siteEditorContextService",9134:"group_36",9182:"group_51",9214:"multilingualService",9270:"siteScrollBlocker",9316:"platformPagesService",9387:"group_27",9395:"popups",9421:"provideComponentService",9467:"platformSdkStateService",95:"componentsLoader",959:"group_23",9740:"wix-seo-SEO_DEFAULT",9763:"group_30",9764:"platformConsentPolicyService",9768:"group_22",9779:"tslib.inline",9794:"siteLocaleService",9845:"routerFetch",9863:"tpaWidgetNativeDeadComp",9899:"siteInteractionsService",9980:"mpaNavigation"})[e]||e)+"."+({1059:"97687ea7",1090:"851746fd",1116:"ca8d2b5a",1122:"91a95564",1171:"2a59485b",1193:"2569022a",1211:"e04e6b11",1239:"13b3236c",1278:"973ec0eb",131:"cfa0ee23",1353:"8e408c09",1374:"038d9db5",1438:"e883b66a",1463:"75cc62bf",1522:"0e729e1b",1533:"5cea6f9f",1538:"b3c0de71",1546:"633fdeb7",1567:"8a2ed6ac",1593:"185974ae",1611:"32da439a",1638:"e48f9c16",1788:"54c48f6e",1791:"2d664784",1799:"c6051cdc",180:"646756e1",1802:"3df59c19",1818:"82eb4dab",182:"a987db6a",1869:"94e57fc8",1899:"1b2057a6",1932:"f836d8c7",1951:"c1314395",196:"baa4a8cb",1962:"e93dd1da",1969:"62ed7f20",1997:"219fdc2a",2017:"b53af7c0",203:"93b8a21e",2031:"d22bb148",2046:"c3b0bdb6",2089:"84e4b439",2122:"cf9d7361",2130:"972f1da6",2198:"dcdf55cd",2214:"b3407eb8",2220:"820e7611",2221:"2b2254e2",2226:"d3f0a0ce",2242:"b26ca23d",2303:"a9aa058b",2304:"1c4e2cd1",2355:"dff147c9",2442:"22be02da",2463:"0391096e",2538:"bed4d851",2559:"35044fa3",2570:"5b11072b",2609:"3c11dd4b",2616:"89b26de8",2624:"910667fd",2639:"7853b464",2689:"fa382800",2725:"6b13159c",2735:"4bd510e1",2771:"da04ce9a",2777:"337d02e4",28:"6b469a9d",2859:"2b9317db",2867:"413074b3",2870:"4e4d5f25",2880:"676d132e",294:"271cca5b",2996:"c651b2c6",3026:"b35591f5",3187:"6bd030ea",3220:"4716e932",3221:"9d540a42",325:"97378610",330:"6686e7ed",3336:"da9f5032",3370:"1b55da8c",338:"7eda8ac1",3399:"ab0972b9",3407:"f155b667",3415:"27e0927d",3456:"4a19a8fa",3480:"987f1496",3531:"a27650b3",3556:"780ab490",3560:"1762fb1e",3583:"f8ed7ce7",3600:"83d984c4",3607:"8e13c2dd",3634:"94e30248",3654:"f7fb72e6",3714:"2cc9a061",3723:"af439be2",3801:"34d4abc7",3872:"3aafb18a",3884:"51ac9350",3894:"6b5d83a2",3937:"e6df8159",3968:"416cce38",3979:"4ff4e6f5",399:"b003db84",3992:"17ef48ef",3996:"566c4d0f",4134:"097eac4d",4183:"eaac3f9d",419:"a13a7947",4217:"cb838eb5",4218:"b58e75e0",4310:"ac0b3c00",4331:"d1162e0c",4345:"de335548",4354:"89ba8f0a",437:"748f01d1",4443:"cdab3cff",4444:"681aa90e",4456:"d8cb8478",4499:"240cf11b",4675:"726f62ad",470:"ef2ebe53",4708:"71a5ef2b",477:"71b56717",4803:"824ca8f9",4819:"35cb204d",4980:"cbd2ff42",4990:"e4888b8e",5002:"517aa7aa",5028:"dcbabd4f",5067:"f43a588a",5154:"2187b4f5",5183:"c95e75a9",5187:"0a21109c",5192:"cc825f45",5213:"bd63e157",5217:"63721a41",5221:"fec3cd3a",5238:"2c5caf8e",5267:"a4e6564b",5289:"a8b3f792",5296:"d41c28b7",5298:"664431f5",5363:"7ac3f543",5391:"c191ad97",5474:"55cfd378",5539:"4aa2904e",5581:"256b7c35",5675:"fdc7f282",569:"ed1463fc",572:"9f05a568",5735:"5a3cfec9",5745:"4ac8a223",5750:"d471f2af",5761:"d3c97b81",5794:"416b98a6",5837:"ce4fa204",5850:"333eb10e",5863:"f7f650a3",5874:"eba89c08",5901:"3acec901",5976:"6a8402a6",6070:"0d827fa3",6086:"61c45f4e",6095:"98a18ef2",6103:"2fac58dc",6134:"664e9f31",6135:"64f7515a",6155:"c6a1d133",6182:"a51fa0ca",6198:"ce015fff",6218:"18733d1a",6223:"f63c905f",6258:"2588c8a2",6285:"a8fe3456",6336:"6721363c",6428:"dffb6c1d",6453:"9f3a14c4",6474:"a86b17b7",6526:"0362d8ae",6647:"26016b15",6715:"9279907e",6732:"a3d18858",6749:"32a795c0",6753:"afdd5351",6839:"67cdc1b8",6891:"115f04f2",6979:"2e4502a1",6992:"b199b90f",700:"81334661",7016:"2e78f1f7",7109:"fe23d399",7127:"130b4e34",7141:"f473d1ca",7146:"3376f5cc",7186:"3bc830d5",7200:"bfd00c3f",7233:"f9341c8b",7257:"d71af493",7284:"e18b4874",7291:"e92e4859",7356:"8aafa69d",7360:"327ec15d",7482:"60a84d33",7502:"00edceba",7538:"9220f1c1",754:"9c52b3e5",7554:"86d2abc6",7575:"320eeef1",7644:"84400d58",7716:"b48b66d9",7726:"8e304d9b",7729:"6edeff75",7796:"6c0fb6fc",7801:"6a858867",7859:"957dbd39",7862:"1a0ce6ce",7896:"beb65605",7921:"b40c3cbb",7981:"ece10f59",8051:"d94f0463",8052:"29e79fff",81:"54fe0482",8155:"5a0141ee",8166:"deb21518",8167:"d0b9d59c",8207:"6c3c8de5",821:"724dfd3a",8211:"b9cd99de",8255:"40d16460",8268:"1028e4f2",8277:"5ac241c2",8319:"9851d9fb",8332:"a711845b",8339:"2ccc441f",8402:"b66f7f7f",8428:"8d71c775",8487:"a7db3a46",8547:"4392f91f",8559:"6b34ddad",8574:"ce42a157",858:"84374dc7",8634:"4b8ddea3",8656:"afc9c6e5",8662:"56f311d7",8678:"a0ad2cb2",87:"35dd0965",8729:"1b2aefb1",8742:"1abeb981",8770:"04ec9910",8863:"d3d9107f",8897:"c87fc374",8919:"a22a799c",8932:"dca0f811",8968:"069cf880",897:"5e0152fc",8970:"3a7544b6",898:"1fd93beb",9022:"f39960c7",906:"b457547d",9071:"a9e0d43e",9081:"dacb1809",9091:"8368e3eb",9111:"551bb85b",9132:"ffc79f2e",9134:"4b0f738f",9182:"49f9c6e7",9214:"2ca66c92",9269:"712ee971",9270:"d7ac0282",9316:"81af62d8",9387:"82d9db18",9395:"2b704839",9421:"5886298e",9467:"1b10e3bd",95:"037bc6b5",959:"82012ddd",9740:"6c1af586",9763:"9d2d4c10",9764:"58cf53ee",9768:"e636f159",9779:"cdbfecc7",9794:"56234440",9845:"c9420889",9863:"91e76dd4",9899:"6d018680",9954:"07a4e2f0",9980:"bd7e02b4"})[e]+".chunk.min.js",f.miniCssF=e=>"5205"===e?"render-indicator.inline.d4591556.min.css":"7151"===e?"version-indicator.inline.7046c9c0.min.css":""+({1799:"BackgroundLayer",1818:"Repeater_FixedColumns",2304:"TPAModal",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",419:"TPAPopup",5187:"group_7",5976:"AppPart",6428:"ContentReflowBanner",7233:"FontRulersContainer",7360:"AppPart2",7726:"TPAUnavailableMessageOverlay",7796:"Repeater_FluidColumns",9863:"tpaWidgetNativeDeadComp"})[e]+"."+({1799:"0748fc04",1818:"17a84fdd",2304:"e96a6f61",2689:"88cd9698",2735:"44f745b9",419:"82254d4c",5187:"c472a333",5976:"a5efb1fa",6428:"91e2605c",7233:"3c707054",7360:"e5b1bfd5",7726:"2ffa98e3",7796:"564dd9aa",9863:"6f11f5af"})[e]+".chunk.min.css",f.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),f.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o={},f.l=function(e,r,a,t){if(o[e])return void o[e].push(r);if(void 0!==a)for(var i,c,n=document.getElementsByTagName("script"),d=0;d<n.length;d++){var l=n[d];if(l.getAttribute("src")==e){i=l;break}}i||(c=!0,(i=document.createElement("script")).timeout=120,f.nc&&i.setAttribute("nonce",f.nc),i.src=e),o[e]=[r];var s=function(r,a){i.onerror=i.onload=null,clearTimeout(p);var t=o[e];if(delete o[e],i.parentNode&&i.parentNode.removeChild(i),t&&t.forEach(function(e){return e(a)}),r)return r(a)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),c&&document.head.appendChild(i)},f.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a=[],f.O=(e,r,o,t)=>{if(r){t=t||0;for(var i=a.length;i>0&&a[i-1][2]>t;i--)a[i]=a[i-1];a[i]=[r,o,t];return}for(var c=1/0,i=0;i<a.length;i++){for(var[r,o,t]=a[i],n=!0,d=0;d<r.length;d++)(!1&t||c>=t)&&Object.keys(f.O).every(e=>f.O[e](r[d]))?r.splice(d--,1):(n=!1,t<c&&(c=t));if(n){a.splice(i--,1);var l=o();void 0!==l&&(e=l)}}return e},f.p="https://static.parastorage.com/services/wix-thunderbolt/dist/",f.rv=()=>"1.6.8","undefined"!=typeof document){var l=function(e,r,o,a,t){var i=document.createElement("link");return i.rel="stylesheet",i.type="text/css",f.nc&&(i.nonce=f.nc),i.href=r,i.onerror=i.onload=function(o){if(i.onerror=i.onload=null,"load"===o.type)a();else{var c=o&&("load"===o.type?"missing":o.type),n=o&&o.target&&o.target.href||r,d=Error("Loading CSS chunk "+e+" failed.\\n("+n+")");d.code="CSS_CHUNK_LOAD_FAILED",d.type=c,d.request=n,i.parentNode&&i.parentNode.removeChild(i),t(d)}},o?o.parentNode.insertBefore(i,o.nextSibling):document.head.appendChild(i),i},s=function(e,r){for(var o=document.getElementsByTagName("link"),a=0;a<o.length;a++){var t=o[a],i=t.getAttribute("data-href")||t.getAttribute("href");if(i&&(i=i.split("?")[0]),"stylesheet"===t.rel&&(i===e||i===r))return t}for(var c=document.getElementsByTagName("style"),a=0;a<c.length;a++){var t=c[a],i=t.getAttribute("data-href");if(i===e||i===r)return t}},p={404:0};f.f.miniCss=function(e,r){if(p[e])r.push(p[e]);else 0!==p[e]&&({1799:1,1818:1,2304:1,2689:1,2735:1,419:1,5187:1,5205:1,5976:1,6428:1,7151:1,7233:1,7360:1,7726:1,7796:1,9863:1})[e]&&r.push(p[e]=new Promise(function(r,o){var a=f.miniCssF(e),t=f.p+a;if(s(a,t))return r();l(e,t,null,r,o)}).then(function(){p[e]=0},function(r){throw delete p[e],r}))}}t={404:0},f.f.j=function(e,r){var o=f.o(t,e)?t[e]:void 0;if(0!==o)if(o)r.push(o[2]);else if(404!=e){var a=new Promise((r,a)=>o=t[e]=[r,a]);r.push(o[2]=a);var i=f.p+f.u(e),c=Error();f.l(i,function(r){if(f.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+a+": "+i+")",c.name="ChunkLoadError",c.type=a,c.request=i,o[1](c)}},"chunk-"+e,e)}else t[e]=0},f.O.j=e=>0===t[e],i=(e,r)=>{var o,a,[i,c,n]=r,d=0;if(i.some(e=>0!==t[e])){for(o in c)f.o(c,o)&&(f.m[o]=c[o]);if(n)var l=n(f)}for(e&&e(r);d<i.length;d++)a=i[d],f.o(t,a)&&t[a]&&t[a][0](),t[a]=0;return f.O(l)},(c=self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).forEach(i.bind(null,0)),c.push=i.bind(null,c.push.bind(c)),f.ruid="bundler=rspack@1.6.8"})(); | |
| 2458 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js.map</script> | |
| 2459 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["3033"],{17709(t){!function(e){"use strict";var i=function(){},n=e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.msRequestAnimationFrame||function(t){return setTimeout(t,16)};function s(){this.reads=[],this.writes=[],this.raf=n.bind(e),i("initialized",this)}function r(t){t.scheduled||(t.scheduled=!0,t.raf(a.bind(null,t)),i("flush scheduled"))}function a(t){i("flush");var e,n=t.writes,s=t.reads;try{i("flushing reads",s.length),t.runTasks(s),i("flushing writes",n.length),t.runTasks(n)}catch(t){e=t}if(t.scheduled=!1,(s.length||n.length)&&r(t),e)if(i("task errored",e.message),t.catch)t.catch(e);else throw e}function u(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}s.prototype={constructor:s,runTasks:function(t){var e;for(i("run tasks");e=t.shift();)e()},measure:function(t,e){i("measure");var n=e?t.bind(e):t;return this.reads.push(n),r(this),n},mutate:function(t,e){i("mutate");var n=e?t.bind(e):t;return this.writes.push(n),r(this),n},clear:function(t){return i("clear",t),u(this.reads,t)||u(this.writes,t)},extend:function(t){if(i("extend",t),"object"!=typeof t)throw Error("expected object");var e=Object.create(this);return function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i])}(e,t),e.fastdom=this,e.initialize&&e.initialize(),e},catch:null},t.exports=e.fastdom=e.fastdom||new s}("undefined"!=typeof window?window:void 0!==this?this:globalThis)}}]); | |
| 2460 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js.map</script> | |
| 2461 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1619"],{26350(e,t,i){i.r(t),i.d(t,{STATIC_MEDIA_URL:()=>eH,fileType:()=>v,fittingTypes:()=>r,getData:()=>eR,MEDIA_ROOT_URL:()=>ez,sdk:()=>eB,isWEBP:()=>S,alignTypes:()=>h,htmlTag:()=>u,getPlaceholder:()=>eC,getResponsiveImageProps:()=>e$,upscaleMethods:()=>m,getFileExtension:()=>k,populateGlobalFeatureSupport:()=>q});let r={SCALE_TO_FILL:"fill",SCALE_TO_FIT:"fit",STRETCH:"stretch",ORIGINAL_SIZE:"original_size",TILE:"tile",TILE_HORIZONTAL:"tile_horizontal",TILE_VERTICAL:"tile_vertical",FIT_AND_TILE:"fit_and_tile",LEGACY_STRIP_TILE:"legacy_strip_tile",LEGACY_STRIP_TILE_HORIZONTAL:"legacy_strip_tile_horizontal",LEGACY_STRIP_TILE_VERTICAL:"legacy_strip_tile_vertical",LEGACY_STRIP_SCALE_TO_FILL:"legacy_strip_fill",LEGACY_STRIP_SCALE_TO_FIT:"legacy_strip_fit",LEGACY_STRIP_FIT_AND_TILE:"legacy_strip_fit_and_tile",LEGACY_STRIP_ORIGINAL_SIZE:"legacy_strip_original_size",LEGACY_ORIGINAL_SIZE:"actual_size",LEGACY_FIT_WIDTH:"fitWidth",LEGACY_FIT_HEIGHT:"fitHeight",LEGACY_FULL:"full",LEGACY_BG_FIT_AND_TILE:"legacy_tile",LEGACY_BG_FIT_AND_TILE_HORIZONTAL:"legacy_tile_horizontal",LEGACY_BG_FIT_AND_TILE_VERTICAL:"legacy_tile_vertical",LEGACY_BG_NORMAL:"legacy_normal"},n="fill",a="fill_focal",o="crop",s="legacy_crop",l="legacy_fill",h={CENTER:"center",TOP:"top",TOP_LEFT:"top_left",TOP_RIGHT:"top_right",BOTTOM:"bottom",BOTTOM_LEFT:"bottom_left",BOTTOM_RIGHT:"bottom_right",LEFT:"left",RIGHT:"right"},c={[h.CENTER]:{x:.5,y:.5},[h.TOP_LEFT]:{x:0,y:0},[h.TOP_RIGHT]:{x:1,y:0},[h.TOP]:{x:.5,y:0},[h.BOTTOM_LEFT]:{x:0,y:1},[h.BOTTOM_RIGHT]:{x:1,y:1},[h.BOTTOM]:{x:.5,y:1},[h.RIGHT]:{x:1,y:.5},[h.LEFT]:{x:0,y:.5}},d={center:"c",top:"t",top_left:"tl",top_right:"tr",bottom:"b",bottom_left:"bl",bottom_right:"br",left:"l",right:"r"},u={BG:"bg",IMG:"img",SVG:"svg"},m={AUTO:"auto",CLASSIC:"classic",SUPER:"super"},g={radius:"0.66",amount:"1.00",threshold:"0.01"},p={uri:"",css:{img:{},container:{}},attr:{img:{},container:{}},transformed:!1},f=[1.5,2,4],_={HIGH:{size:196e4,quality:90,maxUpscale:1},MEDIUM:{size:36e4,quality:85,maxUpscale:1},LOW:{size:16e4,quality:80,maxUpscale:1.2},TINY:{size:0,quality:80,maxUpscale:1.4}},b="HIGH",T="MEDIUM",I="contrast",E="brightness",w="saturation",L="blur",v={JPG:"jpg",JPEG:"jpeg",JPE:"jpe",PNG:"png",WEBP:"webp",WIX_ICO_MP:"wix_ico_mp",WIX_MP:"wix_mp",GIF:"gif",SVG:"svg",AVIF:"avif",UNRECOGNIZED:"unrecognized"};function A(e,...t){return function(...i){let r=i[i.length-1]||{},n=[e[0]];return t.forEach(function(t,a){let o=Number.isInteger(t)?i[t]:r[t];n.push(o,e[a+1])}),n.join("")}}function O(e){return e[e.length-1]}v.JPG,v.JPEG,v.JPE,v.PNG,v.GIF,v.WEBP;let y=[v.PNG,v.JPEG,v.JPG,v.JPE,v.WIX_ICO_MP,v.WIX_MP,v.WEBP,v.AVIF],C=[v.JPEG,v.JPG,v.JPE];function R(e,t,i){var n;return i&&t&&!(!(n=t.id)||!n.trim()||"none"===n.toLowerCase())&&Object.values(r).includes(e)}function M(e,t,i,r){var n;if(n=e,/(^https?)|(^data)|(^\/\/)/.test(n)||(S(e)||P(e))&&t&&!i)return!1;let a=y.includes(k(e)),o=!!G(e)&&!!(i||r);return a||o}function x(e){return k(e)===v.PNG}function S(e){return k(e)===v.WEBP}function G(e){return k(e)===v.GIF}function P(e){return k(e)===v.AVIF}let N=["/","\\","?","<",">","|","\u201C",":",'"'].map(encodeURIComponent),F=["\\.","\\*"];function k(e){return(/[.]([^.]+)$/.exec(e)&&/[.]([^.]+)$/.exec(e)[1]||"").toLowerCase()}function $(e,t,i,r,a){let o;return o=a===n?Math.max(i/e,r/t):"fit"===a?Math.min(i/e,r/t):1}function B(e,t,i,r,a,o){let{scaleFactor:s,width:l,height:h}=function(e,t,i,r,n){let a,o=i,s=r;if(a=$(e,t,i,r,n),"fit"===n&&(o=e*a,s=t*a),o&&s&&o*s>25e6){let i=Math.sqrt(25e6/(o*s));o*=i,s*=i,a=$(e,t,o,s,n)}return{scaleFactor:a,width:o,height:s}}(e=e||r.width,t=t||r.height,r.width*a,r.height*a,i);return function(e,t,i,r,a,o,s){let{optimizedScaleFactor:l,upscaleMethodValue:h,forceUSM:c}=function(e,t,i,r){if("auto"===r)return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1};if("super"===r)return{optimizedScaleFactor:O(f),upscaleMethodValue:2,forceUSM:!(f.includes(i)||i>O(f))};return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1}}(e,t,o,a),d=i,u=r;if(o<=l)return{width:d,height:u,scaleFactor:o,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!1};switch(s){case n:d=l/o*i,u=l/o*r;break;case"fit":d=e*l,u=t*l}return{width:d,height:u,scaleFactor:l,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!0}}(e,t,l,h,o,s,i)}function H(e){return e.alignment&&d[e.alignment]||d[h.CENTER]}function z(e){let t;return!e||"number"!=typeof e.x||isNaN(e.x)||"number"!=typeof e.y||isNaN(e.y)||(t={x:W(Math.max(0,Math.min(100,e.x))/100,2),y:W(Math.max(0,Math.min(100,e.y))/100,2)}),t}function U(e,t){let i=e*t;return i>_[b].size?b:i>_[T].size?T:i>_.LOW.size?"LOW":"TINY"}function W(e,t){let i=Math.pow(10,t||0);return(e*i/i).toFixed(t)}let Y={isMobile:!1},D=function(e,t){Y[e]=t};function q(){if("undefined"!=typeof window&&"undefined"!=typeof navigator){let e=window.matchMedia&&window.matchMedia("(max-width: 767px)").matches,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);D("isMobile",e&&t)}}function j(e,t){let i={css:{container:{}}},{css:n}=i,{fittingType:a}=e;switch(a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.LEGACY_STRIP_ORIGINAL_SIZE:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FIT:case r.LEGACY_STRIP_SCALE_TO_FIT:n.container.backgroundSize="contain",n.container.backgroundRepeat="no-repeat";break;case r.STRETCH:n.container.backgroundSize="100% 100%",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FILL:case r.LEGACY_STRIP_SCALE_TO_FILL:n.container.backgroundSize="cover",n.container.backgroundRepeat="no-repeat";break;case r.TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.TILE_VERTICAL:case r.LEGACY_STRIP_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.TILE:case r.LEGACY_STRIP_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_STRIP_FIT_AND_TILE:n.container.backgroundSize="contain",n.container.backgroundRepeat="repeat";break;case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.LEGACY_BG_NORMAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat"}switch(t.alignment){case h.CENTER:n.container.backgroundPosition="center center";break;case h.LEFT:n.container.backgroundPosition="left center";break;case h.RIGHT:n.container.backgroundPosition="right center";break;case h.TOP:n.container.backgroundPosition="center top";break;case h.BOTTOM:n.container.backgroundPosition="center bottom";break;case h.TOP_RIGHT:n.container.backgroundPosition="right top";break;case h.TOP_LEFT:n.container.backgroundPosition="left top";break;case h.BOTTOM_RIGHT:n.container.backgroundPosition="right bottom";break;case h.BOTTOM_LEFT:n.container.backgroundPosition="left bottom"}return i}let V={[h.CENTER]:"center",[h.TOP]:"top",[h.TOP_LEFT]:"top left",[h.TOP_RIGHT]:"top right",[h.BOTTOM]:"bottom",[h.BOTTOM_LEFT]:"bottom left",[h.BOTTOM_RIGHT]:"bottom right",[h.LEFT]:"left",[h.RIGHT]:"right"},Z={position:"absolute",top:"auto",right:"auto",bottom:"auto",left:"auto"};function J(e,t){let i={css:{container:{},img:{}}},{css:n}=i,{fittingType:a}=e,o=t.alignment;switch(n.container.position="relative",a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:e.parts&&e.parts.length?(n.img.width=e.parts[0].width,n.img.height=e.parts[0].height):(n.img.width=e.src.width,n.img.height=e.src.height);break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="contain",n.img.objectPosition=V[o]||"unset";break;case r.LEGACY_BG_NORMAL:n.img.width="100%",n.img.height="100%",n.img.objectFit="none",n.img.objectPosition=V[o]||"unset";break;case r.STRETCH:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="fill";break;case r.SCALE_TO_FILL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="cover"}if("number"==typeof n.img.width&&"number"==typeof n.img.height&&(n.img.width!==t.width||n.img.height!==t.height)){let e=Math.round((t.height-n.img.height)/2),i=Math.round((t.width-n.img.width)/2);Object.assign(n.img,Z,{[h.TOP_LEFT]:{top:0,left:0},[h.TOP_RIGHT]:{top:0,right:0},[h.TOP]:{top:0,left:i},[h.BOTTOM_LEFT]:{bottom:0,left:0},[h.BOTTOM_RIGHT]:{bottom:0,right:0},[h.BOTTOM]:{bottom:0,left:i},[h.RIGHT]:{top:e,right:0},[h.LEFT]:{top:e,left:0},[h.CENTER]:{width:t.width,height:t.height,objectFit:"none"}}[o])}return i}function X(e,t){let i,a={css:{container:{}},attr:{container:{},img:{}}},{css:o,attr:s}=a,{fittingType:l}=e,c=t.alignment,{width:d,height:u}=e.src;switch(o.container.position="relative",l){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.TILE:e.parts&&e.parts.length?(s.img.width=e.parts[0].width,s.img.height=e.parts[0].height):(s.img.width=d,s.img.height=u),s.img.preserveAspectRatio="xMidYMid slice";break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:s.img.width="100%",s.img.height="100%",s.img.transform="",s.img.preserveAspectRatio="";break;case r.STRETCH:s.img.width=t.width,s.img.height=t.height,s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="none";break;case r.SCALE_TO_FILL:if(M(e.src.id))s.img.width=t.width,s.img.height=t.height;else{var m;let e;m=t.width,e=$(d,u,m,t.height,n),i={width:Math.round(d*e),height:Math.round(u*e)},s.img.width=i.width,s.img.height=i.height}s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="xMidYMid slice"}if("number"==typeof s.img.width&&"number"==typeof s.img.height&&(s.img.width!==t.width||s.img.height!==t.height)){let e,i,n=0,a=0;l===r.TILE?(e=t.width%s.img.width,i=t.height%s.img.height):(e=t.width-s.img.width,i=t.height-s.img.height);let o=Math.round(e/2),d=Math.round(i/2);switch(c){case h.TOP_LEFT:n=0,a=0;break;case h.TOP:n=o,a=0;break;case h.TOP_RIGHT:n=e,a=0;break;case h.LEFT:n=0,a=d;break;case h.CENTER:n=o,a=d;break;case h.RIGHT:n=e,a=d;break;case h.BOTTOM_LEFT:n=0,a=i;break;case h.BOTTOM:n=o,a=i;break;case h.BOTTOM_RIGHT:n=e,a=i}s.img.x=n,s.img.y=a}return s.container.width=t.width,s.container.height=t.height,s.container.viewBox=["0 0",t.width,t.height].join(" "),a}function K(e,t){let i=B(e.src.width,e.src.height,"fit",t,e.devicePixelRatio,e.upscaleMethod);return{transformType:e.src.width&&e.src.height?n:"fit",width:Math.round(i.width),height:Math.round(i.height),alignment:d.center,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}function Q(e){return{transformType:o,x:Math.round(e.x),y:Math.round(e.y),width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}function ee(e,t,i){return"number"==typeof e&&!isNaN(e)&&0!==e&&e>=t&&e<=i}function et(e,t,i,o){var d,u,p,f,b,T,A;let R,Y=o?.isSEOBot??!1,D=function(e){if(C.includes(k(e)))return v.JPG;if(x(e))return v.PNG;if(S(e))return v.WEBP;if(G(e))return v.GIF;if(P(e))return v.AVIF;return v.UNRECOGNIZED}(t.id),q=function(e,t){let i=/\.([^.]*)$/,r=RegExp(`(${N.concat(F).join("|")})`,"g");if(t&&t.length){let e=t,n=t.match(i);return n&&y.includes(n[1])&&(e=t.replace(i,"")),encodeURIComponent(e).replace(r,"_")}let n=e.match(/\/(.*?)$/);return(n?n[1]:e).replace(i,"")}(t.id,t.name),j=Y?1:Math.min(i.pixelAspectRatio||1,2),V=k(t.id),Z=M(t.id,o?.hasAnimation,o?.allowAnimatedTransform,o?.allowFullGIFTransformation),J={fileName:q,fileExtension:V,fileType:D,fittingType:e,preferredExtension:V,src:{id:t.id,width:t.width,height:t.height,isCropped:!1,isAnimated:(d=t.id,u=o?.hasAnimation,R=S(d)||P(d),k(d)===v.GIF||R&&u)},focalPoint:{x:t.focalPoint&&t.focalPoint.x,y:t.focalPoint&&t.focalPoint.y},parts:[],devicePixelRatio:j,quality:0,upscaleMethod:o&&o.upscaleMethod&&m[o.upscaleMethod.toUpperCase()]||m.AUTO,progressive:!0,watermark:"",unsharpMask:{},filters:{},transformed:Z,allowFullGIFTransformation:o?.allowFullGIFTransformation,isPlaceholderFlow:o?.isPlaceholderFlow};if(Z){let e,d,u,m,y,C;!function(e,t,i){var o,d,u,m,g,p,f,_,b,T,I;let E,w,L,v,A,O;if(t.crop){let i,r;o=t.crop,i=Math.max(0,Math.min(t.width,o.x+o.width)-Math.max(0,o.x)),r=Math.max(0,Math.min(t.height,o.y+o.height)-Math.max(0,o.y)),(E=i&&r&&(t.width!==i||t.height!==r)?{x:Math.max(0,o.x),y:Math.max(0,o.y),width:i,height:r}:null)&&(e.src.width=E.width,e.src.height=E.height,e.src.isCropped=!0,e.parts.push(Q(E)))}switch(e.fittingType){case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:e.parts.push(K(e,i));break;case r.SCALE_TO_FILL:e.parts.push((g=e,p=i,w=B(g.src.width,g.src.height,n,p,g.devicePixelRatio,g.upscaleMethod),{transformType:(L=z(g.focalPoint))?a:n,width:Math.round(w.width),height:Math.round(w.height),alignment:H(p),focalPointX:L&&L.x,focalPointY:L&&L.y,upscale:w.scaleFactor>1,forceUSM:w.forceUSM,scaleFactor:w.scaleFactor,cssUpscaleNeeded:w.cssUpscaleNeeded,upscaleMethodValue:w.upscaleMethodValue}));break;case r.STRETCH:e.parts.push((f=e,_=i,v=$(f.src.width,f.src.height,_.width,_.height,n),(A={..._}).width=f.src.width*v,A.height=f.src.height*v,K(f,A)));break;case r.TILE_HORIZONTAL:case r.TILE_VERTICAL:case r.TILE:case r.LEGACY_ORIGINAL_SIZE:case r.ORIGINAL_SIZE:d=e.src,u=e.focalPoint,m=i.alignment,O=z(u)||function(e=h.CENTER){return c[e]}(m),E={x:Math.max(0,Math.min(d.width-i.width,O.x*d.width-i.width/2)),y:Math.max(0,Math.min(d.height-i.height,O.y*d.height-i.height/2)),width:Math.min(d.width,i.width),height:Math.min(d.height,i.height)},e.src.isCropped?(Object.assign(e.parts[0],E),e.src.width=E.width,e.src.height=E.height):e.parts.push(Q(E));break;case r.LEGACY_STRIP_TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_VERTICAL:case r.LEGACY_STRIP_TILE:case r.LEGACY_STRIP_ORIGINAL_SIZE:e.parts.push({transformType:s,width:Math.round((b=i).width),height:Math.round(b.height),alignment:H(b),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FIT:case r.LEGACY_STRIP_FIT_AND_TILE:e.parts.push({transformType:"fit",width:Math.round((T=i).width),height:Math.round(T.height),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FILL:e.parts.push({transformType:l,width:Math.round((I=i).width),height:Math.round(I.height),alignment:H(I),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1})}}(J,t,i),J.quality=function(e,t){let i=e.fileType===v.PNG,r=e.fileType===v.JPG,n=e.fileType===v.WEBP,a=e.fileType===v.AVIF;if(r||i||n||a){let r=O(e.parts),n=_[U(r.width,r.height)].quality,a=t.quality&&t.quality>=5&&t.quality<=90?t.quality:n;return i?a+5:a}return 0}(J,p=(p=o)||{}),J.progressive=!1!==p.progressive,J.watermark=p.watermark,J.autoEncode=p.autoEncode??!0,J.encoding=p?.encoding,f=J,e="number"==typeof(T=(T=(b=p).unsharpMask)||{}).radius&&!isNaN(T.radius)&&T.radius>=.1&&T.radius<=500,d="number"==typeof T.amount&&!isNaN(T.amount)&&T.amount>=0&&T.amount<=10,u="number"==typeof T.threshold&&!isNaN(T.threshold)&&T.threshold>=0&&T.threshold<=255,J.unsharpMask=e&&d&&u?{radius:W(b.unsharpMask?.radius,2),amount:W(b.unsharpMask?.amount,2),threshold:W(b.unsharpMask?.threshold,2)}:"number"==typeof(A=(A=b.unsharpMask)||{}).radius&&!isNaN(A.radius)&&0===A.radius&&"number"==typeof A.amount&&!isNaN(A.amount)&&0===A.amount&&"number"==typeof A.threshold&&!isNaN(A.threshold)&&0===A.threshold||(m=O(f.parts)).scaleFactor>=1&&!m.forceUSM&&"fit"!==m.transformType?void 0:g,y=p.filters||{},C={},ee(y[I],-100,100)&&(C[I]=y[I]),ee(y[E],-100,100)&&(C[E]=y[E]),ee(y[w],-100,100)&&(C[w]=y[w]),ee(y.hue,-180,180)&&(C.hue=y.hue),ee(y[L],0,100)&&(C[L]=y[L]),J.filters=C}return J}function ei(e,t,i){let n={...i},a=Y.isMobile;switch(e){case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:n.width=Math.min(a?1e3:1920,t.width),n.height=Math.min(a?1e3:1920,Math.round(n.width/(t.width/t.height))),n.pixelAspectRatio=1}return n}let er=A`fit/w_${"width"},h_${"height"}`,en=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,ea=A`fill/w_${"width"},h_${"height"},fp_${"focalPointX"}_${"focalPointY"}`,eo=A`crop/x_${"x"},y_${"y"},w_${"width"},h_${"height"}`,es=A`crop/w_${"width"},h_${"height"},al_${"alignment"}`,el=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,eh=A`,lg_${"upscaleMethodValue"}`,ec=A`,q_${"quality"}`,ed=A`,quality_auto`,eu=A`,usm_${"radius"}_${"amount"}_${"threshold"}`,em=A`,bl`,eg=A`,wm_${"watermark"}`,ep={[I]:A`,con_${"contrast"}`,[E]:A`,br_${"brightness"}`,[w]:A`,sat_${"saturation"}`,hue:A`,hue_${"hue"}`,[L]:A`,blur_${"blur"}`},ef=A`,enc_auto`,e_=A`,enc_avif`,eb=A`,enc_pavif`,eT=A`,pstr`,eI=A`,anm_all`;function eE(e,t,i,r={},h){if(M(t.id,r?.hasAnimation,r?.allowAnimatedTransform,r?.allowFullGIFTransformation)){if((S(t.id)||P(t.id))&&!r.allowWebpAvifTransforms){let{alignment:n,...a}=i;t.focalPoint={x:void 0,y:void 0},delete t?.crop,h=et(e,t,a,r)}else h=h||et(e,t,i,r);return function(e){let t=[];e.parts.forEach(e=>{switch(e.transformType){case o:t.push(eo(e));break;case s:t.push(es(e));break;case l:let i=el(e);e.upscale&&(i+=eh(e)),t.push(i);break;case"fit":let r=er(e);e.upscale&&(r+=eh(e)),t.push(r);break;case n:let h=en(e);e.upscale&&(h+=eh(e)),t.push(h);break;case a:let c=ea(e);e.upscale&&(c+=eh(e)),t.push(c)}});let i=t.join("/");if(e.quality&&(i+=ec(e)),e.unsharpMask&&(i+=eu(e.unsharpMask)),e.progressive||(i+=em(e)),e.watermark&&(i+=eg(e)),e.filters&&(i+=Object.keys(e.filters).map(t=>ep[t](e.filters)).join("")),e.fileType!==v.GIF&&("AVIF"===e.encoding?(i+=e_(e),i+=ed(e)):"PAVIF"===e.encoding?(i+=eb(e),i+=ed(e)):e.autoEncode&&(i+=ef(e))),e.src?.isAnimated&&e.transformed){let t=G(e.src.id),r=!0===e.isPlaceholderFlow,n=!0===e.allowFullGIFTransformation;r?i+=eT(e):t&&n&&(i+=eI(e))}return`${e.src.id}/v1/${i}/${e.fileName}.${e.preferredExtension}`}(h)}return t.id}let ew={[h.CENTER]:"50% 50%",[h.TOP_LEFT]:"0% 0%",[h.TOP_RIGHT]:"100% 0%",[h.TOP]:"50% 0%",[h.BOTTOM_LEFT]:"0% 100%",[h.BOTTOM_RIGHT]:"100% 100%",[h.BOTTOM]:"50% 100%",[h.RIGHT]:"100% 50%",[h.LEFT]:"0% 50%"},eL=Object.entries(ew).reduce((e,[t,i])=>(e[i]=t,e),{}),ev=[r.TILE,r.TILE_HORIZONTAL,r.TILE_VERTICAL,r.LEGACY_BG_FIT_AND_TILE,r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL,r.LEGACY_BG_FIT_AND_TILE_VERTICAL],eA=[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE,r.LEGACY_BG_NORMAL];function eO(e,t,{width:i,height:n}){return e===r.TILE&&t.width>i&&t.height>n}let ey={width:"100%",height:"100%"};function eC(e,t,i,n={}){var a;let o,{autoEncode:s=!0,isSEOBot:l,shouldLoadHQImage:h,hasAnimation:c,allowAnimatedTransform:d,encoding:u}=n;if(!R(e,t,i))return p;let m=d??!0,g=M(t.id,c,m);if(!g||h)return eR(e,t,i,{...n,autoEncode:s,useSrcset:g});let f={...i,...function(e,{width:t,height:i}){if(!t||!i){let r=t||Math.min(980,e.width),n=r/e.width;return{width:r,height:i||e.height*n}}return{width:t,height:i}}(t,i)},{alignment:_,htmlTag:b}=f,T=eO(e,t,f),I=function(e,t,{width:i,height:r},n=!1){var a,o;if(n)return{width:i,height:r};let s=!eA.includes(e),l=eO(e,t,{width:i,height:r}),h=!l&&ev.includes(e),c=h?t.width:i,d=h?t.height:r,u=s?(a=c,o=x(t.id),a>900?o?.05:.15:a>500?o?.1:.18:a>200?.25:1):1;return{width:l?1920:c*u,height:d*u}}(e,t,f,l),E=(a=f.width,l?0:ev.includes(e)?1:a>200?2:3),w=(o=ev.includes(e)&&!T,e===r.SCALE_TO_FILL||o?r.SCALE_TO_FIT:e),L=function(e,t,i,n="center"){let a={img:{},container:{}};if(e===r.SCALE_TO_FILL){var o;let e=t.focalPoint&&(o=t.focalPoint,eL[`${o.x}% ${o.y}%`]||"");t.focalPoint&&!e?a.img={objectPosition:function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(t,i,t.focalPoint)}:a.img={objectPosition:ew[e||n]}}else[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE].includes(e)?a.img={objectFit:"none",top:"auto",left:"auto",right:"auto",bottom:"auto"}:ev.includes(e)&&(a.container={backgroundSize:`${t.width}px ${t.height}px`});return a}(e,t,i,_),{uri:v}=eR(w,t,{...I,alignment:_,htmlTag:b},{autoEncode:s,filters:E?{blur:E}:{},hasAnimation:c,allowAnimatedTransform:m,encoding:u,isPlaceholderFlow:!0}),{attr:A={},css:O}=eR(e,t,{...f,alignment:_,htmlTag:b},{});return O.img=O.img||{},O.container=O.container||{},Object.assign(O.img,L.img,ey),Object.assign(O.container,L.container),{uri:v,css:O,attr:A,transformed:!0}}function eR(e,t,i,r){let n={};if(R(e,t,i)){var a;let o,s=ei(e,t,i),l=et(e,t,s,r);n.uri=eE(e,t,s,r,l),r?.useSrcset&&(n.srcset=(a=n,o=s.pixelAspectRatio||1,{dpr:[`${1===o?a.uri:eE(e,t,{...s,pixelAspectRatio:1},r)} 1x`,`${2===o?a.uri:eE(e,t,{...s,pixelAspectRatio:2},r)} 2x`]})),Object.assign(n,(s.htmlTag===u.BG?j:s.htmlTag===u.SVG?X:J)(l,s),{transformed:l.transformed})}else n=p;return n}function eM(e,t,i,r){if(R(e,t,i)){let n=ei(e,t,i),a=et(e,t,n,r);return{uri:eE(e,t,n,r||{},a)}}return{uri:""}}let ex="https://static.wixstatic.com/",eS="https://static.wixstatic.com/media/",eG=/^media\//i,eP="undefined"!=typeof window?window.devicePixelRatio:1,eN=(e,t)=>{let i=t&&t.baseHostURL;return i?`${i}${e}`:eG.test(e)?`${ex}${e}`:`${eS}${e}`};q();let eF="center",ek=[1920,1536,1366,1280,980],e$=(e,t,i)=>{let{displayMode:r,uri:n,width:a,height:o,name:s,crop:l,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,encoding:p,siteMargin:f,widthProportion:_,allowFullGIFTransformation:b,baseHostURL:T}=e;if(_){let e,g,I=(e="original_size"===r,g=a/o,ek.map((r,I)=>{let E=980===r,w=e=>E?t:_/100*(e-2*(f||0)),L=w(ek[I+1]),v=w(r),A=L/i,O=!(e||E)&&((e,t,i,r,n,a,o,s=eF)=>{if(e>t){let e=Math.round(r/(a/n)),t=Math.round(i/2-e/2);return s.includes("top")?t=0:s.includes("bottom")&&(t=i-e),{width:r,height:e,x:0,y:t}}{let e=Math.round(i/(n/o)),t=Math.round(r/2-e/2);return s.includes("left")?t=0:s.includes("right")&&(t=r-e),{width:e,height:i,x:t,y:0}}})(A,g,o,a,i,L,v,c),{srcset:y,fallbackSrc:C,css:R}=e$({displayMode:e?"original_size":E?"fill":"fit",uri:n,width:a,height:o,crop:l||O,name:s,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,encoding:p,allowFullGIFTransformation:b,baseHostURL:T},v,i);return e&&R&&(R.img.objectFit="cover"),{srcset:y||"",sizes:E?`${_}vw`:`${v}px`,media:`(max-width: ${r}px)`,fallbackSrc:C,imgStyle:R?.img}})).filter(Boolean).reverse();return{fallbackSrc:I[0].fallbackSrc,sources:I,css:I[0].imgStyle}}{let{srcset:e,css:f,uri:_}=eR(r,{id:n,width:a,height:o,name:s,crop:l,focalPoint:h},{width:t,height:i,alignment:c},{focalPoint:h,name:s,quality:d?.quality,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,useSrcset:!0,encoding:p,allowFullGIFTransformation:b}),I=T||eH,E=e?.dpr?.map(e=>/^[a-z]+:/.test(e)?e:`${I}${e}`);return{fallbackSrc:`${I}${_}`,srcset:E?.join(", ")||"",css:f}}};q();let eB={getScaleToFitImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FIT,{id:e,width:t,height:i,name:o&&o.name},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getScaleToFillImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:o&&o.name,focalPoint:{x:o&&o.focalPoint&&o.focalPoint.x,y:o&&o.focalPoint&&o.focalPoint.y}},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getCropImageURL:function(e,t,i,n,a,o,s,l,c,d){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:d&&d.name,crop:{x:n,y:a,width:o,height:s}},{width:l,height:c,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:d?.devicePixelRatio??eP},d).uri,d)}},eH=eS,ez=ex},55901(e,t,i){(0,i(16858).Rr)()},19787(e,t,i){var r=i(16858),n=i(99090);((e=window)=>{let{mediaServices:t,environmentConsts:i,requestUrl:a,staticVideoUrl:o}=e.customElementNamespace;(0,r.EH)(e,t,{...i,prefersReducedMotion:(0,n.O)(window,a),staticVideoUrl:o}),(0,r.jh)(e),(0,r.p7)(e,t,i)})(),window.resolveExternalsRegistryModule("imageClientApi")},16858(e,t,i){i.d(t,{_o:()=>s,NL:()=>O,yO:()=>w,vk:()=>c,EH:()=>k,KU:()=>l,Rr:()=>x,jh:()=>G,p7:()=>A,Aq:()=>h});var r=i(17709),n=i.n(r);let a=(e,t,i)=>{let r=1,n=0;for(let a=0;a<e.length;a++){let o=e[a];if(o>t||(n+=o)>t&&(r++,n=o,r>i))return!1}return!0};function o(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function s(){class e extends HTMLElement{setContainerHeight(e){this.style.setProperty("--flex-columns-height",`${e}px`)}removeContainerHeight(){this.style.removeProperty("--flex-columns-height")}getColumnCount(e){return parseInt(e.getPropertyValue("--flex-column-count"),10)}getRowGap(e){return parseInt(e.getPropertyValue("row-gap")||"0",10)}activate(){this.isActive=!0,this.attachObservers(),this.recalcHeight()}deactivate(){this.isActive=!1,this.detachHeightCalcObservers(),this.removeContainerHeight()}calcActive(){return"multi-column-layout"===getComputedStyle(this).getPropertyValue("--container-layout-type")}get itemsHeights(){return Array.from(this.children).map(e=>{let t=getComputedStyle(e),i=parseFloat(t.height||"0");return i+=parseFloat(t.marginTop||"0"),{height:i+=parseFloat(t.marginBottom||"0")}})}setIsActive(){let e=this.calcActive();this.isActive!==e&&(e?this.activate():this.deactivate())}connectedCallback(){this.cleanUp(),this.createObservers(),this.setIsActive(),window.document.body&&this.isActiveObserver?.observe(window.document.body)}disconnectedCallback(){this.cleanUp()}constructor(...e){super(...e),o(this,"containerWidthObserver",void 0),o(this,"mutationObserver",void 0),o(this,"isActiveObserver",void 0),o(this,"childResizeObserver",void 0),o(this,"containerWidth",0),o(this,"isActive",!1),o(this,"isDuringCalc",!1),o(this,"attachObservers",()=>{this.mutationObserver?.observe(this,{childList:!0,subtree:!0}),this.containerWidthObserver?.observe(this),Array.from(this.children).forEach(e=>{this.handleItemAdded(e)})}),o(this,"detachHeightCalcObservers",()=>{this.mutationObserver?.disconnect(),this.containerWidthObserver?.disconnect(),this.childResizeObserver?.disconnect()}),o(this,"recalcHeight",()=>{this.isActive&&n().measure(()=>{if(!this.isActive||this.isDuringCalc)return;this.isDuringCalc=!0;let e=getComputedStyle(this),t=((e,t,i)=>{let r=-1/0,n=e.map(e=>(e.height+t>r&&(r=e.height+t),e.height+t)),o=r,s=r*e.length,l=r;for(;o<s;){let e=Math.floor((o+s)/2);a(n,e,i)?s=e:o=e+1,l=o}return l-t})(this.itemsHeights,this.getRowGap(e),this.getColumnCount(e));this.isDuringCalc=!1,n().mutate(()=>{this.setContainerHeight(t),this.style.setProperty("visibility",null)})})}),o(this,"cleanUp",()=>{this.detachHeightCalcObservers(),this.removeContainerHeight(),this.isActiveObserver?.disconnect()}),o(this,"handleItemAdded",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.observe(e)}),o(this,"handleItemRemoved",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.unobserve(e)}),o(this,"createObservers",()=>{this.containerWidthObserver=new ResizeObserver(e=>{let t=e[0];if(t.contentRect.width!==this.containerWidth){if(0===this.containerWidth){this.containerWidth=t.contentRect.width;return}this.containerWidth=t.contentRect.width,this.recalcHeight()}}),this.mutationObserver=new MutationObserver(e=>{e.forEach(e=>{Array.from(e.removedNodes).forEach(this.handleItemRemoved),Array.from(e.addedNodes).forEach(this.handleItemAdded)}),this.recalcHeight()}),this.childResizeObserver=new ResizeObserver(()=>{this.recalcHeight()}),this.isActiveObserver=new ResizeObserver(()=>{this.setIsActive()})})}}return e}let l="multi-column-layouter",h=()=>{let e={observedElementToRelayoutTarget:new Map,getLayoutTargets(t){let i=new Set;return t.forEach(t=>i.add(e.observedElementToRelayoutTarget.get(t))),i},observe:i=>{e.observedElementToRelayoutTarget.set(i,i),t.observe(i)},unobserve:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)},observeChild:(i,r)=>{e.observedElementToRelayoutTarget.set(i,r),t.observe(i)},unobserveChild:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)}},t=new window.ResizeObserver(t=>{e.getLayoutTargets(t.map(e=>e.target)).forEach(e=>e.reLayout())});return e},c=(e,t=window)=>{let i=!1;return(...r)=>{i||(i=!0,t.requestAnimationFrame(()=>{i=!1,e(...r)}))}};function d(...e){let t=e[0];for(let i=1;i<e.length;++i)t=`${t.replace(/\/$/,"")}/${e[i].replace(/^\//,"")}`;return t}var u=i(26350);let m={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},g=(e,t)=>e&&t&&Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),p=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||m[i]?r:`${r}px`;else e.style.removeProperty(i)}),f=(e,t,i=!0)=>{var r;return e&&i?(r=e.dataset[t])?"true"===r||"false"!==r&&("null"===r?null:`${+r}`===r?+r:r):r:e.dataset[t]},_=(e,t)=>e&&t&&Object.assign(e.dataset,t),b=e=>e||document.documentElement.clientHeight||window.innerHeight||0,T={fit:"contain",fill:"cover"};var I=i(69654);let E=(e,t,i)=>{void 0===e.customElements.get(t)&&e.customElements.define(t,i)};function w(e,t=window){class i extends t.HTMLElement{reLayout(){}connectedCallback(){this.observeResize(),this.reLayout()}disconnectedCallback(){this.unobserveResize(),this.unobserveChildren()}observeResize(){e.resizeService.observe(this)}unobserveResize(){e.resizeService.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new t.MutationObserver(()=>this.reLayout())),this.childListObserver.observe(e,{childList:!0})}observeChildAttributes(e,i=[]){this.childrenAttributesObservers||(this.childrenAttributesObservers=[]);let r=new t.MutationObserver(()=>this.reLayout());r.observe(e,{attributeFilter:i}),this.childrenAttributesObservers.push(r)}observeChildResize(t){this.childrenResizeObservers||(this.childrenResizeObservers=[]),e.resizeService.observeChild(t,this),this.childrenResizeObservers.push(t)}unobserveChildrenResize(){this.childrenResizeObservers&&(this.childrenResizeObservers.forEach(t=>{e.resizeService.unobserveChild(t)}),this.childrenResizeObservers=null)}unobserveChildren(){if(this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null),this.childrenAttributesObservers){for(let e of this.childrenAttributesObservers)e.disconnect(),e=null;this.childrenAttributesObservers=null}this.unobserveChildrenResize()}constructor(){super()}}return i}let L=e=>{if(e.customElementNamespace||(e.customElementNamespace={}),void 0===e.customElementNamespace.WixElement){let t=w({resizeService:h()},e);return e.customElementNamespace.WixElement=t,t}return e.customElementNamespace.WixElement},v="wix-bg-image",A=(e=globalThis.window,t={},i={experiments:{}})=>{if(e&&void 0===e.customElements.get(v)){let r=function(e,t,i,r=window){let n=((e=window)=>({measure:function(e,t,i,{containerId:r,bgEffectName:n},a){let o=i[e],s=i[r],{width:l,height:h}=a.getMediaDimensionsByEffect(n,s.offsetWidth,s.offsetHeight,b(a.getScreenHeightOverride?.()));t.width=l,t.height=h,t.currentSrc=o.style.backgroundImage,t.bgEffectName=o.dataset.bgEffectName},patch:function(t,i,r,n,a){let o=r[t];n.targetWidth=i.width,n.targetHeight=i.height;let s=((e,t,i)=>{var r;let n,{targetWidth:a,targetHeight:o,imageData:s,filters:l,displayMode:h=u.fittingTypes.SCALE_TO_FILL}=e;if(!a||!o||!s.uri)return{uri:"",css:{}};let{width:c,height:d,crop:m,name:g,focalPoint:p,upscaleMethod:f,quality:_,devicePixelRatio:b=t.devicePixelRatio}=s,T={filters:l,upscaleMethod:f,..._,hasAnimation:e?.hasAnimation||s?.hasAnimation},I=(r=b,((n=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0].toLowerCase().includes("devicepixelratio")))?Number(n[1]):null)||r||1),E={id:s.uri,width:c,height:d,...m&&{crop:m},...p&&{focalPoint:p},...g&&{name:g}},w={width:a,height:o,htmlTag:"bg",pixelAspectRatio:I,alignment:e.alignType||u.alignTypes.CENTER},L=(0,u.getData)(h,E,w,T),v=s.baseHostURL||t.staticMediaUrl;return L.uri=((e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=`${t}/`;return e&&(/^micons\//.test(e)?r=i:"ico"===/[^.]+$/.exec(e)[0]&&(r=r.replace("media","ficons"))),r+e})(L.uri,v,t.mediaRootUrl),L})(n,a,0);if(function(e="",t){return!e.includes(t)||!!e!=!!t}(i.currentSrc,s.uri)){let t,i;t={backgroundImage:`url("${s.uri}")`,...s.css.container},(i=new e.Image).onload=p.bind(null,o,t),i.src=s.uri}else p(o,s.css.container)}}))(r);return class extends e{reLayout(){if(t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")||t.isExperimentOpen("specs.thunderbolt.final_force_webp")||t.isExperimentOpen("specs.thunderbolt.final_force_no_webp"))return;let e={},a={},o=(0,I.ZH)(this,{experiments:i.experiments,logger:i.logger,document:r.document}),s=JSON.parse(this.dataset.tiledImageInfo),{bgEffectName:l}=this.dataset,{containerId:h}=s,c=(0,I.qc)(h,{experiments:i.experiments,logger:i.logger,document:r.document});e[o]=this,e[h]=c,s.displayMode=s.imageData.displayMode,t.mutationService.measure(()=>{n.measure(o,a,e,{containerId:h,bgEffectName:l},t)}),t.mutationService.mutate(()=>{n.patch(o,a,e,s,i,t)})}attributeChangedCallback(e,t){t&&this.reLayout()}disconnectedCallback(){super.disconnectedCallback()}static get observedAttributes(){return["data-tiled-image-info"]}constructor(){super()}}}(L(e),t,i,e);E(e,v,r)}};function O(e,t,i,r=window){let n={width:void 0,height:void 0,left:void 0};return class extends e{reLayout(){let{containerId:e,pageId:a,useCssVars:o,bgEffectName:s}=this.dataset,l=(0,I.hW)(this,e)||(0,I.qc)(`${e}`,{experiments:i.experiments,logger:i.logger,document:r.document}),h=(0,I.hW)(this,a)||(0,I.qc)(`${a}`,{experiments:i.experiments,logger:i.logger,document:r.document}),c={};t.mutationService.measure(()=>{let e="fixed"===r.getComputedStyle(this).position,i=b(t.getScreenHeightOverride?.()),n=l.getBoundingClientRect(),a=t.getMediaDimensionsByEffect(s,n.width,n.height,i),{hasParallax:d}=a,u=h&&(r.getComputedStyle(h).transition||"").includes("transform"),{width:m,height:g}=a,p=`${m}px`,f=`${g}px`,_=`${(n.width-m)/2}px`;if(e){let e=r.document.documentElement.clientLeft;_=u?`${l.offsetLeft-e}px`:`${n.left-e}px`}let T=e||d?0:`${(n.height-g)/2}px`;Object.assign(c,o?{"--containerW":p,"--containerH":f,"--containerL":_,"--screenH_val":`${i}`}:{width:p,height:f,left:_,top:T})}),t.mutationService.mutate(()=>{if(o){let e;p(this,n),e=this,e&&c&&Object.keys(c).forEach(t=>{e.style.setProperty(t,c[t])})}else p(this,c)})}connectedCallback(){super.connectedCallback(),t.windowResizeService.observe(this)}disconnectedCallback(){super.disconnectedCallback(),t.windowResizeService.unobserve(this)}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-is-full-height","data-container-size"]}constructor(){super()}}}let y="__more__",C="moreContainer";function R(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let M="wix-dropdown-menu",x=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(M)){let t=h(),i=function(e,t,i=window){let r=((e=window)=>{let t=(e,t,i,r,n,a,o,s)=>{if(e-=n*(o?r.length:r.length-1),e-=s.left+s.right,t&&(r=r.map(()=>a)),r.some(e=>0===e))return null;let l=0,h=r.reduce((e,t)=>e+t,0);if(h>e)return null;if(t){if(i){let t=Math.floor(e/r.length),i=r.map(()=>t);if((l=t*r.length)<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r}if(i){let t=Math.floor((e-h)/r.length);l=0;let i=r.map(e=>(l+=e+t,e+t));if(l<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r},i=e=>{let t=parseFloat(e);return isFinite(t)?t:0},r=e=>!isNaN(parseFloat(e))&&isFinite(e);return{measure:(r,n)=>{var a;let o,s,l,h,c,d,u,m,g,p,_={},b={};b[r]=n;let T=1,I=n.getRootNode().querySelector("[id^=site-root]");I&&(T=I.getBoundingClientRect().width/I.offsetWidth);let E=(o=+f(b[r],"numItems"))<=0||o>Number.MAX_SAFE_INTEGER?[]:Array(o).fill(0).map((e,t)=>String(t)),w=["moreContainer","itemsContainer","dropWrapper"].concat(E,[y]);w.forEach(e=>{let t=`${r}${e}`;b[t]=n.getRootNode().getElementById(`${t}`)}),a=T,s={},w.forEach(e=>{let t=`${r}${e}`,i=b[t];i&&(s[t]={width:i.offsetWidth,boundingClientRectWidth:Math.round(i.getBoundingClientRect().width/a),height:i.offsetHeight})}),_.children=s;let L=b[r],v=b[`${r}itemsContainer`],A=v.childNodes,O=b[`${r}moreContainer`],C=O.childNodes,R=f(L,"stretchButtonsToMenuWidth"),M=f(L,"sameWidthButtons");_.absoluteLeft=L.getBoundingClientRect().left,_.bodyClientWidth=e.document.body.clientWidth,_.alignButtons=f(L,"dropalign"),_.hoverListPosition=f(L,"drophposition"),_.menuBorderY=parseInt(f(L,"menuborderY"),10),_.ribbonExtra=parseInt(f(L,"ribbonExtra"),10),_.ribbonEls=parseInt(f(L,"ribbonEls"),10),_.labelPad=parseInt(f(L,"labelPad"),10),_.menuButtonBorder=parseInt(f(L,"menubtnBorder"),10),l=v.lastChild,_.menuItemContainerMargins=(parseInt((h=e.getComputedStyle(l)).marginLeft,10)||0)+(parseInt(h.marginRight,10)||0),d=i((c=e.getComputedStyle(v)).borderTopWidth)+i(c.paddingTop),u=i(c.borderBottomWidth)+i(c.paddingBottom),m=i(c.borderLeftWidth)+i(c.paddingLeft),g=i(c.borderRightWidth)+i(c.paddingRight),d+=i(c.marginTop),u+=i(c.marginBottom),m+=i(c.marginLeft),g+=i(c.marginRight),_.menuItemContainerExtraPixels={top:d,bottom:u,left:m,right:g,height:d+u,width:m+g},_.needToOpenMenuUp=L.getBoundingClientRect().top>e.innerHeight/2,_.menuItemMarginForAllChildren=!R||"false"!==v.getAttribute("data-marginAllChildren"),_.moreSubItem=[],_.labelWidths={},_.linkIds={},_.parentId={},_.menuItems={},_.labels={},C.forEach((t,i)=>{_.parentId[t.id]=f(t,"parentId");let r=f(t,"dataId");_.menuItems[r]={dataId:r,parentId:f(t,"parentId"),moreDOMid:t.id,moreIndex:i},b[t.id]=t;let n=t.querySelector("p");b[n.id]=n,_.labels[n.id]={width:n.offsetWidth,height:n.offsetHeight,left:n.offsetLeft,lineHeight:parseInt(e.getComputedStyle(n).fontSize,10)},_.moreSubItem.push(t.id)}),A.forEach((e,t)=>{let i,r,n=f(e,"dataId");_.menuItems[n]=_.menuItems[n]||{},_.menuItems[n].menuIndex=t,_.menuItems[n].menuDOMid=e.id,_.children[e.id].left=e.offsetLeft;let a=e.querySelector("p");b[a.id]=a,_.labelWidths[a.id]=(i=a,r=T,Math.round(i.getBoundingClientRect().width/r));let o=e.querySelector("p");b[o.id]=o,_.linkIds[e.id]=o.id});let x=L.offsetHeight;_.height=x,_.width=L.offsetWidth,p=x-_.menuBorderY-_.labelPad-_.ribbonEls-_.menuButtonBorder-_.ribbonExtra,_.lineHeight=`${p}px`;let S=((e,i,r,n,a)=>{let o=i.width;i.hasOriginalGapData={},i.originalGapBetweenTextAndBtn={};let s=a.map(t=>{let r,a=f(n[e+t],"originalGapBetweenTextAndBtn");return(void 0===a?(i.hasOriginalGapData[t]=!1,r=i.children[e+t].boundingClientRectWidth-i.labelWidths[`${e+t}label`],i.originalGapBetweenTextAndBtn[e+t]=r):(i.hasOriginalGapData[t]=!0,r=parseFloat(a)),i.children[e+t].width>0)?Math.floor(i.labelWidths[`${e+t}label`]+r):0}),l=s.pop(),h=r.sameWidthButtons,c=r.stretchButtonsToMenuWidth,d=!1,u=i.menuItemContainerMargins,m=i.menuItemMarginForAllChildren,g=i.menuItemContainerExtraPixels,p=s.reduce((e,t)=>e>t?e:t,-1/0),_=t(o,h,c,s,u,p,m,g);if(!_){for(let e=1;e<=s.length;e++)if(_=t(o,h,c,s.slice(0,-1*e).concat(l),u,p,m,g)){d=!0;break}_||(d=!0,_=[l])}if(d){let e=_[_.length-1];for(_=_.slice(0,-1);_.length<a.length;)_.push(0);_[_.length-1]=e}return{realWidths:_,moreShown:d}})(r,_,{sameWidthButtons:M,stretchButtonsToMenuWidth:R},b,E.concat(y));return _.realWidths=S.realWidths,_.isMoreShown=S.moreShown,_.menuItemIds=E,_.hoverState=f(O,"hover",!1),{measures:_,domNodes:b}},patch:(e,t,i)=>{let n=i[e];p(n,{overflowX:"visible"});let{menuItemIds:a,needToOpenMenuUp:o}=t,s=a.concat(y);_(n,{dropmode:o?"dropUp":"dropDown"});let l=0;if(t.hoverState===y){let e,r,n=t.realWidths.indexOf(0),o=t.menuItems[e=t.menuItems,r=e=>e.menuIndex===n,Object.keys(e).find(t=>r(e[t],t))],s=o.moreIndex,h=s===a.length-1;o.moreDOMid&&g(i[o.moreDOMid],{"data-listposition":h?"dropLonely":"top"}),Object.values(t.menuItems).filter(e=>!!e.moreDOMid).forEach(e=>{if(e.moreIndex<s)p(i[e.moreDOMid],{display:"none"});else{let i=`${e.moreDOMid}label`;l=Math.max(t.labels[i].width,l)}})}else t.hoverState&&t.moreSubItem.forEach((i,r)=>{let n=`${e+C+r}label`;l=Math.max(t.labels[n].width,l)});((e,t,i,n)=>{let{hoverState:a}=t;if("-1"!==a){let{menuItemIds:o}=t,s=o.indexOf(a);if(r(t.hoverState)||a===y){if(!t.realWidths)return;let a=Math.max(n,t.children[-1!==s?e+s:e+y].width),o=Math.max(n,t.children[`${e}dropWrapper`].width),l=(0!==t.moreSubItem.length?t.labels[`${t.moreSubItem[0]}label`].lineHeight:0)+15+t.menuBorderY+t.labelPad+t.menuButtonBorder;t.moreSubItem.forEach(e=>{p(i[e],{minWidth:`${a}px`}),p(i[`${e}label`],{minWidth:"0px",lineHeight:`${l}px`})});let h=r(t.hoverState)?t.hoverState:"__more__",c={width:t.children[e+h].width,left:t.children[e+h].left},d=((e,t,i,r,n)=>{let{width:a,height:o,alignButtons:s,hoverListPosition:l,menuItemContainerExtraPixels:h}=t,c=t.absoluteLeft,d=((e,t,i,r,n,a,o,s,l,h)=>{let c="0px",d="auto",u=a.left,m=a.width;if("left"===t?c="left"===n?0:`${u+e.left}px`:"right"===t?(d="right"===n?0:`${r-u-m-e.right}px`,c="auto"):"left"===n?c=`${u+(m+e.left-i)/2}px`:"right"===n?(c="auto",d=`${(m+e.right-(i+e.width))/2}px`):c=`${e.left+u+(m-(i+e.width))/2}px`,"auto"!==c){let e=o+parseInt(c,10);e+h>l?(c="auto",d=0):c=e<0?0:c}return"auto"!==d&&(d=s-parseInt(d,10)>l?0:d),{moreContainerLeft:c,moreContainerRight:d}})(h,s,r,a,l,i,c,c+a,t.bodyClientWidth,n);return{left:d.moreContainerLeft,right:d.moreContainerRight,top:t.needToOpenMenuUp?"auto":`${o}px`,bottom:t.needToOpenMenuUp?`${o}px`:"auto"}})(0,t,c,a,o);p(i[`${e}${C}`],{left:d.left,right:d.right}),p(i[`${e}dropWrapper`],{left:d.left,right:d.right,top:d.top,bottom:d.bottom})}}})(e,t,i,l),t.originalGapBetweenTextAndBtn&&s.forEach(r=>{t.hasOriginalGapData[r]||_(i[`${e}${r}`],{originalGapBetweenTextAndBtn:t.originalGapBetweenTextAndBtn[`${e}${r}`]})}),((e,t,i,r)=>{let{realWidths:n,height:a,menuItemContainerExtraPixels:o}=i,s=0,l=null,h=null,c=i.lineHeight,d=a-o.height;for(let a=0;a<r.length;a++){let o=n[a],u=o>0,m=e+r[a];h=i.linkIds[m],u?(s++,l=m,p(t[m],{width:`${o}px`,height:`${d}px`,position:"relative","box-sizing":"border-box",overflow:"visible",visibility:"inherit"}),p(t[`${m}label`],{"line-height":c}),g(t[m],{"aria-hidden":!1})):(p(t[m],{height:"0px",overflow:"hidden",position:"absolute",visibility:"hidden"}),g(t[m],{"aria-hidden":!0}),g(t[h],{tabIndex:-1}))}1===s&&(_(t[`${e}moreContainer`],{listposition:"lonely"}),_(t[l],{listposition:"lonely"}))})(e,i,t,s)}}})(i);return class extends e{static get observedAttributes(){return["data-hovered-item"]}attributeChangedCallback(){this._isVisible()&&this.reLayout()}connectedCallback(){this._id=this.getAttribute("id"),this._hideElement(),this._waitForDomLoad().then(()=>{super.observeResize(),this._observeChildrenResize(),this.reLayout()})}disconnectedCallback(){t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),super.disconnectedCallback()}_waitForDomLoad(){let e,t=new Promise(t=>{e=t});return this._isDomReady()?e():(this._waitForDomReadyObserver=new i.MutationObserver(()=>this._onRootMutate(e)),this._waitForDomReadyObserver.observe(this,{childList:!0,subtree:!0})),t}_isDomReady(){return this._itemsContainer=this.getRootNode().getElementById(`${this._id}itemsContainer`),this._dropContainer=this.getRootNode().getElementById(`${this._id}dropWrapper`),this._itemsContainer&&this._dropContainer}_onRootMutate(e){this._isDomReady()&&(this._waitForDomReadyObserver.disconnect(),e())}_observeChildrenResize(){let e=Array.from(this._itemsContainer.childNodes);this._labelItems=e.map(e=>this.getRootNode().getElementById(`${e.getAttribute("id")}label`)),this._labelItems.forEach(e=>super.observeChildResize(e))}_setVisibility(e){this._visible=e,this.style.visibility=e?"inherit":"hidden"}_isVisible(){return this._visible}_hideElement(){this._setVisibility(!1)}_showElement(){this._setVisibility(!0)}reLayout(){let e,i;t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),this._mutationIds.read=t.mutationService.measure(()=>{let t=r.measure(this._id,this);e=t.measures,i=t.domNodes}),this._mutationIds.write=t.mutationService.mutate(()=>{r.patch(this._id,e,i),this._showElement()})}constructor(...e){super(...e),R(this,"_visible",!1),R(this,"_mutationIds",{read:null,write:null}),R(this,"_itemsContainer",null),R(this,"_dropContainer",null),R(this,"_labelItems",[])}}}(L(e),{resizeService:t,mutationService:n()},e);e.customElements.define(M,i)}},S="wix-iframe",G=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(S)){var t;let i=(t=L(e),class extends t{reLayout(){let e=this.querySelector("iframe");if(e){let t=e.dataset.src;t&&e.src!==t&&(e.src=t,e.dataset.src="",this.dataset.src="")}}attributeChangedCallback(e,t,i){i&&this.reLayout()}static get observedAttributes(){return["data-src"]}constructor(){super()}});E(e,S,i)}},P={measure(e,t,{hasBgScrollEffect:i,videoWidth:r,videoHeight:n,fittingType:a,alignType:o="center",qualities:s,staticVideoUrl:l,videoId:h,videoFormat:c,focalPoint:m}){var g,p,f,_,b,I,E,w,L,v;let A,O,y,C=i?t.offsetWidth:e.parentElement.offsetWidth,R=e.parentElement.offsetHeight,M=parseInt(r,10),x=parseInt(n,10),S=(g=a,p={wScale:C/M,hScale:R/x},f=M,_=x,{width:Math.round(f*(A=g===u.fittingTypes.SCALE_TO_FIT?Math.min(p.wScale,p.hScale):Math.max(p.wScale,p.hScale))),height:Math.round(_*A)}),G=(b=function(e,{width:t,height:i}){var r;return(r=e=>e.size,Object.values(e.reduce((e,t)=>(e[r(t)]=t,e),{}))).find(e=>e.size>t*i)||e[e.length-1]}(s,S),I=l,E=h,"mp4"===(w=c)?b.url?d(I,b.url):d(I,E,b.quality,w,"file.mp4"):""),P=(L=e,v=G,O=L.networkState===L.NETWORK_NO_SOURCE,y=!L.currentSrc.endsWith(v),v&&(y||O)),N=T[a]||"cover",F=m?function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(S,{width:C,height:R},m):"",k=o.replace("_"," ");return{videoSourceUrl:G,needsSrcUpdate:P,videoStyle:{height:"100%",width:"100%",objectFit:N,objectPosition:F||k}}},mutate(e,t,i,r,n,a,o,s,l,h,c){var d,u,m;if(n?i.setAttribute("autoplay",""):i.removeAttribute("autoplay"),t){let{width:e,height:i,...n}=r;p(t,n)}else(function(e,t,i,r,n,a){a&&t.paused&&(i.style.opacity="1",t.style.opacity="0");let o=t.paused||""===t.currentSrc;if((e||a)&&o)if(t.ontimeupdate=null,t.onseeked=null,t.onplay=null,!a&&n){let e=t.muted;t.muted=!0,t.ontimeupdate=()=>{t.currentTime>0&&(t.ontimeupdate=null,t.onseeked=()=>{t.onseeked=null,t.muted=e,N(t,i,r)},t.currentTime=0)}}else t.onplay=()=>{a||(t.onplay=null),N(t,i,r)}})(o,i,e,s,n,c),p(i,r);d=o,u=i,m=a,d&&(u.src=m,u.load()),i.playbackRate=h}};function N(e,t,i){"fade"===i&&(t.style.transition="opacity 1.6s ease-out"),t.style.opacity="0",e.style.opacity="1"}let F="wix-video",k=(e=globalThis.window,t,i={experiments:{}})=>{if(e&&void 0===e.customElements.get(F)){var r,n;let a=L(e),o=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"50% 100%"});E(e,F,(r=a,n={...t,intersectionObserver:o},class extends r{connectedCallback(){i.disableImagesLazyLoading?this.reLayout():n.intersectionObserver.observe(this)}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}unobserveIntersect(){n.intersectionObserver?.unobserve(this)}reLayout(){let{isVideoDataExists:e,videoWidth:t,videoHeight:r,qualities:a,videoId:o,videoFormat:s,alignType:l,fittingType:h,focalPoint:c,hasBgScrollEffect:d,autoPlay:u,animatePoster:m,containerId:g,isEditorMode:p,playbackRate:f,hasAlpha:_}=JSON.parse(this.dataset.videoInfo);if(!e)return;let b=!i.prefersReducedMotion&&u,T=this.querySelector(`video[id^="${g}"]`),E=this.querySelector(`.bgVideoposter[id^="${g}"]`);if(this.unobserveChildren(),!(T&&E))return void this.observeChildren(this);let w=(0,I.qc)(g,{document:this.getRootNode(),experiments:i.experiments,logger:i.logger}),L=(0,I.iT)(`.webglcanvas[id^="${g}"]`,{element:w,experiments:i.experiments,logger:i.logger});(_||"true"===w.dataset.hasAlpha)&&!L?requestAnimationFrame(()=>this.reLayout()):n.mutationService.measure(()=>{let{videoSourceUrl:e,needsSrcUpdate:u,videoStyle:g}=P.measure(T,w,{hasBgScrollEffect:d,videoWidth:t,videoHeight:r,fittingType:h,alignType:l,qualities:a,staticVideoUrl:i.staticVideoUrl,videoId:o,videoFormat:s,focalPoint:c});n.mutationService.mutate(()=>{P.mutate(E,L,T,g,b,e,u,m,s,f,p)})})}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-video-info"]}constructor(){super()}}))}}},46418(e,t,i){var r=i(17709),n=i.n(r),a=i(33842),o=i(26350),s=i(16858);let l=o,h=function(e,t=window){!function(e){if(void 0===e.Reflect||void 0===e.customElements||e.customElements.hasOwnProperty("polyfillWrapFlushCallback"))return;let t=e.HTMLElement;e.HTMLElement=function(){return e.Reflect.construct(t,[],this.constructor)},e.HTMLElement.prototype=t.prototype,e.HTMLElement.prototype.constructor=e.HTMLElement,e.Object.setPrototypeOf(e.HTMLElement,t),e.Object.defineProperty(e.HTMLElement,"name",{value:t.name})}(t);let i={registry:new Set,observe(e){i.registry.add(e)},unobserve(e){i.registry.delete(e)}};e.windowResizeService.init((0,s.vk)(()=>i.registry.forEach(e=>e.reLayout())),t);let r=(0,s.Aq)(),n=(e,i)=>{void 0===t.customElements.get(e)&&t.customElements.define(e,i)},a=(0,s.yO)({resizeService:r},t);return t.customElementNamespace={WixElement:a},n("wix-element",a),{contextWindow:t,defineWixBgMedia:e=>{n("wix-bg-media",(0,s.NL)(a,{windowResizeService:i,...e},t))},defineMultiColumnRepeaterElement:()=>{let e=(0,s._o)();n(s.KU,e)}}};var c=i(91534),d=i(76526);let u=()=>({getSiteScale:()=>{let e=document.querySelector("#site-root");return e?e.getBoundingClientRect().width/e.offsetWidth:1}}),m=(e,t,i,r)=>{let{getMediaDimensions:n,...o}=a[e]||{};return n?{...n(t,i,r),...o}:{width:t,height:i,...o}},{experiments:g,media:p,requestUrl:f,site:_}=window.viewerModel,b=(0,d.isExperimentOpen)(g,"specs.thunderbolt.customImageDomain");((e,t,i,r)=>{var a,o,s;let g,p,f,_,b,T,{environmentConsts:I,wixCustomElements:E,media:w,requestUrl:L,mediaServices:v}=(a=void 0,o=void 0,s=void 0,p={"specs.thunderbolt.useClassSelectorsForLookup":(g=t=>(0,d.isExperimentOpen)(e.experiments,t))("specs.thunderbolt.useClassSelectorsForLookup"),"specs.thunderbolt.addIdAsClassName":g("specs.thunderbolt.addIdAsClassName")},f={staticMediaUrl:e.media.staticMediaUrl,mediaRootUrl:e.media.mediaRootUrl,externalBaseUrl:e.externalBaseUrl??"",userDomainMediaPrefixes:e.userDomainMediaPrefixes??[],experiments:p,isViewerMode:!0,devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,...s},b={getMediaDimensionsByEffect:m,..._={mutationService:n(),isExperimentOpen:g,siteService:u()},...o},{...e,wixCustomElements:a||(T=u(),h({resizeService:{init:e=>new ResizeObserver(e)},windowResizeService:{init:e=>window.addEventListener("resize",e)},siteService:T})),services:_,environmentConsts:f,mediaServices:b}),A=E?.contextWindow||window;A.wixCustomElements=E,Object.assign(A.customElementNamespace,{mediaServices:v,environmentConsts:I,requestUrl:L,staticVideoUrl:w.staticVideoUrl}),(0,c.g)({...v},E.contextWindow,I),E.defineWixBgMedia(v),E.defineMultiColumnRepeaterElement(),window.__imageClientApi__=l})({experiments:g,media:p,requestUrl:f,externalBaseUrl:_?.externalBaseUrl,userDomainMediaPrefixes:b?p?.userDomainMediaPrefixes:void 0})},13176(e,t,i){i.d(t,{z:()=>r});let r=["MENU_AS_CONTAINER_TOGGLE","MENU_AS_CONTAINER_EXPANDABLE_MENU","BACK_TO_TOP_BUTTON","SCROLL_TO_","TPAMultiSection_","TPASection_","comp-","TINY_MENU","MENU_AS_CONTAINER","SITE_HEADER","SITE_FOOTER","SITE_PAGES","PAGES_CONTAINER","BACKGROUND_GROUP","POPUPS_ROOT"]},69654(e,t,i){i.d(t,{C5:()=>c,Xx:()=>d,ZH:()=>h,hW:()=>g,iT:()=>u,kp:()=>p,qc:()=>l,vP:()=>m});var r=i(13176);function n(e,t){return["true","new","b","enabled"].includes(`${e?.[t]}`.toLowerCase())}function a(e={}){let t=e?.experiments;if(!t&&"undefined"!=typeof window)try{let e=window;t=e.viewerModel?.experiments}catch{}if(!t)return!1;let i=n(t,"specs.thunderbolt.useClassSelectorsForLookup"),r=n(t,"specs.thunderbolt.addIdAsClassName");return!!(i&&r)}function o(e={}){return e.document||("undefined"!=typeof document?document:null)}function s(e,t,i){e&&"function"==typeof e.meter&&e.meter("dom_selector_id_fallback",{customParams:{compId:t,selectorType:i}}),"undefined"!=typeof console&&console.warn&&console.warn(`[DOM Selectors] Fallback to ID for '${t}' (${i}).`)}function l(e,t={}){let i=o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=i.querySelector(`.${e}`);if(t)return t}let n=i.getElementById(e);return n&&r&&s(t?.logger,e,"getElementById"),n}function h(e,t={}){if(!e)return"";if(!a(t))return e.id;let i=Array.from(e.classList||[]),o=n(t.experiments,"specs.thunderbolt.preserveWixSelectClass");if(t.isEditor&&o&&!i.includes("wix-select"))return"";if(t.componentIds?.size){for(let e of i.filter(e=>e.includes("__"))){let i=e.indexOf("__"),r=e.substring(0,i);if(t.componentIds.has(r))return e}for(let e of i)if(t.componentIds.has(e))return e}let l=t.prefixes??r.z,c=null;for(let e of i)if(l.some(t=>e.startsWith(t))){if(e.includes("__"))return e;(!c||e.length<c.length)&&(c=e)}return c||(e.id&&s(t.logger,e.id,"getElementCompId"),e.id||"")}function c(e){return e.replace(/#([a-zA-Z0-9_-]+)/g,".$1").replace(/\[id="([^"]+)"\]/g,'[class~="$1"]').replace(/\[id\^="([^"]+)"\]/g,':is([class^="$1"],[class*=" $1"])').replace(/\[id\*="([^"]+)"\]/g,'[class*="$1"]').replace(/\[id\$="([^"]+)"\]/g,'[class$="$1"]')}function d(e,t,i=!1){if(!t)return e;let r=c(e);return`:is(${r}${i?".wix-select":""}, ${e})`}function u(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=c(e),r=i.querySelector(t);if(r)return r}let n=i.querySelector(e);return n&&r&&s(t.logger,e,"querySelector"),n}function m(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return[];let r=a(t);if(r){let t=c(e),r=Array.from(i.querySelectorAll(t));if(r.length>0)return r}let n=Array.from(i.querySelectorAll(e));return n.length>0&&r&&s(t.logger,e,"querySelectorAll"),n}function g(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=e.closest(`.${t}`);if(i)return i}let n=e.closest(`#${t}`);return n&&r&&s(i.logger,t,"getClosestByCompId"),n}function p(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=c(t),r=e.closest(i);if(r)return r}let n=e.closest(t);return n&&r&&s(i.logger,t,"closest"),n}}}]); | |
| 2462 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js.map</script> | |
| 2463 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6901"],{33842(e,t,i){i.r(t),i.d(t,{BackgroundParallax:()=>n,BackgroundParallaxZoom:()=>o,BackgroundReveal:()=>l,BgCloseUp:()=>d,BgExpand:()=>c,BgFabeBack:()=>h,BgFadeIn:()=>u,BgFadeOut:()=>g,BgFake3D:()=>m,BgPanLeft:()=>f,BgPanRight:()=>b,BgParallax:()=>p,BgPullBack:()=>v,BgReveal:()=>w,BgRotate:()=>M,BgShrink:()=>y,BgSkew:()=>I,BgUnwind:()=>x,BgZoomIn:()=>L,BgZoomOut:()=>D,ImageParallax:()=>O,ImageReveal:()=>P});var r=i(16956);let a=(e,t)=>({width:e,height:t}),s=(e,t,i)=>({width:e,height:Math.max(t,i)}),n={hasParallax:!0,getMediaDimensions:s},o={hasParallax:!0,getMediaDimensions:s},l={hasParallax:!0,getMediaDimensions:s},d={getMediaDimensions:a},c={getMediaDimensions:a},h={getMediaDimensions:a},u={getMediaDimensions:a},g={getMediaDimensions:a},m={hasParallax:!0,getMediaDimensions:s},f={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},b={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},p={hasParallax:!0,getMediaDimensions:s},v={getMediaDimensions:a},w={hasParallax:!0,getMediaDimensions:s},M={getMediaDimensions:(e,t)=>{let i,a,s,n,o;return i=(0,r.kU)(22),a=Math.hypot(e,t)/2,s=Math.acos(e/2/a),n=e*Math.abs(Math.cos(i))+t*Math.abs(Math.sin(i)),o=e*Math.abs(Math.sin(i))+t*Math.abs(Math.cos(i)),{width:Math.ceil(i<s?n:2*a),height:Math.ceil(i<(0,r.kU)(90)-s?o:2*a)}}},y={getMediaDimensions:a},I={getMediaDimensions:(e,t)=>({width:e,height:e*Math.tan((0,r.kU)(20))+t})},x={getMediaDimensions:a},L={hasParallax:!0,getMediaDimensions:s},D={getMediaDimensions:(e,t)=>({width:1.15*e,height:1.15*t})},O={getMediaDimensions:(e,t)=>({width:e,height:1.5*t})},P={getMediaDimensions:(e,t,i)=>({width:e,height:i})}},16956(e,t,i){function r(e,t,i,r,a){return(a-e)*(r-i)/(t-e)+i}function a(e,t){let[i,r]=e,[a,s]=t;return Math.sqrt((a-i)**2+(s-r)**2)}function s(e){return e*Math.PI/180}function n(e,t,i){return void 0===e&&(e=[0,0]),void 0===t&&(t=[0,0]),void 0===i&&(i=0),(360+i+180*Math.atan2(t[1]-e[1],t[0]-e[0])/Math.PI)%360}i.d(t,{Io:()=>a,Rb:()=>n,_b:()=>r,kU:()=>s})},91534(e,t,i){i.d(t,{g:()=>b});var r=i(26350);let a={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},s=(e,t)=>(Array.isArray(t)?t:[t]).reduce((t,i)=>{let r=e[i];return void 0!==r?Object.assign(t,{[i]:r}):t},{}),n=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||a[i]?r.toString():`${r}px`;else e.style.removeProperty(i)}),o=e=>e.endsWith("/")?e:`${e}/`,l=(e,t,i)=>{if(!e.targetWidth||!e.targetHeight||!e.imageData.uri)return{uri:"",css:{},transformed:!1};let{imageData:a}=e,n=e.displayMode||r.fittingTypes.SCALE_TO_FILL,l=Object.assign(s(a,["upscaleMethod"]),s(e,["filters","encoding","allowFullGIFTransformation","allowWebpAvifTransforms"]),e.quality||a.quality,{hasAnimation:e?.hasAnimation||a?.hasAnimation}),h=c(e.imageData.devicePixelRatio||t.devicePixelRatio),u=Object.assign(s(a,["width","height","crop","name","focalPoint"]),{id:a.uri}),g={width:e.targetWidth,height:e.targetHeight,htmlTag:i||"img",pixelAspectRatio:h,alignment:e.alignType||r.alignTypes.CENTER},m=(0,r.getData)(n,u,g,l),f=a.userDomainMediaURL?a.userDomainMediaURL:(({uri:e,envConsts:t})=>{let{externalBaseUrl:i,userDomainMediaPrefixes:r=[],staticMediaUrl:a}=t;return r.some(t=>e.startsWith(`${t}_`))&&i?`${o(i)}_media/`:o(a)})({uri:a.uri,envConsts:t});return m.uri=d(m.uri,f,t.mediaRootUrl),m},d=(e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=o(t);return e&&(/^micons\//.test(e)?r=o(i):/[^.]+$/.exec(e)?.[0]==="ico"&&(r=r.replace("media","ficons"))),r+e},c=e=>{let t=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0]?.toLowerCase().includes("devicepixelratio"));return(t?.[1]?Number(t[1]):null)||e||1},h=function(e,t,i,{containerElm:r,bgEffect:a="none",sourceSets:s},n){var o,l;let d,c=i.image,h=i[e],u=n.getScreenHeightOverride?.()||document.documentElement.clientHeight||window.innerHeight||0,g=r?.dataset.mediaHeightOverrideType,m=a&&"none"!==a||s&&s.some(e=>e.scrollEffect),f=r&&m?r:h,b=window.getComputedStyle(h).getPropertyValue("--bg-scrub-effect"),{width:p,height:v}=n.getMediaDimensionsByEffect?.(b||a,f.offsetWidth,f.offsetHeight,u)||{width:h.offsetWidth,height:h.offsetHeight};if(s&&(o=f.offsetWidth,l=f.offsetHeight,d={},s.forEach(({mediaQuery:e,scrollEffect:t})=>{d[e]=n.getMediaDimensionsByEffect?.(t,o,l,u).height||l}),t.sourceSetsTargetHeights=d),!c)return;let w=c.getAttribute("src");b&&(t.top=.5*(h.offsetHeight-v),t.left=.5*(h.offsetWidth-p)),t.width=p,t.height="fixed"===g||"viewport"===g?document.documentElement.clientHeight+80:v,t.screenHeight=u,t.imgSrc=w,t.boundingRect=h.getBoundingClientRect(),t.mediaHeightOverrideType=g,t.srcset=c.srcset},u=function(e,t,i,a,s,o,d,c,h,u){if(!Object.keys(t).length)return;let{imageData:g}=a,m=i[e],f=i.image;h&&(g.devicePixelRatio=1);let b=a.targetScale||1,p=s.isExperimentOpen?.("specs.thunderbolt.allowFullGIFTransformation"),v=s.isExperimentOpen?.("specs.thunderbolt.allowWebpAvifTransforms"),w={...a,...!a.skipMeasure&&{targetWidth:(t.width||0)*b,targetHeight:(t.height||0)*b},displayMode:g.displayMode,allowFullGIFTransformation:p,allowWebpAvifTransforms:v},M=l(w,o,"img"),y=M?.css?.img||{};n(f,function(e,t,i,r,a){let s=function(e,t=1){return 1!==t?{...e,width:"100%",height:"100%"}:e}(t,r);if(a&&(delete s.height,s.width="100%"),!e)return s;let n={...s};return"fill"===i?(n.position="absolute",n.top="0"):"fit"===i&&(n.height="100%"),"fixed"===e&&(n["will-change"]="transform"),n.objectPosition&&(n.objectPosition=t.objectPosition.replace(/(center|bottom)$/,"top")),n}(t.mediaHeightOverrideType,y,g.displayMode,b,c)),(t.top||t.left)&&n(m,{top:`${t.top}px`,left:`${t.left}px`});let I=M?.uri||"",x=g?.hasAnimation||a?.hasAnimation,L=function(e,t,i){let{sourceSets:r}=t;if(!r||!r.length)return;let a={};return r.forEach(({mediaQuery:r,crop:s,focalPoint:n})=>{let o=l({...t,targetHeight:(e.sourceSetsTargetHeights||{})[r]||0,imageData:{...t.imageData,crop:s,focalPoint:n}},i,"img");a[r]=o.uri||""}),a}(t,w,o);if(u&&(f.dataset.ssrSrcDone="true"),!a.isLQIP||!a.lqipTransition||"transitioned"in m.dataset||(m.dataset.transitioned="",f.complete?f.onload=function(){f.dataset.loadDone=""}:f.onload=function(){f.complete?f.dataset.loadDone="":f.onload=function(){f.dataset.loadDone=""}}),d){let e;(e=g.uri,(0,r.getFileExtension)(e)===r.fileType.GIF||(0,r.getFileExtension)(e)===r.fileType.WEBP&&x)?(f.setAttribute("fetchpriority","low"),f.setAttribute("loading","lazy"),f.setAttribute("decoding","async")):f.setAttribute("fetchpriority","high"),f.currentSrc!==I&&f.setAttribute("src",I),t.srcset&&!t.srcset.split(", ").some(e=>e.split(" ")[0]===I)&&f.setAttribute("srcset",I),i.picture&&w.sourceSets&&Array.from(i.picture.querySelectorAll("source")).forEach(e=>{let t=e.media||"",i=L?.[t];e.srcset!==i&&e.setAttribute("srcset",i||"")})}},g={parallax:"ImageParallax",fixed:"ImageReveal"};var m=i(17709),f=i.n(m);function b(e={},t=null,i={}){if("undefined"==typeof window)return;let a={staticMediaUrl:r.STATIC_MEDIA_URL,mediaRootUrl:r.MEDIA_ROOT_URL,experiments:{},devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,disableImagesLazyLoading:(()=>{try{return"true"===new URL(window.location.href).searchParams.get("disableLazyLoading")}catch{return!1}})(),...i},s=function(e,t){let i="wow-image";if(void 0===(e=e||window).customElements.get(i)){let r,a;return e.ResizeObserver&&(r=new e.ResizeObserver(e=>e.map(e=>e.target.reLayout()))),e.IntersectionObserver&&(a=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"150% 100%"})),function(s){var n,o;let l=(n={resizeService:r,intersectionService:a,mutationService:f(),...t},o=e,class extends o.HTMLElement{constructor(){super(),this.childListObserver=null,this.timeoutId=null}attributeChangedCallback(e,t){t&&this.reLayout()}connectedCallback(){s.disableImagesLazyLoading?this.reLayout():this.observeIntersect()}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}static get observedAttributes(){return["data-image-info"]}reLayout(){let e={},t={},i=this.getAttribute("id"),r=JSON.parse(this.dataset.imageInfo||""),a="true"===this.dataset.isResponsive,{bgEffectName:l}=this.dataset,{scrollEffect:d}=r.imageData,{sourceSets:c}=r,m=l||d&&g[d];c&&c.length&&c.forEach(e=>{e.scrollEffect&&(e.scrollEffect=g[e.scrollEffect])}),e[i]=this,r.containerId&&(e[r.containerId]=o.document.getElementById(`${r.containerId}`));let f=r.containerId?e[r.containerId]:void 0;if(e.image=this.querySelector("img"),e.picture=this.querySelector("picture"),!e.image)return void this.observeChildren(this);this.unobserveChildren(),this.observeChildren(this),n.mutationService.measure(()=>{h(i,t,e,{containerElm:f,bgEffect:m,sourceSets:c},n)});let b=(o,l)=>{n.mutationService.mutate(()=>{u(i,t,e,r,n,s,o,a,m,l)})},p=e.image,v=this.dataset.hasSsrSrc&&!p.dataset.ssrSrcDone;!p.getAttribute("src")||v?b(!0,!0):this.debounceImageLoad(b)}debounceImageLoad(e){clearTimeout(this.timeoutId),this.timeoutId=o.setTimeout(()=>{e(!0)},250),e(!1)}observeResize(){n.resizeService?.observe(this)}unobserveResize(){n.resizeService?.unobserve(this)}observeIntersect(){n.intersectionService?.observe(this)}unobserveIntersect(){n.intersectionService?.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new o.MutationObserver(()=>{this.reLayout()})),this.childListObserver.observe(e,{childList:!0})}unobserveChildren(){this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null)}});e.customElements.define(i,l)}}}(t,e);s&&s(a)}},76526(e,t,i){i.d(t,{isExperimentOpen:()=>s});var r=i(7073);let a=[],s=(e,t)=>a.includes(t)||(0,r.kg)(e,t)},7073(e,t,i){i.d(t,{kg:()=>a});var r=["true","b","c","new","enabled"];function a(e,t){let i=e[t];return!0===i||"string"==typeof i&&r.includes(i.toLowerCase())}}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=46418)}),e.O()}]); | |
| 2464 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js.map</script> | |
| 2465 | + | |
| 2466 | + | |
| 2467 | +<!-- preloading pre-scripts --> | |
| 2468 | + | |
| 2469 | + | |
| 2470 | + <link href="https://siteassets.parastorage.com/pages/pages/thunderbolt?appDefinitionIdToSiteRevision=%7B%2227fcc256-f3f8-47df-a66a-8f8176cc7f99%22%3A%2245%22%2C%22a5dd7ce8-07c2-4251-8d58-9657c1a43163%22%3A%22219%22%2C%2214271d6f-ba62-d045-549b-ab972ae1f70e%22%3A%2225%22%2C%2214bcded7-0066-7c35-14d7-466cb3f09103%22%3A%221335%22%2C%227479d596-137c-4fa3-89cd-d7091042ba61%22%3A%22132%22%2C%2275d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3%22%3A%22305%22%2C%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%3A%226855%22%2C%22b976560c-3122-4351-878f-453f337b7245%22%3A%221358%22%2C%2213d21c63-b5ec-5912-8397-c3a5ddb27a97%22%3A%22440%22%7D&appDefinitionIdsWithCustomCss=%5B%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%5D&beckyExperiments=.DatePickerPortal%2C.DisableDocumentScrollWhenLightBoxOpen%2C.EnableCustomCSSVarsForLoginSocialBar%2C.FreemiumBannerOdeditor%2C.LoginBarEnableLoggingInStateInSSR%2C.TextInputAutoFillFix%2C.UseLoginSocialBarCustomMenu%2C.UseNestedLoginSocialBarMenuItems%2C.UseNewLoginBarDropdownMenuAlignment%2C.UseNewLoginSocialBarElementStructure%2C.UseNewLoginSocialBarMemberInitialsAvatar%2C.WixFreeSiteBannerDesktop%2C.WixFreeSiteBannerMobile%2C.a11yContrast%2C.addIdAsClassName%2C.allowWebpAvifTransforms%2C.builderBoxSizingBorderBox%2C.buttonUdp%2C.calculateCollapsibleTextLineHeightByFont%2C.dom_store%2C.dontApplyDacOverridesOnBoBApps%2C.dynamicPageLinkTarget%2C.dynamicSlots%2C.fiveGridLineStudioSkins%2C.fixFirefoxLinkBarIntrinsicSizing%2C.fixRemappedFullNameCompType%2C.imageEncodingAVIF%2C.isClassNameToRootEnabled%2C.motionTimeAnimationsCSS%2C.plainClassSelectors%2C.responsiveContainerRoleGroup%2C.sectionA11yProps%2C.shouldIgnoreWidgetsPageData%2C.shouldUseResponsiveImages%2C.splitSlotSelectors%2C.svgResolver_2%2C.updateRichTextSemanticClassNamesOnCorvid%2C.useClassnameInResponsiveAppWidget%2C.useFragmentHrefForTopBottomAnchor%2C.useImageAvifFormatInNativeProGallery%2C.useResponsiveImgClassicFixed%2C.useSvgLoaderFeature%2C.useSvgLoaderFeatureOnBuilderComps%2C.useWowImageInFastGallery&blocksBuilderManifestGeneratorVersion=1.129.0&commonConfig=%7B%22siteRevision%22%3A%224%22%2C%22branchId%22%3A%22f815f8fb-8f6e-40d3-b375-054107669a53%22%7D&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.5507.0&disableStaticPagesUrlHierarchy=false&editorName=Studio&experiments=dm_bgScrubToMotionFixer%2Cdm_masterPageVariablesQueryFixer%2Cdm_migrateOldHoverBoxToNewFixer&externalBaseUrl=https%3A%2F%2Fwww.leshabitationssf.com&fileId=d1e4c663.bundle.min&formFactor=desktop&hasTPAWorkerOnSite=false&hasUserDomainMedia=false&isBuilderComponentModel=false&isClientSdkOnSite=true&isHttps=true&isInSeo=false&isMultilingualEnabled=true&isPremiumDomain=true&isResponsive=true&isTrackClicksAnalyticsEnabled=false&isUrlMigrated=true&isWixCodeOnPage=false&isWixCodeOnSite=true&language=fr&languageResolutionMethod=QueryParam&metaSiteId=39b9882f-9e71-4f93-bb6d-a87166c85cda&module=thunderbolt-features&originalLanguage=fr&pageId=5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json&pilerExperiments=specs.piler.useEditorReactComponents&quickActionsMenuEnabled=false®istryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22wixui%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%2C%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22dsgnsys%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%5D&remoteWidgetStructureBuilderVersion=1.251.0&siteId=452071c1-a99b-44c2-b686-dd15b11264a3&siteRevision=4&staticHTMLComponentUrl=https%3A%2F%2Fwww-leshabitationssf-com.filesusr.com%2F&useSandboxInHTMLComp=false&viewMode=desktop" id="features_masterPage" as="fetch" position="post-scripts" rel="prefetch" crossorigin="anonymous"></link> | |
| 2471 | + | |
| 2472 | + | |
| 2473 | + | |
| 2474 | + | |
| 2475 | + | |
| 2476 | + <!-- sentryOnLoad Setup Script --> | |
| 2477 | + <script id="sentryOnLoadSetup"> | |
| 2478 | + function _extends(){_extends=Object.assign||function(target){for(var i=1;i<arguments.length;i++){var source=arguments[i];for(var key in source){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key]}}}return target};return _extends.apply(this,arguments)}(function(){var SENTRY_REROUTED_MARK_KEY="_REROUTED";var SENTRY_IS_NON_WIX_TPA_MARK_KEY="_isTPA";var SENTRY_REROUTE_DATA_KEY="_ROUTE_TO";var addRerouteDataToSentryEvent=function(event){var _event_extra,_event_exception_values__stacktrace,_event_exception_values,_event_exception;if(event==null?void 0:(_event_extra=event.extra)==null?void 0:_event_extra[SENTRY_REROUTE_DATA_KEY]){return}if(event==null?void 0:(_event_exception=event.exception)==null?void 0:(_event_exception_values=_event_exception.values)==null?void 0:(_event_exception_values__stacktrace=_event_exception_values[0].stacktrace)==null?void 0:_event_exception_values__stacktrace.frames){var frames=event.exception.values[0].stacktrace.frames;var framesModuleMetadata=frames.filter(function(frame){return frame.module_metadata&&frame.module_metadata.appId}).map(function(v){return{appId:v.module_metadata.appId,release:v.module_metadata.release,dsn:v.module_metadata.dsn}});var routeTo=framesModuleMetadata.slice(-1);if(routeTo.length){var _window_wixEmbedsAPI,_app_monitoringComponent_monitoring,_app_monitoringComponent;var appId=routeTo[0].appId;var app=(_window_wixEmbedsAPI=window.wixEmbedsAPI)==null?void 0:_window_wixEmbedsAPI.getMonitoringConfig(appId);if((app==null?void 0:(_app_monitoringComponent=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring=_app_monitoringComponent.monitoring)==null?void 0:_app_monitoringComponent_monitoring.type)==="SENTRY"){var _app_monitoringComponent_monitoring_sentryOptions,_app_monitoringComponent_monitoring1,_app_monitoringComponent1;var dsn=app==null?void 0:(_app_monitoringComponent1=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring1=_app_monitoringComponent1.monitoring)==null?void 0:(_app_monitoringComponent_monitoring_sentryOptions=_app_monitoringComponent_monitoring1.sentryOptions)==null?void 0:_app_monitoringComponent_monitoring_sentryOptions.dsn;if(dsn){if(!routeTo[0].dsn&&dsn){routeTo[0].dsn=dsn}}}if(app){var _obj;event.extra=_extends({},event.extra,(_obj={},_obj[SENTRY_IS_NON_WIX_TPA_MARK_KEY]=!app.isWixTPA,_obj))}var _obj1;event.extra=_extends({},event.extra,(_obj1={},_obj1[SENTRY_REROUTE_DATA_KEY]=routeTo,_obj1[SENTRY_REROUTED_MARK_KEY]=true,_obj1))}}};function overrideSentryInitOptions(){var Sentry=window.Sentry;var makeMultiplexedTransport=Sentry.makeMultiplexedTransport,makeFetchTransport=Sentry.makeFetchTransport;var transport=makeMultiplexedTransport?makeMultiplexedTransport(makeFetchTransport,function(args){var event=args.getEvent();if(event&&event.extra&&event.extra[SENTRY_REROUTE_DATA_KEY]&&Array.isArray(event.extra[SENTRY_REROUTE_DATA_KEY])){return event.extra[SENTRY_REROUTE_DATA_KEY]}return[]}):makeFetchTransport;Sentry.init({transport:transport,integrations:[Sentry.browserTracingIntegration({instrumentNavigation:false,instrumentPageLoad:false})],tracePropagationTargets:[/^https:\/\/[a-zA-Z0-9-]+\.wix-app\.run\/.*/],attachStacktrace:true,beforeSend:function(event,hint){var customEvent=new CustomEvent("sentry-error",{cancelable:true,detail:{sentryEvent:event,sentryHint:hint}});var dispatchEventRes=window.dispatchEvent(customEvent);if(!dispatchEventRes){return null}if(event.extra){if(event.extra[SENTRY_REROUTED_MARK_KEY]){delete event.extra[SENTRY_REROUTED_MARK_KEY]}if(event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]){delete event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]}}return event}});if(Sentry.moduleMetadataIntegration){Sentry.addIntegration(Sentry.moduleMetadataIntegration());Sentry.addGlobalEventProcessor(function(event){addRerouteDataToSentryEvent(event);return event})}}window.sentryOnLoad=overrideSentryInitOptions})(); | |
| 2479 | + </script> | |
| 2480 | + <!-- Sentry Loader Script --> | |
| 2481 | + <script id="sentry"> | |
| 2482 | + !function(n,e,r,t,o,i,a,c,s){for(var u=s,f=0;f<document.scripts.length;f++)if(document.scripts[f].src.indexOf(i)>-1){u&&"no"===document.scripts[f].getAttribute("data-lazy")&&(u=!1);break}var p=[];function l(n){return"e"in n}function d(n){return"p"in n}function _(n){return"f"in n}var v=[];function y(n){u&&(l(n)||d(n)||_(n)&&n.f.indexOf("capture")>-1||_(n)&&n.f.indexOf("showReportDialog")>-1)&&L(),v.push(n)}function h(){y({e:[].slice.call(arguments)})}function g(n){y({p:n})}function E(){try{n.SENTRY_SDK_SOURCE="loader";var e=n[o],i=e.init;e.init=function(o){n.removeEventListener(r,h),n.removeEventListener(t,g);var a=c;for(var s in o)Object.prototype.hasOwnProperty.call(o,s)&&(a[s]=o[s]);!function(n,e){var r=n.integrations||[];if(!Array.isArray(r))return;var t=r.map((function(n){return n.name}));n.tracesSampleRate&&-1===t.indexOf("BrowserTracing")&&(e.browserTracingIntegration?r.push(e.browserTracingIntegration({enableInp:!0})):e.BrowserTracing&&r.push(new e.BrowserTracing));(n.replaysSessionSampleRate||n.replaysOnErrorSampleRate)&&-1===t.indexOf("Replay")&&(e.replayIntegration?r.push(e.replayIntegration()):e.Replay&&r.push(new e.Replay));n.integrations=r}(a,e),i(a)},setTimeout((function(){return function(e){try{"function"==typeof n.sentryOnLoad&&(n.sentryOnLoad(),n.sentryOnLoad=void 0)}catch(n){console.error("Error while calling `sentryOnLoad` handler:"),console.error(n)}try{for(var r=0;r<p.length;r++)"function"==typeof p[r]&&p[r]();p.splice(0);for(r=0;r<v.length;r++){_(i=v[r])&&"init"===i.f&&e.init.apply(e,i.a)}m()||e.init();var t=n.onerror,o=n.onunhandledrejection;for(r=0;r<v.length;r++){var i;if(_(i=v[r])){if("init"===i.f)continue;e[i.f].apply(e,i.a)}else l(i)&&t?t.apply(n,i.e):d(i)&&o&&o.apply(n,[i.p])}}catch(n){console.error(n)}}(e)}))}catch(n){console.error(n)}}var O=!1;function L(){if(!O){O=!0;var n=e.scripts[0],r=e.createElement("script");r.src=a,r.crossOrigin="anonymous",r.addEventListener("load",E,{once:!0,passive:!0}),n.parentNode.insertBefore(r,n)}}function m(){var e=n.__SENTRY__,r=void 0!==e&&e.version;return r?!!e[r]:!(void 0===e||!e.hub||!e.hub.getClient())}n[o]=n[o]||{},n[o].onLoad=function(n){m()?n():p.push(n)},n[o].forceLoad=function(){setTimeout((function(){L()}))},["init","addBreadcrumb","captureMessage","captureException","captureEvent","configureScope","withScope","showReportDialog"].forEach((function(e){n[o][e]=function(){y({f:e,a:arguments})}})),n.addEventListener(r,h),n.addEventListener(t,g),u||setTimeout((function(){L()}))}(window,document,"error","unhandledrejection","Sentry",'605a7baede844d278b89dc95ae0a9123','https://browser.sentry-cdn.com/7.120.3/bundle.tracing.es5.min.js',{"dsn":"https://605a7baede844d278b89dc95ae0a9123@sentry-next.wixpress.com/68","tracesSampleRate":1},true); | |
| 2483 | + </script> | |
| 2484 | + <!-- Sentry's makeMultiplexedTransport --> | |
| 2485 | + <script> | |
| 2486 | + !function(n){var r={},t=function(){return t=Object.assign||function(n){for(var r,t=1,e=arguments.length;t<e;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o]);return n},t.apply(this,arguments)};function e(n,r,t,e){return new(t||(t=Promise))((function(o,i){function u(n){try{f(e.next(n))}catch(n){i(n)}}function c(n){try{f(e.throw(n))}catch(n){i(n)}}function f(n){var r;n.done?o(n.value):(r=n.value,r instanceof t?r:new t((function(n){n(r)}))).then(u,c)}f((e=e.apply(n,r||[])).next())}))}function o(n,r){var t,e,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(c){return function(f){return function(c){if(t)throw new TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(u=0)),u;)try{if(t=1,e&&(o=2&c[0]?e.return:c[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,c[1])).done)return o;switch(e=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,e=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=r.call(n,u)}catch(n){c=[6,n],e=0}finally{t=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,f])}}}function i(n){var r="function"==typeof Symbol&&Symbol.iterator,t=r&&n[r],e=0;if(t)return t.call(n);if(n&&"number"==typeof n.length)return{next:function(){return n&&e>=n.length&&(n=void 0),{value:n&&n[e++],done:!n}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}function u(n,r){var t="function"==typeof Symbol&&n[Symbol.iterator];if(!t)return n;var e,o,i=t.call(n),u=[];try{for(;(void 0===r||r-- >0)&&!(e=i.next()).done;)u.push(e.value)}catch(n){o={error:n}}finally{try{e&&!e.done&&(t=i.return)&&t.call(i)}finally{if(o)throw o.error}}return u}function c(n){return n&&n.Math==Math?n:void 0}var f="object"==typeof globalThis&&c(globalThis)||"object"==typeof window&&c(window)||"object"==typeof self&&c(self)||"object"==typeof global&&c(global)||function(){return this}()||{},a={};var s=/^(?:(\w+):)\/\/(?:(\w+)(?::(\w+)?)?@)([\w.-]+)(?::(\d+))?\/(.+)/;function v(n){var r=s.exec(n);if(r){var t,e=u(r.slice(1),6),o=e[0],i=e[1],c=e[2],v=void 0===c?"":c,l=e[3],y=e[4],d=void 0===y?"":y,p="",h=e[5],b=h.split("/");if(b.length>1&&(p=b.slice(0,-1).join("/"),h=b.pop()),h){var w=h.match(/^\d+/);w&&(h=w[0])}return{protocol:(t={host:l,pass:v,path:p,projectId:h,port:d,protocol:o,publicKey:i}).protocol,publicKey:t.publicKey||"",pass:t.pass||"",host:t.host,port:t.port||"",path:t.path||"",projectId:t.projectId}}!function(n){if(!("console"in f))return n();var r=f.console,t={},e=Object.keys(a);e.forEach((function(n){var e=a[n];t[n]=r[n],r[n]=e}));try{n()}finally{e.forEach((function(n){r[n]=t[n]}))}}((function(){console.error("Invalid Sentry Dsn: ".concat(n))}))}function l(n,r){return e=t({sentry_key:n.publicKey,sentry_version:"7"},r&&{sentry_client:"".concat(r.name,"/").concat(r.version)}),Object.keys(e).map((function(n){return"".concat(encodeURIComponent(n),"=").concat(encodeURIComponent(e[n]))})).join("&");var e}function y(n,r){var t;return function(n,r){var t,e,o=n[1];try{for(var u=i(o),c=u.next();!c.done;c=u.next()){var f=c.value;if(r(f,f[0].type))return!0}}catch(n){t={error:n}}finally{try{c&&!c.done&&(e=u.return)&&e.call(u)}finally{if(t)throw t.error}}}(n,(function(n,e){return r.includes(e)&&(t=Array.isArray(n)?n[1]:void 0),!!t})),t}for(var d in r.makeMultiplexedTransport=function(n,r){return function(c){var f=n(c),a=new Map;function s(r,i){var u=i?"".concat(r,":").concat(i):r,f=a.get(u);if(!f){var s=v(r);if(!s)return;var d=function(n,r){void 0===r&&(r={});var t="string"==typeof r?r:r.tunnel,e="string"!=typeof r&&r.t?r.t.sdk:void 0;return t||"".concat(function(n){return"".concat(function(n){var r=n.protocol?"".concat(n.protocol,":"):"",t=n.port?":".concat(n.port):"";return"".concat(r,"//").concat(n.host).concat(t).concat(n.path?"/".concat(n.path):"","/api/")}(n)).concat(n.projectId,"/envelope/")}(n),"?").concat(l(n,e))}(s,c.tunnel);f=i?function(n,r){var i=this;return function(u){var c=n(u);return t(t({},c),{send:function(n){return e(i,void 0,void 0,(function(){var t;return o(this,(function(e){return(t=y(n,["event","transaction","profile","replay_event"]))&&(t.release=r),[2,c.send(n)]}))}))}})}}(n,i)(t(t({},c),{url:d})):n(t(t({},c),{url:d})),a.set(u,f)}return[r,f]}return{send:function(n){return e(this,void 0,void 0,(function(){function e(r){var t=r&&r.length?r:["event"];return y(n,t)}var i;return o(this,(function(o){switch(o.label){case 0:return 0===(i=r({envelope:n,getEvent:e}).map((function(n){return"string"==typeof n?s(n,void 0):s(n.dsn,n.release)})).filter((function(n){return!!n}))).length&&i.push(["",f]),[4,Promise.all(i.map((function(r){var e=u(r,2),o=e[0];return e[1].send(function(n,r){return e=r?t(t({},n[0]),{dsn:r}):n[0],void 0===(o=n[1])&&(o=[]),[e,o];var e,o}(n,o))})))];case 1:return[2,o.sent()[0]]}}))}))},flush:function(n){return e(this,void 0,void 0,(function(){var r,t,e,c,s,v,l,y,d,p;return o(this,(function(o){switch(o.label){case 0:return[4,f.flush(n)];case 1:r=[o.sent()],o.label=2;case 2:o.trys.push([2,7,8,9]),t=i(a),e=t.next(),o.label=3;case 3:return e.done?[3,6]:(c=u(e.value,2),s=c[1],l=(v=r).push,[4,s.flush(n)]);case 4:l.apply(v,[o.sent()]),o.label=5;case 5:return e=t.next(),[3,3];case 6:return[3,9];case 7:return y=o.sent(),d={error:y},[3,9];case 8:try{e&&!e.done&&(p=t.return)&&p.call(t)}finally{if(d)throw d.error}return[7];case 9:return[2,r.every((function(n){return n}))]}}))}))}}}},n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,d)&&(n.Sentry.Integrations[d]=r[d],n.Sentry[d]=r[d])}(window); | |
| 2487 | + </script> | |
| 2488 | + <!-- Sentry's moduleMetadataIntegration --> | |
| 2489 | + <script src="https://browser.sentry-cdn.com/7.120.3/modulemetadata.es5.min.js" crossorigin="anonymous" async></script> | |
| 2490 | + | |
| 2491 | + | |
| 2492 | +<script> | |
| 2493 | + window.resolveExternalsRegistryPromise = null | |
| 2494 | + const externalRegistryPromise = new Promise((r) => window.resolveExternalsRegistryPromise = r) | |
| 2495 | + window.resolveExternalsRegistryModule = (name) => externalRegistryPromise.then(() => window.externalsRegistry[name].onload()) | |
| 2496 | +</script> | |
| 2497 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["7101"],{78635(){window.__imageClientApi__=window.__imageClientApi__||{sdk:{}};let{lodash:e,react:o,reactDOM:n,imageClientApi:d,clientSdk:a}=window.externalsRegistry={lodash:{},react:{},reactDOM:{},imageClientApi:{},clientSdk:{}};d.loaded=new Promise(e=>{d.onload=e}),e.loaded=new Promise(o=>{e.onload=o}),a.loaded=new Promise(e=>{a.onload=e}),window.ReactDOM||(window.reactDOMReference=window.ReactDOM={loading:!0}),n.loaded=new Promise(e=>{n.onload=()=>{Object.assign(window.reactDOMReference||{},window.ReactDOM,{loading:!1}),e()}}),window.React||(window.reactReference=window.React={loading:!0}),o.loaded=new Promise(e=>{o.onload=()=>{Object.assign(window.reactReference||{},window.React,{loading:!1}),e()}}),window.reactAndReactDOMLoaded=Promise.all([o.loaded,n.loaded]),window.resolveExternalsRegistryPromise()}},function(e){e(e.s=78635)}]); | |
| 2498 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js.map</script> | |
| 2499 | + | |
| 2500 | +<!-- Add the rest of the ViewerModel --> | |
| 2501 | +<script type="application/json" id="wix-viewer-model">{"siteFeaturesConfigs":{"accessibilityBrowserZoom":{"isBuilder":false,"isStudio":true},"appMonitoring":{"appsWithMonitoring":[{"appId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"panoramaConfigByArtifactId":{"abandoned-carts-bm":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"externalIdByComponentId":{}},{"appId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"panoramaConfigByArtifactId":{"cms-compliance-dashboard-extensions":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"externalIdByComponentId":{}},{"appId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"panoramaConfigByArtifactId":{"site-search-builder":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"externalIdByComponentId":{"8244af1e-c249-4dd6-9308-e59e9d03556d":"site-search-builder"}}]},"assetsLoader":{"isStylableComponentInStructure":true,"hasBuilderComponents":false},"businessLoggerService":{},"businessLogger":{"isBuilderComponentModel":false},"clientSdk":{"appDefinitionIds":["27fcc256-f3f8-47df-a66a-8f8176cc7f99"]},"componentsRegistry":{"librariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}]},"consentPolicy":{"isWixSite":false,"isBuilderComponentModel":false},"cookiesManager":{"cookieSitePath":"\/","cookieSiteDomain":"www.leshabitationssf.com"},"customCss":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","appsWithCustomCss":{"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"gridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","filePath":"styles\/widget.css"}},"baseUrl":"https:\/\/www.leshabitationssf.com"},"cyclicTabbing":{"isBuilderComponentModel":false},"dataWixCodeSdk":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","environment":"LIVE","cloudDataUrlWithExternalBase":"https:\/\/www.leshabitationssf.com\/_api\/cloud-data"},"dynamicPages":{"prefixToRouterFetchData":{"location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"id":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5"}},"routerPrefix":"\/location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true},"pageRole":"02f40a08-ae1a-41b9-9ce4-a486105584ec","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"copy-of-location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"id":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1"}},"routerPrefix":"\/copy-of-location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true,"sort":[{"disponibilite":"desc"}]},"pageRole":"c8c6f29b-49c3-4685-b0e5-7f8174f91b94","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","Authorization":"7Z2k87SYKUo6k48NxA9QCEEYonc_0dWFXeASSRp80RM.eyJpbnN0YW5jZUlkIjoiYTFmNDUyMzQtODUwYS00YTc0LWE1M2QtNTY4MzQ0YTM0ODQ4IiwiYXBwRGVmSWQiOiJlNTkzYjBiZC1iNzgzLTQ1YjgtOTdjMi04NzNkNDJhYWNhZjQiLCJtZXRhU2l0ZUlkIjoiMzliOTg4MmYtOWU3MS00ZjkzLWJiNmQtYTg3MTY2Yzg1Y2RhIiwic2lnbkRhdGUiOiIyMDI2LTA4LTA5VDA2OjM1OjIzLjA3MVoiLCJkZW1vTW9kZSI6ZmFsc2UsImJpVG9rZW4iOiI5ODRkZGExYi0xYjdiLTA1ZTctMWU1MC1mZWYyMjI2YjE0OTIiLCJzaXRlT3duZXJJZCI6IjVhZTE3MDI5LWIyN2YtNDJmNi04YmMwLTVjYWZiZjYzYTIzNSIsImNhY2hlIjp0cnVlLCJzY2QiOiIyMDI0LTEwLTMxVDIzOjU4OjAwLjk5N1oifQ"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"routerPagesSeoToIdMap":{"blank-5":"x1rjp","category-page":"lbsg6","blank-5-1":"ebqqm"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticRoutedPageId":""},"editorWixCodeSdk":{"isBuilderComponentModel":false},"elementorySupportWixCodeSdk":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview","relativePath":"\/\/_api\/wix-code-public-dispatcher-ng\/siteview","gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","viewMode":"site","siteRevision":4},"environmentWixCodeSdk":{},"environment":{"editorType":"","domain":"leshabitationssf.com","previewMode":false,"isBuilderComponentModel":false},"fedopsWixCodeSdk":{"isWixSite":false,"shouldReportFedops":false},"lightbox":{"prefixToRouterFetchData":{"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257321|f9WXw5E06rqN"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"pageIdToPrefix":{"lbsg6":"category"},"isBuilderComponentModel":false},"locationWixCodeSdk":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"urlMappings":null},"mpaNavigation":{"forceMpaNavigation":false,"isRunningInDifferentSiteContext":false},"multilingual":{"originalLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"isOriginalLanguage":true,"currentLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"siteLanguages":[{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"hasLanguageSelector":true,"isEnabled":true,"baseUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","isPremiumDomain":true,"flagsUrl":"https:\/\/static.parastorage.com\/services\/linguist-flags\/1.1005.0"},"ooiTpaSharedConfig":{"imageSpriteUrl":"https:\/\/static.parastorage.com\/services\/santa-resources\/resources\/viewer\/editorUI\/fonts.v19.png","wixStaticFontsLinks":["https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/fonts.hz267ac7fkkfb3a18o8z.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/wixMadefor.j95mkaziqjnrn77aekr8.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/google.i6q038anl30o3b4lfbu6.css"]},"ooi":{"ooiComponentsData":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14666402-0bc7-b763-e875-e99840d131bd":{"sentryDsn":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"13afb094-84f9-739f-44fd-78d036adb028":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"244576c9-d856-49b9-af14-216071924e3b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"sentryDsn":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"sentryDsn":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"sentryDsn":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"04462ba4-2137-41bd-9460-0814554aae07":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"sentryDsn":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"sentryDsn":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d","noCssComponentUrl":"","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"211b5287-14e2-4690-bb71-525908938c81":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","widgetId":"211b5287-14e2-4690-bb71-525908938c81","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false}},"viewMode":"Site","formFactor":"Desktop","blogMobileComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/feed-page-mobile-viewer.bundle.min.js","userDomainMedia":{"baseUrl":"","prefixes":[]}},"pagesService":{"pages":{},"currentPageId":"","mainPageId":"xbscd"},"protectedPages":{"passwordProtected":{},"publicPageIds":["nd5z8","xbscd","ir3c1","tbw7n","x1rjp","fcpv5","digmz","c1dmp","ebqqm","og9af","ee5l4","p8nxp","ycxvu","mwate","zoy0o","tjnio","lbsg6","o2kzs","wdvyd","quqwi","jlcw6","ua72s","yg0c4","xsdnd","msjef"],"pageUriSeoToRouterPrefix":{"blank-5":"location","category-page":"category","blank-5-1":"copy-of-location"}},"renderer":{"disabledComponents":{},"isBuilderComponentModel":false},"reporter":{"userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremium":true,"isFBServerEventsAppProvisioned":true,"dynamicPagesIds":["x1rjp","lbsg6","ebqqm"]},"routerFetch":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","viewMode":"desktop"},"router":{"baseUrl":"https:\/\/www.leshabitationssf.com","mainPageId":"xbscd","pagesMap":{"nd5z8":{"pageId":"nd5z8","title":"Gestion AIR BNB","pageUriSEO":"gestion-courte-duree","pageJsonFileName":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658"},"xbscd":{"pageId":"xbscd","title":"Accueil","pageUriSEO":"accueil","pageJsonFileName":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658"},"ir3c1":{"pageId":"ir3c1","title":"CHOIX DE SERVICE","pageUriSEO":"popup-xxnez-evf5t-1-1-1-1","pageJsonFileName":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658"},"tbw7n":{"pageId":"tbw7n","title":"Gestion de copropriété","pageUriSEO":"gestion-de-copropriete","pageJsonFileName":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658"},"x1rjp":{"pageId":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5","pageJsonFileName":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658"},"dkrww":{"pageId":"dkrww","title":"Test","pageUriSEO":"blank"},"fcpv5":{"pageId":"fcpv5","title":"Bienvenue","pageUriSEO":"blank-1","pageJsonFileName":"5ae170_bfa3a744011b18064588457b988e1a12_658"},"digmz":{"pageId":"digmz","title":"Blog","pageUriSEO":"blog","pageJsonFileName":"5ae170_8753b09b9c3e820a689be83f44036cce_658"},"c1dmp":{"pageId":"c1dmp","title":"Accueil-Old","pageUriSEO":"home","pageJsonFileName":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658"},"ebqqm":{"pageId":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1","pageJsonFileName":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658"},"og9af":{"pageId":"og9af","title":"Side Cart","pageUriSEO":"popup-og9af","pageJsonFileName":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658"},"ee5l4":{"pageId":"ee5l4","title":"Post","pageUriSEO":"post","pageJsonFileName":"5ae170_797441264f67257d2b398b280f9566f8_658"},"p8nxp":{"pageId":"p8nxp","title":"Member Page","pageUriSEO":"members-area","pageJsonFileName":"5ae170_0e06c7b14722b1df76d73a702836cd87_658"},"ycxvu":{"pageId":"ycxvu","title":"Gestion d'immeubles à revenus","pageUriSEO":"forfaits","pageJsonFileName":"5ae170_6ef9978913518d22e3ff9884b42e9766_658"},"mwate":{"pageId":"mwate","title":"Thank You Page","pageUriSEO":"thank-you-page","pageJsonFileName":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658"},"zoy0o":{"pageId":"zoy0o","title":"Product Page","pageUriSEO":"product-page","pageJsonFileName":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658"},"tjnio":{"pageId":"tjnio","title":"Checkout","pageUriSEO":"checkout","pageJsonFileName":"5ae170_b758cd293bd2e09407018e3925e51e65_658"},"lbsg6":{"pageId":"lbsg6","title":"Category Page","pageUriSEO":"category-page","pageJsonFileName":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658"},"o2kzs":{"pageId":"o2kzs","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658"},"wdvyd":{"pageId":"wdvyd","title":"Mise en marché d'un logement","pageUriSEO":"particulier","pageJsonFileName":"5ae170_b86b7b332566ae1077a701be4c21b168_658"},"quqwi":{"pageId":"quqwi","title":"Cart Page","pageUriSEO":"cart-page","pageJsonFileName":"5ae170_adf9bd4deafc8141e4494d55c958864f_658"},"jlcw6":{"pageId":"jlcw6","title":"Obtenir un devis","pageUriSEO":"devis","pageJsonFileName":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658"},"ua72s":{"pageId":"ua72s","title":"Gestion Résidentielle & Commerciale","pageUriSEO":"gestion-residentielle-commerciale","pageJsonFileName":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658"},"yg0c4":{"pageId":"yg0c4","title":"Search Results","pageUriSEO":"search","pageJsonFileName":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658"},"xsdnd":{"pageId":"xsdnd","title":"Mise en Marché - Formulaire","pageUriSEO":"formulaire-mise-en-marché","pageJsonFileName":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658"},"msjef":{"pageId":"msjef","title":"À Propos","pageUriSEO":"entreprise","pageJsonFileName":"5ae170_a275d88f982fef975679f7c85059c3df_658"}},"disableStaticPagesUrlHierarchy":false,"routes":{".\/gestion-courte-duree":{"type":"Static","pageId":"nd5z8"},".\/accueil":{"type":"Static","pageId":"xbscd"},".\/popup-xxnez-evf5t-1-1-1-1":{"type":"Static","pageId":"ir3c1"},".\/gestion-de-copropriete":{"type":"Static","pageId":"tbw7n"},".\/blank":{"type":"Static","pageId":"dkrww"},".\/blank-1":{"type":"Static","pageId":"fcpv5"},".\/blog":{"type":"Static","pageId":"digmz"},".\/home":{"type":"Static","pageId":"c1dmp"},".\/popup-og9af":{"type":"Static","pageId":"og9af"},".\/post":{"type":"Static","pageId":"ee5l4"},".\/members-area":{"type":"Static","pageId":"p8nxp"},".\/forfaits":{"type":"Static","pageId":"ycxvu"},".\/thank-you-page":{"type":"Static","pageId":"mwate"},".\/product-page":{"type":"Static","pageId":"zoy0o"},".\/checkout":{"type":"Static","pageId":"tjnio"},".\/fullscreen-page":{"type":"Static","pageId":"o2kzs"},".\/particulier":{"type":"Static","pageId":"wdvyd"},".\/cart-page":{"type":"Static","pageId":"quqwi"},".\/devis":{"type":"Static","pageId":"jlcw6"},".\/gestion-residentielle-commerciale":{"type":"Static","pageId":"ua72s"},".\/search":{"type":"Static","pageId":"yg0c4"},".\/formulaire-mise-en-marché":{"type":"Static","pageId":"xsdnd"},".\/entreprise":{"type":"Static","pageId":"msjef"},".\/location":{"type":"Dynamic","pageIds":["x1rjp"]},".\/category":{"type":"Dynamic","pageIds":["lbsg6"]},".\/copy-of-location":{"type":"Dynamic","pageIds":["ebqqm"]},".\/":{"type":"Static","pageId":"xbscd"}},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"isWixSite":false,"isBuilderComponentModel":false,"partialRouteMatchingAllowed":false},"searchWixCodeSdk":{"language":"fr"},"seo":{"context":{"siteName":"SF Habitations","siteUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","indexSite":true,"defaultUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","currLangIsOriginal":true,"siteOgImage":"https:\/\/static.wixstatic.com\/media\/5ae170_6fb7dcec7ab646f983b75f6ccc999a44%7Emv2.jpg","homePageTitle":"Accueil","businessName":"Les Habitations SF","businesDescription":"Gestion locative, entretien, réparations, relation locataires : un service complet pour alléger votre charge et garantir un suivi de qualité.","businesLocale":"fr-ca","businesLogo":"https:\/\/static.wixstatic.com\/media\/836e14_d7dc6e8ff93643cbad486bb4e6ff054a.svg","businessLocationCountry":"CA","businessLocationFormatted":"Joliette, QC, Canada","businesLocationsState":"QC","businessLocationCity":"Joliette","businessLocationCoordinates":{"latitude":46.0232315,"longitude":-73.442545},"businessSchedule":{},"currency":"CAD","experiments":{"specs.seo.EnableFaqSD":"false","specs.seo.enableLangCheck":"true","specs.seo.useChunkedSiteStructureForMembersArea":"true"},"platformAppsExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"bookings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}},"siteLanguages":[{"languageCode":"x-default","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"currLangCode":"fr","seoLang":"fr-ca","currLangResolutionMethod":"Subdirectory"},"userPatterns":[{"patternType":"BLOG_POST","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"ai-generation-disabled\"}}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-ebqqm","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"index\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-x1rjp","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"noarchive, nofollow, noindex, nosnippet\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"}],"metaTags":[{"name":"fb_admins_meta_tag","value":"","property":false},{"name":"google-site-verification","value":"10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM","property":false}],"customHeadTags":"","isInSEO":false,"hasBlogAmp":false,"mainPageId":"xbscd","listPageIds":[]},"serviceRegistrar":{},"sessionManager":{"isRunningInDifferentSiteContext":false,"expiryTimeoutOverride":0,"appsInstances":{},"sessionModel":{}},"siteMembersWixCodeSdk":{"isPreviewMode":false,"isEditMode":false,"smToken":"","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e"},"siteMembers":{"collectionExposure":"Public","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e","smToken":"","protectedHomepage":false,"isTemplate":false,"loginSocialBarOnSite":true,"routerPrefix":"","isCommunityInstalled":false,"baseUrl":"https:\/\/www.leshabitationssf.com","memberInfoAppId":17345},"siteScrollBlocker":{"isBuilderComponentModel":false},"siteWixCodeSdk":{"fontFaceServerUrl":"https:\/\/serverless.parastorage.com\/_serverless\/site-sdk-server\/v1\/style","siteDisplayName":"SF Habitations","siteRevision":4,"regionalSettings":"fr-ca","language":"fr","currency":"CAD","mainPageId":"xbscd","pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"routerPrefixes":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"name":"location","prefix":"\/location","type":"dynamicPages"},"category":{"name":"category","prefix":"\/category","type":"dynamicPages"},"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"name":"copy-of-location","prefix":"\/copy-of-location","type":"dynamicPages"}},"timezone":"America\/Toronto","pageIdToTitle":{"nd5z8":"Gestion AIR BNB","xbscd":"Accueil","ir3c1":"CHOIX DE SERVICE","tbw7n":"Gestion de copropriété","x1rjp":"Location (Item)","dkrww":"Test","fcpv5":"Bienvenue","digmz":"Blog","c1dmp":"Accueil-Old","ebqqm":"Copy of Location (Item)","og9af":"Side Cart","ee5l4":"Post","p8nxp":"Member Page","ycxvu":"Gestion d'immeubles à revenus","mwate":"Thank You Page","zoy0o":"Product Page","tjnio":"Checkout","lbsg6":"Category Page","o2kzs":"Fullscreen Page","wdvyd":"Mise en marché d'un logement","quqwi":"Cart Page","jlcw6":"Obtenir un devis","ua72s":"Gestion Résidentielle & Commerciale","yg0c4":"Search Results","xsdnd":"Mise en Marché - Formulaire","msjef":"À Propos"},"urlMappings":null,"viewMode":"Site"},"speculationRules":{"currentPagePath":"\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee"},"ssrCache":{},"tpaCommons":{"widgetsClientSpecMapData":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","tpaWidgetId":"shoutout_feed","appPage":{},"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","isWixTPA":true,"allowScrolling":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","appPage":{"id":"product_page","name":"product_page","defaultPage":"","hidden":true,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","tpaWidgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","appPage":{"id":"Side Cart","name":"Side Cart","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","tpaWidgetId":"add_to_cart_button","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","tpaWidgetId":"grid_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","tpaWidgetId":"","appPage":{"id":"Success Popup","name":"Success Popup","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","tpaWidgetId":"slider_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","tpaWidgetId":"shopping_cart_icon","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"244576c9-d856-49b9-af14-216071924e3b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","tpaWidgetId":"244576c9-d856-49b9-af14-216071924e3b","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","tpaWidgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetUrl":"\/","tpaWidgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","appPage":{"id":"Payment Request Page","name":"Payment Request Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","tpaWidgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","appPage":{"id":"Category Page","name":"Category Page","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","tpaWidgetId":"product_widget","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","tpaWidgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"widgetUrl":"\/","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"widgetUrl":"\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"499ca64c-5f50-4223-bb91-6d101eaaddae":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"3f1cd43a-87ec-4b1f-b07f-8a443a683fbd":{"widgetUrl":"\/","appPage":{},"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appDefinitionId":"cf06bdf3-5bab-4f20-b165-97fb723dac6a","isWixTPA":true,"allowScrolling":false},"8039fd6a-054b-4289-8bd3-36035c51ecad":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"55adbbae-6799-44b3-98e4-ad5b2667a85b":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"2421f8bc-e686-4c32-8ab6-bc8e0d8b7455":{"widgetUrl":"\/","appPage":{},"applicationId":61,"appDefinitionName":"Wix CMS","appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"allowScrolling":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","tpaWidgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","appPage":{},"applicationId":1934,"appDefinitionName":"Wix Forms","appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","isWixTPA":true,"allowScrolling":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetUrl":"https:\/\/progallery.wixapps.net\/gallery.html","mobileUrl":"https:\/\/progallery.wixapps.net\/gallery.html","tpaWidgetId":"pro-gallery","appPage":{},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":false},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetUrl":"https:\/\/progallery.wixapps.net\/fullscreen","mobileUrl":"https:\/\/progallery.wixapps.net\/fullscreen","appPage":{"id":"fullscreen_page","name":"Fullscreen Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":true,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":true},"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-comments-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-comments-page","appPage":{"id":"member-comments-page","name":"Blog Comments ","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","mobileUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","tpaWidgetId":"recent-posts-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","appPage":{"id":"blog","name":"Blog","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5fdc6c03-080d-4872-b567-24146c82fae5":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","tpaWidgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","tpaWidgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5940091f-797c-4e86-9c57-73fcfd87425f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5520a99-1725-4b88-a85f-c439916890c8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"68a2d745-328b-475d-9e36-661f678daa31":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","tpaWidgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-likes-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-likes-page","appPage":{"id":"member-likes-page","name":"Blog Likes","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","mobileUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","tpaWidgetId":"custom-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"26858b64-aad8-42ab-8c63-f19009198c7b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"d134b0c9-8085-415a-9479-b555374ba958":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","tpaWidgetId":"rss-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","tpaWidgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"211b5287-14e2-4690-bb71-525908938c81":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","appPage":{"id":"post","name":"Post","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","tpaWidgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","tpaWidgetId":"813eb645-c6bd-4870-906d-694f30869fd9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"bc7fa914-015b-4c32-a323-e5472563a798":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7466726a-84cf-41c8-be6b-1694445dc539":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","appPage":{"id":"member-drafts-page","name":"My Drafts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","tpaWidgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","appPage":{"id":"My Posts","name":"My Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-posts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-posts-page","appPage":{"id":"member-posts-page","name":"Blog Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"widgetUrl":"\/","appPage":{},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"97466558-6e7b-43e6-9734-82123ef4c3f3":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":6471,"appDefinitionName":"Category Header","appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","isWixTPA":true,"allowScrolling":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","tpaWidgetId":"faq_widget","appPage":{},"applicationId":8517,"appDefinitionName":"Wix FAQ","appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","isWixTPA":true,"allowScrolling":false},"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"widgetUrl":"\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"137d8ff3-4c89-dc2e-68f2-82c77743cee5":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","mobileUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","tpaWidgetId":"powr_twitter_feed","appPage":{},"applicationId":12583,"appDefinitionName":"Social Media Feed","appDefinitionId":"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f","isWixTPA":false,"allowScrolling":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","tpaWidgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","appPage":{},"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","isWixTPA":true,"allowScrolling":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","tpaWidgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","appPage":{},"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","isWixTPA":true,"allowScrolling":false},"33159c18-8226-4068-91e8-216f5f2c75f8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6e0d0836-6240-4688-b4c2-00095de015d9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"60039b18-5d94-45b7-bd03-b7008213f906":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"widgetUrl":"\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"9fa041da-f429-4a24-8579-46c57a985b33":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"17315fb1-7be4-4492-a196-c1abb2817309":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"f67f8f07-eac7-470e-99f5-213f121b5655":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"db646d31-6817-4184-87df-c5496c9da6b9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5956d247-32d0-43af-9a49-7d1090c1e666":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetUrl":"\/","tpaWidgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","appPage":{"id":"member_settings_page","name":"member_settings_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetUrl":"\/","tpaWidgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","appPage":{"id":"member_page","name":"member_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"596a6688-3ad7-46f7-bb9c-00023225876d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17128,"appDefinitionName":"My Addresses","appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","isWixTPA":true,"allowScrolling":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17345,"appDefinitionName":"Member Account Info","appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17947,"appDefinitionName":"My Wallet","appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","isWixTPA":true,"allowScrolling":false},"04462ba4-2137-41bd-9460-0814554aae07":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","tpaWidgetId":"04462ba4-2137-41bd-9460-0814554aae07","appPage":{"id":"Settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","tpaWidgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","appPage":{"id":"Notifications","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18469,"appDefinitionName":"Members About","appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","isWixTPA":true,"allowScrolling":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","tpaWidgetId":"profile","appPage":{},"applicationId":18823,"appDefinitionName":"Profile Card","appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"169204d8-21be-4b45-b263-a997d31723dc":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","appPage":{"id":"Booking Service Page","name":"Service Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","tpaWidgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","appPage":{"id":"bookings_member_area","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","tpaWidgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","appPage":{"id":"bookings_list","name":"Book Online","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":4,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","tpaWidgetId":"service_list_widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","tpaWidgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetUrl":"https:\/\/editor.wix.com\/","tpaWidgetId":"bookings_timetable_daily","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","tpaWidgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","appPage":{"id":"Booking Form","name":"Booking Form","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","tpaWidgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","tpaWidgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","appPage":{"id":"My Bookings","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","mobileUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","tpaWidgetId":"widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","tpaWidgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","appPage":{"id":"Booking Calendar","name":"Booking Calendar","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetUrl":"https:\/\/engage.wixapps.net\/chat-widget-server\/renderChatWidget\/index","tpaWidgetId":"wix_visitors","appPage":{},"applicationId":20574,"appDefinitionName":"Wix Chat","appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","isWixTPA":true,"allowScrolling":false}},"appsClientSpecMapData":{"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appFields":{"premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.3913.0","hipaaCompliant":true},"isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"applicationId":41,"appDefinitionName":"Checkout & Orders","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6749.0","hipaaCompliant":true,"platform":{"routerHttpMethod":"GET","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/editor.bundle.min.js","routerServiceUrl":"\/_api\/wixstores-tpa-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","errorReporting":{},"platformOnly":true,"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:serverless.wixstores-tpa-site-structure-service"}}},"isWixTPA":true},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^2.20.0","installedVersion":"^2.0.0"},"isWixTPA":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"applicationId":45,"appDefinitionName":"Instagram Feed Social","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.6.0","installedVersion":"^5.0.0"},"isWixTPA":false},"cf06bdf3-5bab-4f20-b165-97fb723dac6a":{"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.13.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"dad178e5-571d-45bf-89a0-c1f97242199f":{"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appFields":{"permissionsEnforced":true,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^1.6.0","installedVersion":"^1.0.0"},"isWixTPA":false},"e593b0bd-b783-45b8-97c2-873d42aacaf4":{"applicationId":61,"appDefinitionName":"Wix CMS","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-data-client-app\/1.29.0\/webworker\/wixDataEditor.umd.min.js","editorScriptUrlTemplate":"<%= serviceUrl('wix-data-client-app', 'webworker\/wixDataEditor.umd.min.js') %>"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^2.103.0","hipaaCompliant":true},"isWixTPA":true},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"applicationId":1934,"appDefinitionName":"Wix Forms","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"},"viewer":{"errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"}},"ooiInEditor":true},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.1326.0","hipaaCompliant":true},"isWixTPA":true},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"cloneAppDataUrl":"https:\/\/progallery.wixapps.net\/_api\/gallery\/clone","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"},"width":{"desktop":{},"tablet":{},"mobile":{}},"shouldCloneDataPerComponent":true,"viewer":{"errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"}},"studio":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.979.0","hipaaCompliant":true},"isWixTPA":true},"14bcded7-0066-7c35-14d7-466cb3f09103":{"applicationId":4774,"appDefinitionName":"Wix Blog","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/editorScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"migratedToNewPlatformApi":true,"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.2252.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"}},"studio":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.npm.communities-blog-node-api"}},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.5447.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"applicationId":5582,"appDefinitionName":"Wix Site Search","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3605.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.454.0","hipaaCompliant":true},"isWixTPA":true},"7479d596-137c-4fa3-89cd-d7091042ba61":{"applicationId":6471,"appDefinitionName":"Category Header","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"migratedToNewPlatformApi":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('blog-category-header-widget', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","errorReporting":{},"viewer":{"errorReporting":{}},"studio":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.194.0","hipaaCompliant":true},"isWixTPA":true},"14c92d28-031e-7910-c9a8-a670011e062d":{"applicationId":8517,"appDefinitionName":"Wix FAQ","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^5.341.0","hipaaCompliant":true,"installedVersion":"^5.0.0"},"isWixTPA":true},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"applicationId":10725,"appDefinitionName":"TikTok Feed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^3.12.0","installedVersion":"^3.0.0"},"isWixTPA":false},"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f":{"applicationId":12583,"appDefinitionName":"Social Media Feed","appFields":{"featuresForNewPackagePicker":[],"packagePickerV2":[{"model":{"features":[{"description":"Remove the POWr logo from the bottom of your Twitter Feed.","name":"No POWr Logo","id":"3656b178-e0c5-4b22-8c35-462d7f0f6311"},{"description":"The amount of time before your Twitter Feed is updated with new posts.","name":"Content Refresh Rate","id":"5d8f487a-5aa6-4574-93af-361c7cb5890a"},{"description":"The maximum number of tweets you can display in your feed.","name":"Number of Tweets","id":"d528cf92-5b75-47fb-ae3d-9753eaf5beff"},{"description":"The number of handles and\/or hashtags you can follow in one feed.","name":"Number of @Handles & #Hashtags","id":"86bb2ab2-35c0-4c59-9696-3be86a69ea77"},{"description":"Let visitors retweet or favorite posts from your Twitter Feed.","name":"Retweet\/Favorite Posts","id":"b11b6830-91bd-48c4-b4f1-93823f444870"},{"description":"Add custom CSS or JavaScript in advanced settings for further customization.","name":"Custom CSS & JavaScript","id":"d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57"}],"isExternalPricing":false,"languageCode":"en","isInAppPurchase":false,"freeTrialDays":0,"plans":[{"name":"Starter","vendorId":"premium","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"12 Hours","3656b178-e0c5-4b22-8c35-462d7f0f6311":"","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"5","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"2"},"id":"3e64f4a2-4a40-4e68-97a2-e8a6d14c94e8","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":3.9900000095367,"yearlyPrice":3.3099999427795}},{"name":"Pro","vendorId":"Pro","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"3 Hours","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"5","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"15","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"612c4229-6909-4b67-a7b3-d55295452319","mostPopular":true,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":30,"monthlyPrice":7.9899997711182,"yearlyPrice":5.5900001525879}},{"name":"Business","vendorId":"business","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"20 Minutes","d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57":"","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"10","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"50","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"121a889c-1d4e-445b-be2b-90febcc8dbd7","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":11.989999771118,"yearlyPrice":9.9499998092651}}],"businessModel":"FREEMIUM"},"appId":"a365d579-778c-4392-ba12-f5ed64901e1a","languageCode":"en"}],"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^3.28.0","installedVersion":"^3.0.0"},"isWixTPA":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('express-checkout-widget-ooi', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"df892fe9-626f-44c9-a328-e29f93880b38":{"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6.0","hipaaCompliant":true},"isWixTPA":true},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"applicationId":15442,"appDefinitionName":"Product Page Blocks","appFields":{"platform":{"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"},"width":{"desktop":{},"tablet":{},"mobile":{}},"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"viewer":{"errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"}},"studio":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^27.174.0","hipaaCompliant":true},"isWixTPA":true},"b976560c-3122-4351-878f-453f337b7245":{"applicationId":17071,"appDefinitionName":"Members Area","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"},"editorScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'editorScript.bundle.min.js') %>","viewer":{"errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"}},"studio":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.members.members-area-site-structure-api"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^12.453.0","hipaaCompliant":true},"isWixTPA":true},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"applicationId":17128,"appDefinitionName":"My Addresses","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"applicationId":17345,"appDefinitionName":"Member Account Info","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.265.0","hipaaCompliant":true},"isWixTPA":true},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"applicationId":17947,"appDefinitionName":"My Wallet","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"},"viewer":{"errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.80.0","hipaaCompliant":true},"isWixTPA":true},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications-preferences', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"},"viewer":{"errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.23.0","hipaaCompliant":true},"isWixTPA":true},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"},"viewer":{"errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.45.0","hipaaCompliant":true},"isWixTPA":true},"14dbef06-cc42-5583-32a7-3abd44da4908":{"applicationId":18469,"appDefinitionName":"Members About","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.223.0","hipaaCompliant":true},"isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"applicationId":18823,"appDefinitionName":"Profile Card","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.300.0","hipaaCompliant":true},"isWixTPA":true},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"applicationId":19310,"appDefinitionName":"Wix Bookings","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"routerServiceUrl":"\/_serverless\/bookings-viewer-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.10281.0","hipaaCompliant":true,"installedVersion":"^0.0.0","appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.bookings.services-2"}}},"isWixTPA":true},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"applicationId":20574,"appDefinitionName":"Wix Chat","appFields":{"platform":{"optionalApplication":true,"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/editor-script.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"mostPopularPackage":"Sales","premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"featuresForNewPackagePicker":[{"forPackages":[{"value":"50","packageId":"Professional"},{"value":"150","packageId":"Sales"},{"value":"Unlimited","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Teams"}]}],"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.190.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true}},"previewMode":false,"siteRevision":4,"viewMode":"site","editorOrSite":"site","userFileDomainUrl":"filesusr.com","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremiumDomain":true,"routersConfig":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"routerByPrefix":{"location":"routers-m338s9i0","category":"routers-m6saa70b","copy-of-location":"routers-m8omcibz"},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","tpaModalConfig":{"wixTPAs":{"139ef4fa-c108-8f9a-c7be-d5f492a2c939":true,"7efa9936-86f7-44c6-880b-7bae4e044a3d":true,"13ee94c1-b635-8505-3391-97919052c16f":true,"55cd9036-36bb-480b-8ddc-afda3cb2eb8d":true,"35aec784-bbec-4e6e-abcb-d3d724af52cf":true,"8ea9df15-9ff6-4acf-bbb8-8d3a69ae5841":true,"14ce1214-b278-a7e4-1373-00cebd1bef7c":true,"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":true,"141fbfae-511e-6817-c9f0-48993a7547d1":true,"d70b68e2-8d77-4e0c-9c00-c292d6e0025e":true,"146c0d71-352e-4464-9a03-2e868aabe7b9":true,"307ba931-689c-4b55-bb1d-6a382bad9222":true,"14b89688-9b25-5214-d1cb-a3fb9683618b":true,"ea2821fc-7d97-40a9-9f75-772f29178430":true,"9bead16f-1c73-4cda-b6c4-28cff46988db":true,"1480c568-5cbd-9392-5604-1148f5faffa0":true,"94bc563b-675f-41ad-a2a6-5494f211c47b":true,"14e12b04-943e-fd32-456d-70b1820a2ff2":true,"14bca956-e09f-f4d6-14d7-466cb3f09103":true,"150ae7ee-c74a-eecd-d3d7-2112895b988a":true,"f123e8f1-4350-4c9b-b269-04adfadda977":true,"4b10fcce-732d-4be3-9d46-801d271acda9":true,"9050a8e8-0fd3-4936-af2a-5ae4f84c41b8":true,"1973457f-c021-4da5-941f-58444ff761d4":true,"1380b703-ce81-ff05-f115-39571d94dfcd":true,"e4b5f1bc-c77a-4319-a60d-a46acb17f6fc":true,"14d7032a-0a65-5270-cca7-30f599708fed":true,"6580b7e9-4031-4a62-a0a5-8e2fa92e8e18":true,"7516f85b-0868-4c23-9fcb-cea7784243df":true,"57d13128-4a4c-494b-80b3-a6fb2e28018d":true,"45c44b27-ca7b-4891-8c0d-1747d588b835":true,"fc9314bc-a317-4a2b-a9d4-5ad21cc57856":true,"50d8c12f-715e-41ad-be25-d0f61375dbee":true,"f4d83b06-b408-4f3b-afd4-de8db311d7d8":true,"cf06bdf3-5bab-4f20-b165-97fb723dac6a":true,"e81d3ca5-7ca5-4188-bfac-f4997a34065e":true,"399a2612-a042-4fb7-aeff-ed331c7d1c39":true,"2f70e2b4-ff36-472e-bdb9-ce393b13669e":true,"e593b0bd-b783-45b8-97c2-873d42aacaf4":true,"225dd912-7dea-4738-8688-4b8c6955ffc2":true,"14271d6f-ba62-d045-549b-ab972ae1f70e":true,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":true,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":true,"215238eb-22a5-4c36-9e7b-e7c08025e04e":true,"47e245ca-1a42-4d6a-a69a-c125bc839b40":true,"df892fe9-626f-44c9-a328-e29f93880b38":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":true,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":true,"b976560c-3122-4351-878f-453f337b7245":true,"1505b775-e885-eb1b-b665-1e485d9bf90e":true,"14cffd81-5215-0a7f-22f8-074b0e2401fb":true,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":true,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":true,"14f25924-5664-31b2-9568-f9c5ed98c9b1":true,"14dbef06-cc42-5583-32a7-3abd44da4908":true,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":true,"14517e1a-3ff0-af98-408e-2bd6953c36a2":true,"14d84998-ae09-1abf-c6fc-3f3cace5bf19":true}},"appSectionParams":{},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","isMobileView":false,"isMobileDevice":false,"deviceType":"desktop","extras":{"currency":"CAD"},"tpaDebugParams":{"debugApp":null,"petri_ovr":null},"locale":"fr","timeZone":"America\/Toronto","shouldRenderTPAsIframe":true,"debug":false,"regionalLanguage":"fr","isBuilderComponentModel":false,"fragmentInstanceToPageId":{}},"widgetWixCodeSdk":{"isBuilderComponentModel":false},"windowWixCodeSdk":{"locale":"fr-ca","isMobileFriendly":true,"formFactor":"Desktop","pageIdToRouterAppDefinitionId":{"x1rjp":"dataBinding","lbsg6":"1380b703-ce81-ff05-f115-39571d94dfcd","ebqqm":"dataBinding"}},"wixCustomElementComponent":{"shouldLoadAllExternalScripts":true,"widgetsToRenderOnFreeSites":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":true,"8039fd6a-054b-4289-8bd3-36035c51ecad":true,"55adbbae-6799-44b3-98e4-ad5b2667a85b":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-ljbqi":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-fz6ni":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rluvr":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rmno8":true,"14bcded7-0066-7c35-14d7-466cb3f09103-sw47o":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ak2wd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-q8dzf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u5w25":true,"14bcded7-0066-7c35-14d7-466cb3f09103-hoxv1":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pit6d":true,"14bcded7-0066-7c35-14d7-466cb3f09103-prihd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-dqjva":true,"14bcded7-0066-7c35-14d7-466cb3f09103-nz8hi":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e9hqn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e3jvn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-gcv5t":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ghrxf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-liy9s":true,"14bcded7-0066-7c35-14d7-466cb3f09103-eii64":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u61rq":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pzdqd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-yrjyo":true,"14bcded7-0066-7c35-14d7-466cb3f09103-wzdp6":true,"14bcded7-0066-7c35-14d7-466cb3f09103-y3apm":true,"14bcded7-0066-7c35-14d7-466cb3f09103-bu1xw":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pz2i2":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e25z0":true,"14bcded7-0066-7c35-14d7-466cb3f09103-b0z74":true,"14bcded7-0066-7c35-14d7-466cb3f09103-h77jn":true,"7479d596-137c-4fa3-89cd-d7091042ba61-ruxce":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-rmno8":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-x5kmw":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-vh9q1":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-wubn4":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x7lat":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bkcdi":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bqb3v":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x4vxv":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-y4976":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-b4kha":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-h9lrc":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-hxdg5":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-z50e2":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-yl1zs":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-v8gqn":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-r7gvz":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-ish0i":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-uu804":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mp016":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-fgl5b":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mt2f0":true,"b976560c-3122-4351-878f-453f337b7245-aehnv":true,"b976560c-3122-4351-878f-453f337b7245-uuc0d":true,"b976560c-3122-4351-878f-453f337b7245-zuaoa":true,"b976560c-3122-4351-878f-453f337b7245-ng58u":true,"b976560c-3122-4351-878f-453f337b7245-a1ugz":true,"b976560c-3122-4351-878f-453f337b7245-xhv4l":true,"b976560c-3122-4351-878f-453f337b7245-mty3l":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-flb7a":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cv54f":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-drzkv":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cyng5":true},"wixCodeBundlersUrlData":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","appDefIdToWixCodeBundlerUrlData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/a9a3d486-0959-4998-8101-804533f57449\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_a9a3d486-0959-4998-8101-804533f57449\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9ebcb758-3944-4933-bba8-ff8a92a98050\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9ebcb758-3944-4933-bba8-ff8a92a98050\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/71869e96-79b7-49b9-b6f9-e32bcf00ac52\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_71869e96-79b7-49b9-b6f9-e32bcf00ac52\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/21056c2c-144a-488f-912d-5fb0e1262beb\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_21056c2c-144a-488f-912d-5fb0e1262beb\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9cd056c2-0ac6-492c-a87e-9077d75d5345\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9cd056c2-0ac6-492c-a87e-9077d75d5345\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/4741eabd-b87f-4c4a-8280-f696c07fc433\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_4741eabd-b87f-4c4a-8280-f696c07fc433\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/1f3cdaf3-1ef1-491b-8743-1894bb51257c\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_1f3cdaf3-1ef1-491b-8743-1894bb51257c\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"b976560c-3122-4351-878f-453f337b7245":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/5d5e1403-dffe-4565-948c-03a8e2f4251e\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_5d5e1403-dffe-4565-948c-03a8e2f4251e\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"}}},"customElementWidgets":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99-03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"scriptUrl":"https:\/\/hfkynx-feb58f81261918cf-certifiedcode.wix-host.com\/_wix_126f0f6e-custom-elements\/03721c8b-93e9-4a80-a4e5-88c51e3a2634-u95sDHB4.js","tagName":"tiktok-embed","scriptType":"ES_MODULE"}}},"wixEmbedsApi":{"isAdminPage":false},"platform":{"sdksStaticPaths":{"mainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/mainSdks.4ad69533.chunk.min.js","nonMainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/nonMainSdks.785ca7c9.chunk.min.js"},"clientWorkerUrl":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/clientWorker.1179f420.bundle.min.js","bootstrapData":{"isMobileView":false,"isMobileAppBuilder":false,"appsSpecData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","type":"public","instanceId":"664e3b24-55d5-4370-992a-906c83427cd5","appDefinitionName":"Old Wix Forms and Payments","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","type":"siteextension","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","isIdentityTokenAppSpec":false,"isModuleFederated":false},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","type":"public","instanceId":"b743bf2f-48be-4b91-bc2d-cae97bd2ebdb","appDefinitionName":"Checkout & Orders","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","type":"public","instanceId":"c182465f-40e5-45a3-8fe7-d4ed22dc4e25","appDefinitionName":"TikTok Videos & Profile Embed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","type":"public","instanceId":"aa397d12-cbcc-4918-9926-e9879ef7bc6e","appDefinitionName":"Instagram Feed Social","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","type":"public","instanceId":"511414b8-bd16-4b71-90f1-9ee07097cddb","appDefinitionName":"Wix Forms","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","type":"public","instanceId":"ea2e7592-fb1b-4285-8b45-6b6f7338002d","appDefinitionName":"Wix Pro Gallery","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","type":"public","instanceId":"8415270e-dd8b-4544-aa96-8bca40689dc9","appDefinitionName":"Wix Blog","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","type":"public","instanceId":"a68016c7-acaf-416c-86c2-82631aea2a69","appDefinitionName":"Wix Site Search","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","type":"public","instanceId":"ad56a9d7-29a5-415f-a257-ce34d1fe5c74","appDefinitionName":"Category Header","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","type":"public","instanceId":"09069977-8940-4543-97e9-68546fad2a50","appDefinitionName":"Wix FAQ","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","type":"public","instanceId":"f556be82-4770-42a8-ad1e-82c9933fd877","appDefinitionName":"TikTok Feed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefinitionId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","type":"public","instanceId":"b0d1b4e0-5f76-4ddf-9654-45abb578c2f4","appDefinitionName":"Wix Stores","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","type":"public","instanceId":"d37f86b4-371b-4434-a667-fbfc23f03483","appDefinitionName":"Express Checkout Widget OOI","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","type":"public","instanceId":"2b3d7f83-14f9-44e1-a1d5-c4f0be5dbfbe","appDefinitionName":"payment-methods-banner-ooi","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","type":"public","instanceId":"535d4bff-e6c4-4eaa-a555-298288a6ba25","appDefinitionName":"Product Page Blocks","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","type":"public","instanceId":"84def387-15a6-4e37-b80b-fc3b83890bc8","appDefinitionName":"Wix Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"b976560c-3122-4351-878f-453f337b7245":{"appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","type":"public","instanceId":"eff1dc0f-a6b0-4a73-bb81-c85fe49c84dc","appDefinitionName":"Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","type":"public","instanceId":"fe4e40e2-d8ce-4715-b242-b30ca7e90de9","appDefinitionName":"Member Account Info","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","type":"public","instanceId":"d9f00b70-8471-4f01-a4cd-27e9747c31c4","appDefinitionName":"My Wallet","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","type":"public","instanceId":"f29e5990-ce72-4f78-81d3-2406ad116dea","appDefinitionName":"Members Notifications Settings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","type":"public","instanceId":"d8f1700d-8126-4081-9f7f-77394d926ed5","appDefinitionName":"Wix Members Area Notifications","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","type":"public","instanceId":"b99f6262-6691-4942-9425-3bb22ef14b19","appDefinitionName":"Members About","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","type":"public","instanceId":"7314d009-0de2-4512-a7b8-fd99f85f3ddf","appDefinitionName":"Profile Card","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","type":"public","instanceId":"59320de1-6ceb-4eb6-a60b-43de000c7f21","appDefinitionName":"Wix Bookings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","type":"public","instanceId":"29aace14-1ee3-46e9-ba9c-34223d769672","appDefinitionName":"Wix Chat","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"dataBinding":{"appDefinitionId":"dataBinding","type":"application","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","appDefinitionName":"Data Binding","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false}},"appsUrlData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefName":"Old Wix Forms and Payments","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.883.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefName":"Checkout & Orders","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"widgets":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidgetNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","cssPerBreakpoint":true},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","cssPerBreakpoint":true},"14666402-0bc7-b763-e875-e99840d131bd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","errorReportingUrl":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","widgetId":"14666402-0bc7-b763-e875-e99840d131bd"},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidgetNoCss.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","cssPerBreakpoint":true},"13afb094-84f9-739f-44fd-78d036adb028":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","cssPerBreakpoint":true},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidgetNoCss.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","cssPerBreakpoint":true},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14"},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","cssPerBreakpoint":true},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4"},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb"},"1380bba0-253e-a800-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","cssPerBreakpoint":true},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","cssPerBreakpoint":true},"244576c9-d856-49b9-af14-216071924e3b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","cssPerBreakpoint":true},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","cssPerBreakpoint":true},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a"},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","cssPerBreakpoint":true},"14fd5970-8072-c276-1246-058b79e70c1a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a"},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetNoCss.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd"},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a"},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"215f8ab7-97c3-4838-a6d0-ad4a61747158"}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefId":"225dd912-7dea-4738-8688-4b8c6955ffc2","appDefName":"Wix Forms","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"errorReportingUrl":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615","widgets":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","cssPerBreakpoint":true}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefName":"Wix Site Search","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"widgets":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"4a60a434-d08a-4bd4-a323-4c2479db87ea"},"44c66af6-4d25-485a-ad9d-385f5460deef":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","cssPerBreakpoint":true}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefId":"14c92d28-031e-7910-c9a8-a670011e062d","appDefName":"Wix FAQ","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","cssPerBreakpoint":true}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","appDefName":"Wix Stores","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/storesViewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","appDefName":"Express Checkout Widget OOI","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"widgets":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744"}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefId":"df892fe9-626f-44c9-a328-e29f93880b38","appDefName":"payment-methods-banner-ooi","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"widgets":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4"}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefName":"Wix Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.2869.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appDefName":"Member Account Info","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","cssPerBreakpoint":true}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appDefName":"My Wallet","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","cssPerBreakpoint":true}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appDefName":"Members Notifications Settings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"errorReportingUrl":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097","widgets":{"04462ba4-2137-41bd-9460-0814554aae07":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","cssPerBreakpoint":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","cssPerBreakpoint":false}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appDefName":"Wix Members Area Notifications","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f"},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7"}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefId":"14dbef06-cc42-5583-32a7-3abd44da4908","appDefName":"Members About","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","cssPerBreakpoint":true}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefName":"Profile Card","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidgetNoCss.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","cssPerBreakpoint":true}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","appDefName":"Wix Bookings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"widgets":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"c7fddce1-ebf5-46b0-a309-7865384ba63f"},"169204d8-21be-4b45-b263-a997d31723dc":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"169204d8-21be-4b45-b263-a997d31723dc"},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","cssPerBreakpoint":true},"3c675d25-41c7-437e-b13d-d0f99328e347":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidgetNoCss.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","cssPerBreakpoint":true},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","cssPerBreakpoint":true},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","cssPerBreakpoint":true},"621bc837-5943-4c76-a7ce-a0e38185301f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidgetNoCss.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","cssPerBreakpoint":true},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","cssPerBreakpoint":true},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","cssPerBreakpoint":true},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"89c4023a-027e-4d2a-b6b7-0b9d345b508d"},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidgetNoCss.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","cssPerBreakpoint":true},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","cssPerBreakpoint":true},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"3dc66bc5-5354-4ce6-a436-bd8394c09b0e"},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","cssPerBreakpoint":true},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","noCssComponentUrl":"","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80"},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidgetNoCss.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","cssPerBreakpoint":true}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","appDefName":"Wix Chat","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","baseUrls":{},"widgets":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14517f3f-ffc5-eced-f592-980aaa0bbb5c"}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","appDefName":"TikTok Videos & Profile Embed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"widgets":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"03721c8b-93e9-4a80-a4e5-88c51e3a2634"},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"dfa30e37-50c9-45a6-92a9-1ca066308259"},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"0c2fe29b-9577-40e9-8944-8b4f27ae8ead"}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","appDefName":"Instagram Feed Social","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"widgets":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"499ca64c-5f50-4223-bb91-6d101eaaddae"},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"1eb642dd-23c7-4aac-86ab-af33ba891b2a"},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94"},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"9b3f6bc6-0638-45bb-a924-9e62664f7de0"}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefId":"14271d6f-ba62-d045-549b-ab972ae1f70e","appDefName":"Wix Pro Gallery","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgets":{"142bb34d-3439-576a-7118-683e690a1e0d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d"},"144f04b9-aab4-fde7-179b-780c11da4f46":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"144f04b9-aab4-fde7-179b-780c11da4f46"}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefId":"14bcded7-0066-7c35-14d7-466cb3f09103","appDefName":"Wix Blog","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgets":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ea40bb32-ddfc-4f68-a163-477bd0e97c8e"},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260f9-c2eb-50e8-9b3c-4d21861fe58f"},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6"},"14e5b36b-e545-88a0-1475-2487df7e9206":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b36b-e545-88a0-1475-2487df7e9206"},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6"},"5fdc6c03-080d-4872-b567-24146c82fae5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5fdc6c03-080d-4872-b567-24146c82fae5"},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa"},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03"},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2d4ed2d3-75f8-4942-9787-71e3d182e256"},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9"},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","cssPerBreakpoint":true},"5940091f-797c-4e86-9c57-73fcfd87425f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5940091f-797c-4e86-9c57-73fcfd87425f"},"e5520a99-1725-4b88-a85f-c439916890c8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5520a99-1725-4b88-a85f-c439916890c8"},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1b5b448c-a39f-4515-9445-c6b4ceace1c2"},"68a2d745-328b-475d-9e36-661f678daa31":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"68a2d745-328b-475d-9e36-661f678daa31"},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5e123a45-f3aa-4157-a47a-e58d8cb246eb"},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","cssPerBreakpoint":true},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"b27ea74b-1c6f-4bdb-bda7-8242323ba20b"},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"25ab36f9-f8bd-4799-a887-f10b6822fc2e"},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26109-514f-f9a8-9b3c-4d21861fe58f"},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"76359954-edd4-4c46-ad14-a7c5e65cc30c"},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b39b-6d47-99c3-3ee5-cee1c2574c89"},"26858b64-aad8-42ab-8c63-f19009198c7b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"26858b64-aad8-42ab-8c63-f19009198c7b"},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"129259f6-06e4-42a3-9877-81a1fa9de95c"},"d134b0c9-8085-415a-9479-b555374ba958":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"d134b0c9-8085-415a-9479-b555374ba958"},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","cssPerBreakpoint":true},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","cssPerBreakpoint":true},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd"},"211b5287-14e2-4690-bb71-525908938c81":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"211b5287-14e2-4690-bb71-525908938c81","cssPerBreakpoint":true},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7"},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7"},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ce8e832b-c34f-4b80-b2a6-6cfd6d573751"},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a"},"813eb645-c6bd-4870-906d-694f30869fd9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9"},"bc7fa914-015b-4c32-a323-e5472563a798":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"bc7fa914-015b-4c32-a323-e5472563a798"},"7466726a-84cf-41c8-be6b-1694445dc539":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7466726a-84cf-41c8-be6b-1694445dc539"},"14f260e4-ea13-f861-b0ba-4577df99b961":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260e4-ea13-f861-b0ba-4577df99b961"},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"091d05b7-f44d-4a76-9163-0c7ed5312769"},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"763aa9a8-0531-426f-a4b1-61a7291ce292"},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046"},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26118-b65b-b1c1-b6db-34d5da9dd623"}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefId":"7479d596-137c-4fa3-89cd-d7091042ba61","appDefName":"Category Header","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"widgets":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"97466558-6e7b-43e6-9734-82123ef4c3f3"}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","appDefName":"TikTok Feed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"widgets":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"6aaf0b7d-32c6-4384-b128-d47e22ba1087"},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"f4877f7b-3730-4bf6-ab04-f8a2b47fe642"},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"b07b31e4-3a98-4859-abca-0854eef13bc9"}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","appDefName":"Product Page Blocks","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgets":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"33159c18-8226-4068-91e8-216f5f2c75f8"},"6e0d0836-6240-4688-b4c2-00095de015d9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6e0d0836-6240-4688-b4c2-00095de015d9"},"60039b18-5d94-45b7-bd03-b7008213f906":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"60039b18-5d94-45b7-bd03-b7008213f906"},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"72c071a7-3808-4b0d-94ae-cc49bc51e0fe"},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45"},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ba708a2c-287b-4bfa-9daf-d04168e13e1f"},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5"},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2fb559c9-2297-43cc-9f28-aaf3e988063d"},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ddea5ffa-c473-4655-8c8f-241e10f9bd67"},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"cbd0cea6-4c0d-4199-b241-1254d1f02377"},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"56b08f4f-d99b-4da2-a049-ca218b626be2"},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"e3eb5d42-170a-41ad-a344-8489e54828ad"},"9fa041da-f429-4a24-8579-46c57a985b33":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"9fa041da-f429-4a24-8579-46c57a985b33"},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6a25b678-53ec-4b37-a190-65fcd1ca1a63"},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"a7a7c443-9ebe-442f-9339-b28804f8869e"},"17315fb1-7be4-4492-a196-c1abb2817309":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"17315fb1-7be4-4492-a196-c1abb2817309"},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1"},"f67f8f07-eac7-470e-99f5-213f121b5655":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"f67f8f07-eac7-470e-99f5-213f121b5655"},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"edb17e71-9a93-428e-87d8-26c07fb4cd3c"},"db646d31-6817-4184-87df-c5496c9da6b9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"db646d31-6817-4184-87df-c5496c9da6b9"}}},"b976560c-3122-4351-878f-453f337b7245":{"appDefId":"b976560c-3122-4351-878f-453f337b7245","appDefName":"Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgets":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5956d247-32d0-43af-9a49-7d1090c1e666"},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"2f6c5608-393f-4b15-bfd8-d4e15396787a"},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5ab312ae-0cf7-4093-bbf5-5e4d3690151c"},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b"},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b"},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"25d08a82-0ea5-40f4-8047-07aee3e73e40"},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"009081ab-9c3d-41d5-8b90-41af0e84c159"},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"a26fd26a-3dd9-42ca-b381-326a9c143e38"},"596a6688-3ad7-46f7-bb9c-00023225876d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"596a6688-3ad7-46f7-bb9c-00023225876d"}}},"dataBinding":{"appDefId":"dataBinding","appDefName":"Data Binding","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0\/app.js","baseUrls":{},"widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefId":"675bbcef-18d8-41f5-800e-131ec9e08762","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.751\/app.js","baseUrls":{},"widgets":{}}},"builderComponentsImportMapSdkUrls":{},"builderComponentsCompTypeSdkUrls":{},"builderPublicPackagesUrls":{"esm":{},"umd":{}},"blocksBootstrapData":{"blocksAppsData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2","packageImportName":"@s21797\/instagram-display-feed"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4","packageImportName":"@s21797\/tiktok-feed"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"},"b976560c-3122-4351-878f-453f337b7245":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"elevatedBlocksAppsOnReactNative":[],"experiments":{"specs.blocks-client.alwaysUseTokenInfoForDecode":"true"},"experimentsQueryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","widgetBundleUrls":{},"isVeloBundlerParastorageUrlEnabled":true,"parastorageTemplateUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_\/gridAppId_\/filePath_\/fileType_js\/compression_gzip\/depToken_3938\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_"},"window":{"csrfToken":"1786257321|f9WXw5E06rqN"},"location":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isPremiumDomain":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userFileDomainUrl":"filesusr.com"},"bi":{"ownerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","isMobileFriendly":true,"isPreview":false,"requestId":"1786257322.7983916779211383"},"platformAPIData":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"wixCodeBootstrapData":{"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","wixCodeInstanceId":"a1f45234-850a-4a74-a53d-568344a34848","wixCloudBaseDomain":"wix-code.com","dbsmViewerApp":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0","wixCodePlatformBaseUrl":"https:\/\/static.parastorage.com\/services\/wix-code-platform\/1.1097.93","wixCodeModel":{"appData":{"codeAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"},"signedAppRenderInfo":"1a430f2361f6fb803f76cc10cd490a59f4bf093a.eyJncmlkQXBwSWQiOiIwMGRmYmM4Yy1iN2YzLTRkYzEtOTg5Yy1mNmEzYjI3OTFhODUiLCJodG1sU2l0ZUlkIjoiNDUyMDcxYzEtYTk5Yi00NGMyLWI2ODYtZGQxNWIxMTI2NGEzIiwiZGVtb0lkIjpudWxsLCJzaWduRGF0ZSI6MTc4NjI1NzMyMzEyMn0="},"wixCodePageIds":{"ebqqm":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ebqqm.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","ycxvu":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ycxvu.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","wdvyd":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_wdvyd.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"elementorySupport":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview"},"codePackagesData":[{"importName":"@s21797\/instagram-display-feed","gridAppId":"343ea3d2-8481-44a4-9766-e5cdf26a75ef","appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163"},{"importName":"@s21797\/tiktok-feed","gridAppId":"35b7ef5e-d3c5-4bb7-a9f5-c6f4f25a9423","appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3"}]},"autoFrontendModulesBaseUrl":"https:\/\/static.parastorage.com\/services\/auto-frontend-modules\/1.6238.0","disabledPlatformApps":{},"widgetsClientSpecMapData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{},"675bbcef-18d8-41f5-800e-131ec9e08762":{},"1380b703-ce81-ff05-f115-39571d94dfcd":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetName":"product_page","componentFields":{}},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetName":"49dbb2d9-d9e5-4605-a147-e926605bf164","componentFields":{}},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetName":"add_to_cart_button","componentFields":{}},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetName":"wishlist","componentFields":{}},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetName":"grid_gallery","componentFields":{}},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetName":"Success Popup","componentFields":{}},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetName":"shopping_cart","componentFields":{}},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetName":"slider_gallery","componentFields":{}},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetName":"thank_you_page","componentFields":{}},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetName":"order_history","componentFields":{}},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetName":"product_gallery","componentFields":{}},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetName":"shopping_cart_icon","componentFields":{}},"244576c9-d856-49b9-af14-216071924e3b":{"widgetName":"244576c9-d856-49b9-af14-216071924e3b","componentFields":{}},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetName":"abcd87fe-c51f-4538-848d-2902a2f50d2d","componentFields":{}},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetName":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","componentFields":{}},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetName":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","componentFields":{}},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetName":"checkout","componentFields":{}},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetName":"product_widget","componentFields":{}},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetName":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","componentFields":{}},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"componentFields":{}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"componentFields":{}},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"componentFields":{}},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"componentFields":{}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"componentFields":{}},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"componentFields":{}},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"componentFields":{}},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"componentFields":{}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetName":"371ee199-389c-4a93-849e-e35b8a15b7ca","componentFields":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetName":"pro-gallery","componentFields":{}},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetName":"fullscreen_page","componentFields":{}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"componentFields":{}},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetName":"member-comments-page","componentFields":{}},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"componentFields":{}},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetName":"recent-posts-widget","componentFields":{}},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetName":"blog","componentFields":{}},"5fdc6c03-080d-4872-b567-24146c82fae5":{"componentFields":{}},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"componentFields":{}},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"componentFields":{}},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"componentFields":{}},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetName":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","componentFields":{}},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetName":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","componentFields":{}},"5940091f-797c-4e86-9c57-73fcfd87425f":{"componentFields":{}},"e5520a99-1725-4b88-a85f-c439916890c8":{"componentFields":{}},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"componentFields":{}},"68a2d745-328b-475d-9e36-661f678daa31":{"componentFields":{}},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"componentFields":{}},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetName":"c0a125b8-2311-451e-99c5-89b6bba02b22","componentFields":{}},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"componentFields":{}},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"componentFields":{}},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetName":"member-likes-page","componentFields":{}},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"componentFields":{}},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetName":"custom-feed-widget","componentFields":{}},"26858b64-aad8-42ab-8c63-f19009198c7b":{"componentFields":{}},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"componentFields":{}},"d134b0c9-8085-415a-9479-b555374ba958":{"componentFields":{}},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetName":"rss-feed-widget","componentFields":{}},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetName":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","componentFields":{}},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"componentFields":{}},"211b5287-14e2-4690-bb71-525908938c81":{"widgetName":"post","componentFields":{}},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetName":"478911c3-de0c-469e-90e3-304f2f8cd6a7","componentFields":{}},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"componentFields":{}},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"componentFields":{}},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"componentFields":{}},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetName":"813eb645-c6bd-4870-906d-694f30869fd9","componentFields":{}},"bc7fa914-015b-4c32-a323-e5472563a798":{"componentFields":{}},"7466726a-84cf-41c8-be6b-1694445dc539":{"componentFields":{}},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetName":"member-drafts-page","componentFields":{}},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"componentFields":{}},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"componentFields":{}},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetName":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","componentFields":{}},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetName":"member-posts-page","componentFields":{}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"componentFields":{}},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetName":"search_results","componentFields":{}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"componentFields":{}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetName":"faq_widget","componentFields":{}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"componentFields":{}},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"componentFields":{}},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"componentFields":{}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetName":"54fb025c-61dc-4286-87c7-0ac416c58744","componentFields":{}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetName":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","componentFields":{}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"componentFields":{}},"6e0d0836-6240-4688-b4c2-00095de015d9":{"componentFields":{}},"60039b18-5d94-45b7-bd03-b7008213f906":{"componentFields":{}},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"componentFields":{}},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"componentFields":{}},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"componentFields":{}},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"componentFields":{}},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"componentFields":{}},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"componentFields":{}},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"componentFields":{}},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"componentFields":{}},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"componentFields":{}},"9fa041da-f429-4a24-8579-46c57a985b33":{"componentFields":{}},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"componentFields":{}},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"componentFields":{}},"17315fb1-7be4-4492-a196-c1abb2817309":{"componentFields":{}},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"componentFields":{}},"f67f8f07-eac7-470e-99f5-213f121b5655":{"componentFields":{}},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"componentFields":{}},"db646d31-6817-4184-87df-c5496c9da6b9":{"componentFields":{}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{},"b976560c-3122-4351-878f-453f337b7245":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"componentFields":{}},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"componentFields":{}},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"componentFields":{}},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetName":"31aadcb0-9add-42cb-9b21-72f41e91389b","componentFields":{}},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetName":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","componentFields":{}},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"componentFields":{}},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"componentFields":{}},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"componentFields":{}},"596a6688-3ad7-46f7-bb9c-00023225876d":{"componentFields":{}}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetName":"member_info","componentFields":{}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetName":"my_wallet","componentFields":{}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"04462ba4-2137-41bd-9460-0814554aae07":{"widgetName":"04462ba4-2137-41bd-9460-0814554aae07","componentFields":{}},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetName":"settings","componentFields":{}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetName":"notifications_app","componentFields":{}},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetName":"6ca9273a-a775-407c-87e1-9685588c9aa7","componentFields":{}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetName":"about","componentFields":{}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetName":"profile","componentFields":{}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"componentFields":{}},"169204d8-21be-4b45-b263-a997d31723dc":{"componentFields":{}},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetName":"Booking Service Page","componentFields":{}},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetName":"3c675d25-41c7-437e-b13d-d0f99328e347","componentFields":{}},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetName":"bookings_member_area","componentFields":{}},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetName":"e86ab26e-a14f-46d1-9d74-7243b686923b","componentFields":{}},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetName":"bookings_list","componentFields":{}},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetName":"service_list_widget","componentFields":{}},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetName":"0eadb76d-b167-4f19-88d1-496a8207e92b","componentFields":{}},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetName":"bookings_timetable_daily","componentFields":{}},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetName":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","componentFields":{}},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetName":"2f22f475-3ed1-41fd-90b7-221e92134f3c","componentFields":{}},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"componentFields":{}},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetName":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","componentFields":{}},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetName":"widget","componentFields":{}},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetName":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","componentFields":{}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetName":"wix_visitors","componentFields":{}}},"dataBinding":{}},"essentials":{"appsConductedExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"bookings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}}},"forceEmptySdks":false,"appDefIdToIsMigratedToGetPlatformApi":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":false,"675bbcef-18d8-41f5-800e-131ec9e08762":false,"1380b703-ce81-ff05-f115-39571d94dfcd":false,"27fcc256-f3f8-47df-a66a-8f8176cc7f99":false,"a5dd7ce8-07c2-4251-8d58-9657c1a43163":false,"225dd912-7dea-4738-8688-4b8c6955ffc2":false,"14271d6f-ba62-d045-549b-ab972ae1f70e":false,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":false,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":false,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":false,"215238eb-22a5-4c36-9e7b-e7c08025e04e":false,"47e245ca-1a42-4d6a-a69a-c125bc839b40":false,"df892fe9-626f-44c9-a328-e29f93880b38":false,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":false,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":false,"b976560c-3122-4351-878f-453f337b7245":false,"14cffd81-5215-0a7f-22f8-074b0e2401fb":false,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":false,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":false,"14f25924-5664-31b2-9568-f9c5ed98c9b1":false,"14dbef06-cc42-5583-32a7-3abd44da4908":false,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":false,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":false,"14517e1a-3ff0-af98-408e-2bd6953c36a2":false,"dataBinding":false}},"appsScripts":{"urls":{},"scope":"page"},"debug":{"disablePlatform":false,"disableSnapshots":false,"enableSnapshots":false},"isBuilderComponentModel":false}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"experiments":{"specs.thunderbolt.DisableSentry":true,"specs.thunderbolt.cmsDprNamedQueryParam":true,"specs.thunderbolt.viewport_hydration_extended_react_18":true,"specs.thunderbolt.inMemoryPaypalAuthToken":true,"specs.thunderbolt.roundBordersInResponsiveContainer":true,"specs.thunderbolt.PanoramaErrorMonitor":true,"specs.thunderbolt.userAsFactory":true,"specs.thunderbolt.getMemberDetailsFromMembersNg":true,"specs.thunderbolt.UseEEImpress":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.promote.ar.reportRestPurchaseEventsInsteadOfKafka":true,"specs.thunderbolt.guardAnonymousRequireJsDefine":true,"specs.thunderbolt.sendBiInlightbox":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.fixDisabledLinkButtonStyles":true,"specs.thunderbolt.UseEcomFemBi":true,"specs.thunderbolt.browserZoomHandler":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.siteMembersMultilingualLanguage":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.shouldRunCodEmbedsCallbackOnce":true,"specs.thunderbolt.componentCustomCss":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.useERCUndependentComp":true,"shouldUseEditorElementsLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.fedops_enableSampleRateForAppNames":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.dontTruncateScrollPosition":true,"specs.thunderbolt.excludeInstanceFromQueryParams":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.useLegacyLinkUtilsInPlatform":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.fullPageNavigationSpecificSites":true,"specs.thunderbolt.ComponentsRegistryFixAnonymousDefine":true,"specs.thunderbolt.newTransitionEndHandlerLogic":true,"specs.thunderbolt.postTransitionElementFocus":true,"specs.thunderbolt.LoginSocialBarSplitStateProps":true,"specs.thunderbolt.skipDecodeUri":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.uiTypeNativeMappers":true,"specs.thunderbolt.SetNoCacheOnAppError":true,"specs.thunderbolt.bundlerTrafficToAws":true,"specs.thunderbolt.HtmlComponentPropsMapper":true,"specs.thunderbolt.fixSafariTabHeight":true,"specs.thunderbolt.UseOriginalBlocksAppInstance":true,"specs.thunderbolt.showContentReflowBanner":true,"specs.thunderbolt.removeDynamicModelTopologyFromSiteAssets":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.pageUrlRegexIgnoreSpace":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.WRichTextPropsMapper":true,"specs.thunderbolt.wixRealtimeGetAppTokenFromPlatformUtils":true,"specs.thunderbolt.newLoginFlowOnProtectedCollection":true,"specs.thunderbolt.deprecatewixperf":true,"specs.thunderbolt.shouldSendCookiesForSiteMembersSettings":true,"specs.thunderbolt.calculateHeadEmbedsInSSR":true,"specs.thunderbolt.useNewRegisterLogin":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.shouldFixIosFlashBug":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.headerUseMargins":true,"specs.thunderbolt.popupCustom404":true,"specs.thunderbolt.TextInputPrefixWidthFix":true,"specs.thunderbolt.loadWebpackRuntimeInHead":true,"specs.thunderbolt.returnToPreviousPageOnProtectedPageClose":true,"specs.thunderbolt.lightboxFocusRestore":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.UseNewLoginSocialBarCustomMenuPositioning":true,"specs.thunderbolt.siteButtonKeyboardBehavior":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.os.EnableErrorHandlerInViewer":true,"specs.thunderbolt.lazySiteServicesManager":true,"shouldUseMABuilderLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.ShouldUseNewIAMSocialFlow":true,"specs.thunderbolt.lazy_load_iframe":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.useIAMEnabledConnections":true,"specs.thunderbolt.StoresCartNullOnShippingInfo":true,"specs.thunderbolt.logViewerModelDiff":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.useElementoryRelativePath":true,"specs.thunderbolt.HamburgerMenuOverflowFix":true,"specs.thunderbolt.preventGetMemberDetailsWaterfall":true,"specs.thunderbolt.linkBarNativeMapper":true,"specs.thunderbolt.outlineCss":true,"specs.thunderbolt.wrichtextListInRtl":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.addPlatformizationOptionSignUpFlow":true,"specs.thunderbolt.scrollToRetries":true,"specs.thunderbolt.addPlatformizationOptionLoginFlow":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.pageBGTransitionHandler":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.EmitSeoBodyRenderingMetadata":true,"specs.thunderbolt.shouldFetchLoginUrlByClientId":true,"specs.thunderbolt.shouldLoadGoogleSdkEarly":true,"specs.promote.ar.useFacebookSetupV1Service":true,"specs.thunderbolt.loadNewerSentrySdk":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.shouldUseMemberPrivacySettingsService":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.membersArea.LoginBarRemake":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.alwaysApplySessionTokenOnIAM":true,"specs.thunderbolt.sendFedopsLoadStartedReplaced":true,"specs.thunderbolt.SlideshowStopMediaInNonActiveSlides":true,"specs.thunderbolt.removeDynamicModelTopology":true,"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.routerDynamicPageOverride":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.biForBrowserZoom":true,"specs.thunderbolt.paidPlansSdkUseV2Orders":true,"specs.thunderbolt.shouldValidateRedirectUrl":true,"specs.thunderbolt.StoresCartZeroOnShippingAndTax":true,"specs.thunderbolt.cmsStandalone":true,"specs.thunderbolt.enableSignUpPrivacyNoteType":true,"specs.thunderbolt.vectorImageDecorativeClickElementTitle":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.veloWixMembersAmbassadorV2":true,"specs.thunderbolt.customElemCollapsedheight":true,"specs.thunderbolt.EagerSpeculationRules":true,"specs.thunderbolt.megaMenuMouseLeave":true,"specs.thunderbolt.useUrlFromBrowserWindowInsteadOfViewerModel":true,"specs.thunderbolt.fixMpaWorkerBi":true,"specs.thunderbolt.contextProviders":true,"specs.thunderbolt.WRichTextVerticalAlignTopSafariAndIOS":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.viewportOnBPChange":true,"specs.thunderbolt.vsmViewerModel":true,"specs.thunderbolt.resolveDocumentLink":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.UseWixDataItemService":true,"specs.thunderbolt.VerticalMenu_uiType_NativeMapper":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.splitLinkUtils":true,"specs.thunderbolt.recoverAnchorsOnClientRender":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.useNewBuilderSdkApi":true,"specs.thunderbolt.migrateStylableMenuUiTypeMapper":true,"specs.thunderbolt.UseCloudDataUrlWithBaseExternalUrl":true,"specs.thunderbolt.skipMasterPageComponentManifestCss":true,"specs.thunderbolt.dontCleanLightboxState":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.promote.ar.reportEcomPlatformPurchaseEvents":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.useIAMPlatform":true,"specs.thunderbolt.filterRobotsForConvertedDynamicPages":true,"specs.thunderbolt.veloBundlerParastorageUrl":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.fixSectionAnchorUrlHash":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.AddRegisterEventListenerToWixWindow":true,"specs.thunderbolt.fetchSVGfromNetworkInCSR":true,"specs.thunderbolt.runMappersWithSpecificDeps":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.LottieUseCanvasForIOSDevices":true,"specs.ident.usePlatformizedSMAuth":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.shouldSearchForRouterPrefix":true,"specs.thunderbolt.carouselGalleryImageFitting":true,"specs.thunderbolt.deduplicateSvgFetches":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.scrollToAnchorSsr":true,"specs.thunderbolt.pricingPlansUserOrdersV2":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.loginSocialBarEnableUrlChangeListeners":true,"specs.thunderbolt.pageTransitionScrollSmoothly":true,"specs.thunderbolt.buttonUdp_loggedIn":true,"specs.thunderbolt.preventAnchorReloadBeforeHydration":true,"specs.thunderbolt.InitPlatformApiProvider":true,"specs.thunderbolt.fixFirefoxPopupScrollShift":true,"specs.thunderbolt.magnifyKeyboardOperability":true,"specs.thunderbolt.shouldMapFullContactInfoToIdentityProfile":true,"specs.thunderbolt.isClassNameToRootEnabledNext":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.render_dom_store_before_site":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.imageEncodingAVIF":true,"displayWixAdsNewVersion":true,"specs.thunderbolt.BundlerTypescriptListExportedFunctions":true,"specs.thunderbolt.smModalsShouldWaitForAppDidMount":true,"specs.thunderbolt.autoScrollingOnIphoneMPA":true,"specs.thunderbolt.ooi_css_optimization":true,"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.fixGapBelowTextboxonMobileSite":true,"specs.thunderbolt.useBuilderComponentTypeInBi":true,"specs.odeditor.socialPlayerChangeSource":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.overrideFloatInDistance":true,"specs.thunderbolt.editorElementsRegistryEnsureComponentLoaderFix":true,"specs.thunderbolt.moveFedopsLoadStartToBody":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.deduplicateFAQPageStructuredData":true,"specs.thunderbolt.shouldFetchLogoutUrlByClientId":true,"specs.thunderbolt.newIsScrollBlockedCondition":true,"specs.thunderbolt.routerFetchExtendedUrlLength":true,"specs.thunderbolt.retainInternalQueryParams":true,"specs.thunderbolt.convertBirthdateToISOString":true,"specs.thunderbolt.textMaskFontFallbacks":true,"specs.thunderbolt.dynamicPageServiceManager":true,"specs.thunderbolt.getAppTokenForCustomElement":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.previewRegion":true,"specs.thunderbolt.HeaderSectionAddVisibilityTransition":true,"specs.promote.ar.reportScheduleEventsOnPurchaseIfNeeded":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.newAuthorizedPagesFlow":true,"specs.thunderbolt.viewerWithoutWixDynamicCustomElements":true,"specs.thunderbolt.newControllersModel":true,"specs.thunderbolt.textScaleAdjust":true,"specs.thunderbolt.Panorama":true,"specs.thunderbolt.fetchCurrentMemberFromMembersNg":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.logoutOnIAM":true,"specs.thunderbolt.resolveElementPropsSlotRefs":true,"slideshowSlideLtrDirection":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.suspenseInSlots":true,"specs.thunderbolt.useNewTelemetryAPI":true,"specs.thunderbolt.UseNewLoginBarColorWiringOnE3":true},"formFactor":"desktop","isMobileDevice":false,"viewMode":"desktop","requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","interactionSampleRatio":0.01,"isPartialRouteMatching":false,"siteAssetsTestModuleVersion":"1.334.0","useLocalPiler":false,"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"deviceInfo":{"deviceClass":"Desktop"},"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"b3c3f81c-743b-46c1-8269-545c5f5f3656","isSEO":false,"appNameForBiEvents":"wix-studio"},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"language":{"userLanguage":"fr","userLanguageResolutionMethod":"QueryParam","siteLanguage":"fr","isMultilingualEnabled":true,"directionByLanguage":"ltr"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"anywhereConfig":{},"pilerExperiments":{"specs.piler.useEditorReactComponents":true},"rendererType":null,"siteAssets":{"dataFixersParams":{"experiments":{"dm_migrateOldHoverBoxToNewFixer":true,"dm_masterPageVariablesQueryFixer":true,"dm_bgScrubToMotionFixer":true},"dfVersion":"1.5507.0","isHttps":true,"isUrlMigrated":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","quickActionsMenuEnabled":false,"siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","siteRevision":4,"v":3,"cacheVersions":{"dataFixer":6}},"modulesParams":{"features":{"moduleName":"thunderbolt-features","contentType":"application\/json","resourceType":"features","languageResolutionMethod":"QueryParam","isMultilingualEnabled":true,"externalBaseUrl":"https:\/\/www.leshabitationssf.com","useSandboxInHTMLComp":false,"disableStaticPagesUrlHierarchy":false,"aboveTheFoldSectionsNum":null,"isTrackClicksAnalyticsEnabled":false,"isSocialElementsBlocked":false,"builderAppVersions":"","onlyInteractions":false},"platform":{"moduleName":"thunderbolt-platform","contentType":"application\/json","resourceType":"platform","externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/"},"css":{"moduleName":"thunderbolt-css","contentType":"application\/json","resourceType":"css","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"cssMappers":{"moduleName":"thunderbolt-css-mappers","contentType":"application\/json","resourceType":"cssMappers","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"siteMap":{"moduleName":"thunderbolt-site-map","contentType":"application\/json","resourceType":"siteMap","isDeployPreview":false},"mobileAppBuilder":{"moduleName":"thunderbolt-mobile-app-builder","resourceType":"mobileAppBuilder","contentType":"application\/json"},"builderComponentFeatures":{"moduleName":"builder-component-features","resourceType":"builderComponentFeatures","contentType":"application\/json"},"builderComponentCss":{"moduleName":"builder-component-css","resourceType":"builderComponentCss","contentType":"application\/json"},"builderComponentPlatform":{"moduleName":"builder-component-platform","resourceType":"builderComponentPlatform","contentType":"application\/json"},"componentManifestCss":{"moduleName":"component-manifest-css","resourceType":"componentManifestCss","contentType":"application\/json","builderAppVersions":""},"pilerSiteAssets":{"moduleName":"piler-siteassets","resourceType":"pilerSiteAssets","contentType":"application\/json","buildFullApp":"true","keepWidgetBuild":"false","modulesToHashes":"{\"builder-component-features\":\"4b88a47c.bundle.min\",\"builder-component-css\":\"9dbb5f79.bundle.min\",\"builder-component-platform\":\"dc429dc0.bundle.min\",\"component-manifest-css\":\"11b93432.bundle.min\",\"thunderbolt-css-mappers\":\"2cfa07a5.bundle.min\",\"thunderbolt-services-configs\":\"63fe9530.bundle.min\",\"thunderbolt-features\":\"d1e4c663.bundle.min\",\"thunderbolt-platform\":\"6e6fc8e8.bundle.min\",\"thunderbolt-css\":\"f5e0677a.bundle.min\",\"thunderbolt-site-map\":\"f7bcd51f.bundle.min\",\"thunderbolt-mobile-app-builder\":\"31087b5d.bundle.min\"}","nonBeckyModuleVersions":"{\"remote-widget-structure-builder\":\"1.251.0\",\"blocks-app-descriptor\":\"1.118.0\"}"}},"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"},"siteScopeParams":{"rendererType":null,"wixCodePageIds":["ebqqm","ycxvu","wdvyd"],"hasTPAWorkerOnSite":false,"formFactor":"desktop","viewMode":"desktop","freemiumBanner":false,"coBrandingBanner":false,"dayfulBanner":false,"mobileActionsMenu":false,"isWixSite":false,"isResponsive":true,"editorName":"Studio","urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"pageJsonFileNames":{"nd5z8":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658.json","xbscd":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658.json","ir3c1":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658.json","tbw7n":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658.json","x1rjp":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658.json","fcpv5":"5ae170_bfa3a744011b18064588457b988e1a12_658.json","digmz":"5ae170_8753b09b9c3e820a689be83f44036cce_658.json","c1dmp":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658.json","ebqqm":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658.json","og9af":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658.json","ee5l4":"5ae170_797441264f67257d2b398b280f9566f8_658.json","p8nxp":"5ae170_0e06c7b14722b1df76d73a702836cd87_658.json","ycxvu":"5ae170_6ef9978913518d22e3ff9884b42e9766_658.json","mwate":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658.json","zoy0o":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658.json","tjnio":"5ae170_b758cd293bd2e09407018e3925e51e65_658.json","lbsg6":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658.json","o2kzs":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658.json","wdvyd":"5ae170_b86b7b332566ae1077a701be4c21b168_658.json","quqwi":"5ae170_adf9bd4deafc8141e4494d55c958864f_658.json","jlcw6":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658.json","ua72s":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658.json","yg0c4":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658.json","xsdnd":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658.json","msjef":"5ae170_a275d88f982fef975679f7c85059c3df_658.json","masterPage":"5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json"},"protectedPageIds":["dkrww"],"routersInfo":{"configMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"isPremiumDomain":true,"disableSiteAssetsCache":false,"migratingToOoiWidgetIds":"","siteRevisionConfig":{"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53"},"registryLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"isInSeo":false,"language":"fr","originalLanguage":"fr","appDefinitionIdToSiteRevision":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":"45","a5dd7ce8-07c2-4251-8d58-9657c1a43163":"219","14271d6f-ba62-d045-549b-ab972ae1f70e":"25","14bcded7-0066-7c35-14d7-466cb3f09103":"1335","7479d596-137c-4fa3-89cd-d7091042ba61":"132","75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":"305","a0c68605-c2e7-4c8d-9ea1-767f9770e087":"6855","b976560c-3122-4351-878f-453f337b7245":"1358","13d21c63-b5ec-5912-8397-c3a5ddb27a97":"440"},"isClientSdkOnSite":true,"appDefinitionIdsWithCustomCss":["a0c68605-c2e7-4c8d-9ea1-767f9770e087"],"isBuilderComponentModel":false,"hasUserDomainMedia":false,"userDomainMediaPrefixes":[],"useViewerAssetsProxy":false},"beckyExperiments":{"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.thunderbolt.imageEncodingAVIF":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.addIdAsClassName":true},"manifests":{"node":{"modulesToHashes":{"builder-component-features":"4b88a47c.bundle.min","builder-component-css":"9dbb5f79.bundle.min","builder-component-platform":"dc429dc0.bundle.min","component-manifest-css":"11b93432.bundle.min","thunderbolt-css-mappers":"2cfa07a5.bundle.min","thunderbolt-services-configs":"63fe9530.bundle.min","thunderbolt-features":"d1e4c663.bundle.min","thunderbolt-platform":"6e6fc8e8.bundle.min","thunderbolt-css":"f5e0677a.bundle.min","thunderbolt-site-map":"f7bcd51f.bundle.min","thunderbolt-mobile-app-builder":"31087b5d.bundle.min"}},"web":{"modulesToHashes":{"thunderbolt-platform":"5964cb52.bundle.min","thunderbolt-css":"b0a1a83f.bundle.min","thunderbolt-site-map":"b9b1feb6.bundle.min","thunderbolt-mobile-app-builder":"f230dbce.bundle.min","builder-component-features":"0b72d3dd.bundle.min","builder-component-css":"59927667.bundle.min","builder-component-platform":"1edf9559.bundle.min","component-manifest-css":"c6491178.bundle.min","thunderbolt-css-mappers":"1a45a4a4.bundle.min","thunderbolt-services-configs":"adde9162.bundle.min","webpack-runtime":"e9817151.bundle.min","thunderbolt-features":"1a58e212.bundle.min"},"webpackRuntimeBundle":"e9817151.bundle.min"},"webWorker":{"modulesToHashes":{"thunderbolt-features":"1ef294b0.bundle.min","thunderbolt-platform":"00731b66.bundle.min","thunderbolt-css":"5f7bbbc8.bundle.min","thunderbolt-site-map":"55c26f60.bundle.min","thunderbolt-mobile-app-builder":"5f3ea117.bundle.min","builder-component-features":"bdcfc316.bundle.min","builder-component-css":"2aff705f.bundle.min","builder-component-platform":"308c31ea.bundle.min","component-manifest-css":"d471daee.bundle.min","thunderbolt-css-mappers":"adc1af89.bundle.min","thunderbolt-services-configs":"ed3b8b30.bundle.min"}}},"siteAssetsVersions":{"viewer-assets-generator":"1.0.0","santa-data-fixer":"1.5507.0","@wix\/santa-main-r":"1.1643.0","santa-main-r":"1.1643.0","@wix\/blocks-app-descriptor":"1.118.0","simple-all-pages":"1.0.0","blocks-builder-manifest-generator":"1.151.0","@wix\/santa-data-fixer":"1.5507.0","remote-widget-structure-builder":"1.251.0","remote-widget-metadata":"1.2593.0","santa-site-metadata":"1.3427.0","piler-siteassets":"1.937.0","stylable-santa-flatten":"2.0.222","@wix\/piler-siteassets":"1.937.0"},"staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/","remoteWidgetStructureBuilderVersion":"1.251.0","blocksBuilderManifestGeneratorVersion":"1.129.0"},"react18Compatible":true,"react18HydrationBlackListWidgets":["14756c3d-f10a-45fc-4df1-808f22aabe80"],"mpaBlacklistWidgets":[],"excludeCompsForSSRList":[""],"mpaNavigationCompatible":true,"mpaIncompatibleWidgetsList":[],"mpaExclusionReasons":[],"siteCacheable":true,"isolatedRenderer":true,"siteOwnerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","hasInteractions":false,"componentsExternalVersions":{}}</script> | |
| 2502 | +<script>window.viewerModel = JSON.parse(document.getElementById('wix-viewer-model').textContent)</script> | |
| 2503 | +<!-- renderIndicator --> | |
| 2504 | + | |
| 2505 | + | |
| 2506 | +<!-- versionIndicator --> | |
| 2507 | + | |
| 2508 | + | |
| 2509 | +<!-- used platform apis start --> | |
| 2510 | +<script type="application/json" id="used-platform-apis-data">["location","window","site","seo","user"]</script> | |
| 2511 | +<script>window.usedPlatformApis = JSON.parse(document.getElementById('used-platform-apis-data').textContent)</script> | |
| 2512 | +<!-- used platform apis end --> | |
| 2513 | + | |
| 2514 | +<!-- Business Manager --> | |
| 2515 | + | |
| 2516 | +<!-- initCustomElements #2 --> | |
| 2517 | + | |
| 2518 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6747"],{99090(e,t,o){o.d(t,{O:()=>c});let c=(e,t="")=>t.toLowerCase().includes("forcereducedmotion")||!!e?.matchMedia("(prefers-reduced-motion: reduce)").matches}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=19787)}),e.O()}]); | |
| 2519 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js.map</script> | |
| 2520 | + | |
| 2521 | +<!-- react --> | |
| 2522 | +<script crossorigin="" src="https://static.parastorage.com/unpkg/react@18.3.1/umd/react.production.min.js" onload="resolveExternalsRegistryModule('react')"></script> | |
| 2523 | +<!-- react-dom --> | |
| 2524 | +<script crossorigin="" defer="" src="https://static.parastorage.com/unpkg/react-dom@18.3.1/umd/react-dom.production.min.js" onload="resolveExternalsRegistryModule('reactDOM')"></script> | |
| 2525 | +<!-- lodash script --> | |
| 2526 | +<script async="" src="https://static.parastorage.com/unpkg/lodash@4.17.23/lodash.min.js" onload="resolveExternalsRegistryModule('lodash')"></script> | |
| 2527 | +<!-- initial scripts --> | |
| 2528 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/thunderbolt-commons.9eb9a4be.bundle.min.js"></script> | |
| 2529 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6008"],{68703(e,t,r){r.d(t,{L:()=>i});var a=r(8716),o=r(26778),n=r(49254);let i=(0,a.Og)([],()=>({definition:o.F,impl:n.J,config:{},platformConfig:{}}))},89973(e,t,r){r.d(t,{h:()=>i});var a=r(65672),o=r(48869);let n=({useBatch:e=!0,publishMethod:t=a.PublishMethods.Auto,endpoint:r,muteBi:o=!1,biStore:n,sessionManager:i,fetch:s,factory:d})=>d({useBatch:e,publishMethod:t,endpoint:r}).setMuted(o).withUoUContext({msid:n.msid}).withNonEssentialContext({visitorId:()=>i.getVisitorId(),siteMemberId:()=>i.getSiteMemberId()}).updateDefaults({vsi:n.viewerSessionId,_av:`thunderbolt-${n.viewerVersion}`,isb:n.is_headless,...n.is_headless&&{isbr:n.is_headless_reason}}),i={createBaseBiLoggerFactory:n,createBiLoggerFactoryForFedops:e=>{let{biStore:{session_id:t,initialTimestamp:r,initialRequestTimestamp:a,dc:i,microPop:s,is_headless:d,isCached:p,pageData:l,rolloutData:u,caching:c,checkVisibility:f=()=>"",viewerVersion:m,requestUrl:I,st:h,isSuccessfulSSR:A,mpaSessionId:_,siteOwnerId:E,uuid:S},muteBi:g=!1}=e;return n({...e,muteBi:g}).updateDefaults({ts:()=>Date.now()-r,tsn:()=>(function({initialRequestTimestamp:e,adjustForPrerender:t=!1}){if("undefined"==typeof window)return Math.round(performance.now()+(performance.timeOrigin-e));let r=t?(0,o.b)():0;return Math.round(performance.now()-r)})({initialRequestTimestamp:a,adjustForPrerender:!0}),dc:i,microPop:s,caching:c,session_id:t,st:h,url:I||l.pageUrl,ish:d,pn:l.pageNumber,isFirstNavigation:1===l.pageNumber,pv:f,pageId:l.pageId,isServerSide:!1,isSuccessfulSSR:A,is_lightbox:l.isLightbox,is_cached:p,is_sav_rollout:+!!u.siteAssetsVersionsRollout,is_dac_rollout:+!!u.isDACRollout,v:m,mpaSessionId:_,siteOwnerId:E,uuid:S,..."undefined"!=typeof document&&document.referrer&&{document_referrer:document.referrer},..."undefined"!=typeof navigator&&navigator.language&&{browserLanguage:navigator.language}})}}},48869(e,t,r){r.d(t,{b:()=>a});let a=()=>{let e=(()=>{if("undefined"==typeof performance||"function"!=typeof performance.getEntriesByType)return;let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e})();return e?.activationStart??0}},35499(e,t,r){r.d(t,{W:()=>p});var a=r(41394),o=r(41789),n=r(683),i=r(4291),s=r(6355),d=r(76526);let p=({biLoggerFactory:e,customParams:t={},phasesConfig:r="SEND_ON_FINISH",appName:p="thunderbolt",presetType:l=a.u.BOLT,reportBlackbox:u=!1,paramsOverrides:c={},factory:f,muteThunderboltEvents:m=!1,experiments:I={},monitoringData:h})=>{let A,_,E,S,g,N,R,b,v=f(p,{presetType:l,phasesConfig:r,isPersistent:!0,isServerSide:!1,reportBlackbox:u,customParams:t,biLoggerFactory:e,paramsOverrides:c,enableSampleRateForAppNames:(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames")??("undefined"!=typeof window&&(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames"))}),{interactionStarted:O,interactionEnded:w,appLoadingPhaseStart:T,appLoadingPhaseFinish:y,appLoadStarted:V,appLoaded:D}=v,C=(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedopsMuteErrors"),L=(0,d.isExperimentOpen)(I,"specs.thunderbolt.panoramaInSsr"),F="undefined"==typeof window,B=e=>e?.evid&&26===parseInt(e.evid,10),P=(A=(0,s.n)(),h?.viewerSessionId&&A.setSessionId(h.viewerSessionId),_=h?.metaSiteId??"",E=h?.dc??"",S=!!h?.isHeadless,g=!!h?.isCached,N=!!h?.rolloutData?.isTBRollout,R=!!h?.rolloutData?.isDACRollout,b=!!h?.rolloutData?.siteAssetsVersionsRollout,(0,n.V)({baseParams:{platform:i.OD.Viewer,msid:_,fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",artifactVersion:h?.artifactVersion,componentId:p},pluginParams:{useBatch:!0},data:{dataCenter:E,isHeadless:S,isCached:g,isRollout:N,isDacRollout:R,isSavRollout:b,isSsr:!1,presetType:l,customParams:t},reporterOptions:F?{fetchFn:fetch}:{}}).withGlobalConfig(A).client()),G=e=>{P&&(L||!F)&&(e?P.reportLoadStart():P.reportLoadFinish())},x=(e,t,r)=>{if(!P)return;let a=e.replaceAll(" ","_");t?P.transaction(a).start(r):P.transaction(a).finish(r)},M=(e,t,r,n)=>{if(o.iy.has(p))return!0;if(((e,t,r)=>{let n;return B(r)?C:(n=r?.siteAssetsModule??"",!(l!==a.u.BOLT||o.EQ.has(e)||t&&["thunderbolt-css","thunderbolt-features","thunderbolt-platform"].includes(n)))})(e,t,n))return!1;if(n?.siteAssetsModule)return!0;let i=!!r?.appId&&!o.S_.has(r.appId),s=o.S2.has(e),d=o.wV.has(e);return s||i||!d&&!m};return v.interactionStarted=(e,t)=>{if(B(t?.paramsOverrides)?((e={})=>{if(!P)return;let{errorInfo:t,errorType:r}=e,a=Error(t);P?.errorMonitor().reportError(a,{errorName:r,environment:"Viewer"})})(t?.paramsOverrides):(L||e.startsWith("platform_")||!F)&&x(e,!0),M(e,!0,void 0,t?.paramsOverrides))return O.call(v,e,t);try{performance.mark(`${e} started`)}catch(e){}return{timeoutId:0}},v.interactionEnded=(e,t)=>{if((L||e.startsWith("platform_")||!F)&&x(e,!1),M(e,!0,void 0,t?.paramsOverrides))w.call(v,e,t);else try{performance.mark(`${e} ended`)}catch(e){}},v.appLoadingPhaseStart=(e,t)=>{if(x(e,!0,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))T.call(v,e,t);else try{performance.mark(`${e} started`)}catch(e){}},v.appLoadingPhaseFinish=(e,t,r)=>{if(x(e,!1,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))y.call(v,e,t,r);else try{performance.mark(`${e} finished`)}catch(e){}},v.appLoadStarted=e=>{G(!0),V.call(v,e)},v.appLoaded=e=>{G(!1),D.call(v,e)},v}},81855(e,t,r){r.d(t,{c:()=>a});let a=e=>{let t="thunderbolt-commons";return{reportAsyncWithCustomKey:(r,a,o)=>e.reportAsyncWithCustomKey(r,t,a,o),runAsyncAndReport:(r,a)=>e.runAsyncAndReport(r,t,a),runAndReport:(r,a)=>e.runAndReport(r,t,a),reportError:r=>{e.captureError(r,{tags:{feature:t,clientMetricsReporterError:!0}})},meter:(t,r)=>{e.meter(t,r)},histogram:(e,t)=>{}}}},27256(e,t,r){r.r(t),r.d(t,{createBiReporter:()=>i,site:()=>s});var a=r(73388),o=r(60990);let n=(...e)=>console.log("[TB] ",...e);function i(e=n,t=n,r=()=>{},a=n,o=n){return{reportBI:e,sendBeat:t,setDynamicSessionData:r,reportPageNavigation:a,reportPageNavigationDone:o}}let s=({biReporter:e,wixBiSession:t,viewerModel:r})=>n=>{n(a.O$).toConstantValue(t),n(a.u6).toConstantValue(e),n(a.lR).toConstantValue((0,o.f)(r))}},94756(e,t,r){r.d(t,{lF:()=>n,mY:()=>s,w4:()=>i});var a,o,n=((a={})[a.START=1]="START",a[a.VISIBLE=2]="VISIBLE",a[a.PARTIALLY_VISIBLE=12]="PARTIALLY_VISIBLE",a[a.PAGE_FINISH=33]="PAGE_FINISH",a[a.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",a[a.TBD=-1]="TBD",a[a.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",a[a.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE",a),i=((o={})[o.NAVIGATION=1]="NAVIGATION",o[o.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",o[o.INNER_ROUTE=3]="INNER_ROUTE",o[o.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",o[o.CANCELED=5]="CANCELED",o);let s={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}},73388(e,t,r){r.d(t,{O$:()=>o,lR:()=>n,u6:()=>a});let a=Symbol.for("BI"),o=Symbol.for("WixBiSessionSymbol"),n=Symbol.for("appName")}}]); | |
| 2530 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js.map</script> | |
| 2531 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.209eb21d.bundle.min.js"></script> | |
| 2532 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.99fa8096.bundle.min.js"></script> | |
| 2533 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["8426"],{7146(e,r,t){t.r(r),t.d(r,{platformWorkerPromise:()=>m});let s=window.viewerModel,a=s?.siteFeatures||[],o=s?.siteFeaturesConfigs?.platform,p=s?.siteAssets?.clientTopology,l=s?.site?.externalBaseUrl,i=window.usedPlatformApis,n="undefined"!=typeof Worker&&a.includes("platform")&&!!o,c=async()=>{let e;if(!o?.clientWorkerUrl||!o?.appsScripts||!o?.bootstrapData)return void console.warn("[create-worker] Platform config incomplete (missing clientWorkerUrl, appsScripts, or bootstrapData), skipping worker creation");let r="platform_create-worker started";performance.mark(r);let{clientWorkerUrl:t,appsScripts:s,bootstrapData:a,sdksStaticPaths:n}=o,{appsSpecData:c={},appDefIdToIsMigratedToGetPlatformApi:m={},forceEmptySdks:d}=a||{},f=new Worker(t.startsWith("http://localhost:")||document.baseURI!==location.href?(e=new Blob([`importScripts('${t}');`],{type:"application/javascript"}),URL.createObjectURL(e)):t.replace(p?.fileRepoUrl||"",`${l}/_partials`)),k=s?.urls||{},u=Object.keys(k).filter(e=>!c[e]?.isModuleFederated).reduce((e,r)=>(e[r]=k[r],e),{});n&&n.mainSdks&&n.nonMainSdks&&(Object.values(m).every(e=>e)||d?f.postMessage({type:"preloadNamespaces",namespaces:i}):f.postMessage({type:"preloadAllNamespaces",sdksStaticPaths:n})),f.postMessage({type:"platformScriptsToPreload",appScriptsUrls:u});let w="platform_create-worker ended";return performance.mark(w),performance.measure("Create Platform Web Worker",r,w),f},m=n?c():Promise.resolve()}},function(e){e(e.s=7146)}]); | |
| 2534 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js.map</script> | |
| 2535 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1625"],{97534(){var e;let n,a,t;e=window,n=new Set,a=[],t=e=>{let a=[];n.forEach(n=>{e.canHandleEvent(n)&&a.push(n)}),a.forEach(a=>{n.delete(a),e.handleEvent(a)})},e.addEventListener("message",e=>{let d={source:e.source,data:e.data,origin:e.origin},s=a.find(e=>e.canHandleEvent(d));s?(t(s),s.handleEvent(d)):n.add(d)}),e._addWindowMessageHandler=e=>{a.push(e),t(e)}}},function(e){e(e.s=97534)}]); | |
| 2536 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js.map</script> | |
| 2537 | + | |
| 2538 | +<!-- scriptTagsToPreload --> | |
| 2539 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2540 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2541 | +<link href="https://static.parastorage.com/services/pro-gallery-tpa/1.1531.0/WixProGalleryViewerWidget.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2542 | +<link href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2543 | + | |
| 2544 | + | |
| 2545 | + <!-- Old Browsers Deprecation --> | |
| 2546 | + <script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.bundle.es5.js"></script> | |
| 2547 | + | |
| 2548 | + | |
| 2549 | +<!-- bi --> | |
| 2550 | +<script> | |
| 2551 | + window.clientSideRender = false; | |
| 2552 | +</script> | |
| 2553 | +<!-- bi --> | |
| 2554 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["9114"],{80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>u});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},u=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:u}=window,p=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:p,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:u?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=u,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),u.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=80974)}),e.O()}]); | |
| 2555 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js.map</script> | |
| 2556 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1698"],{40250(e,i,n){var r=n(94756);n(80974).K.sendBeat(r.lF.PARTIALLY_VISIBLE,"Partially visible",{pageId:window.firstPageId})},80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>p});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},p=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:p}=window,u=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:u,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:p?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=p,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),p.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=40250)}),e.O()}]); | |
| 2557 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js.map</script> | |
| 2558 | +<script> | |
| 2559 | + window.firstPageId = 'ebqqm' | |
| 2560 | + | |
| 2561 | + if (window.requestCloseWelcomeScreen) { | |
| 2562 | + window.requestCloseWelcomeScreen() | |
| 2563 | + } | |
| 2564 | + if (!window.__browser_deprecation__) { | |
| 2565 | + window.fedops.phaseStarted('partially_visible', {paramsOverrides: { pageId: firstPageId, isSuccessfulSSR: !clientSideRender }}) | |
| 2566 | + } | |
| 2567 | +</script> | |
| 2568 | + | |
| 2569 | + <script> | |
| 2570 | + const wixAdsOffsetHeight = document.querySelector(':is(.WIX_ADS, #WIX_ADS)')?.offsetHeight || 0; | |
| 2571 | + const header = document.getElementsByTagName('header')[0]; | |
| 2572 | + | |
| 2573 | + let headerOffsetHeight = 0; | |
| 2574 | + | |
| 2575 | + if (header) { | |
| 2576 | + const headerPosition = window.getComputedStyle(header).getPropertyValue('position').toLowerCase(); | |
| 2577 | + const isHeaderStickyOrFixed = headerPosition === 'sticky' || headerPosition === 'fixed'; | |
| 2578 | + headerOffsetHeight = isHeaderStickyOrFixed ? header.offsetHeight : 0; | |
| 2579 | + } | |
| 2580 | + | |
| 2581 | + document.documentElement.style.scrollPaddingTop = `${wixAdsOffsetHeight + headerOffsetHeight}px`; | |
| 2582 | + </script> | |
| 2583 | + | |
| 2584 | + | |
| 2585 | + | |
| 2586 | + <script defer="" src="https://static.parastorage.com/services/tag-manager-client/1.1066.0/siteTags.bundle.min.js"></script> | |
| 2587 | + | |
| 2588 | + | |
| 2589 | + | |
| 2590 | + | |
| 2591 | + | |
| 2592 | + | |
| 2593 | + | |
| 2594 | + | |
| 2595 | + | |
| 2596 | + <!--pageHtmlEmbeds.bodyEnd start--> | |
| 2597 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd start"></script> | |
| 2598 | + | |
| 2599 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd end"></script> | |
| 2600 | + <!--pageHtmlEmbeds.bodyEnd end--> | |
| 2601 | + | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
| 2607 | + | |
| 2608 | +<!-- warmup data start --> | |
| 2609 | +<script type="application/json" id="wix-warmup-data">{"platform":{"ssrPropsUpdates":[{"comp-m8omdber7":{"isValid":false,"options":[{"key":"0","value":"3 1\/2 4 1\/2 5 1\/2 NEUF SAINT-CHARLES-BORROMEE","text":"3 1\/2 4 1\/2 5 1\/2 NEUF SAINT-CHARLES-BORROMEE"}]},"comp-m8omdbec15":{"isValid":false},"comp-m8omdbeg9":{"isValid":false},"comp-m8omdbeh9":{"isValid":false},"comp-m8omdbei9":{"isValid":false},"comp-m8omdben":{"isValid":true},"comp-m8or8zjr":{"isValid":false},"comp-m8omdbez":{"html":"<p class=\"font_8 wixui-rich-text__text\">3 1\/2 À PARTIR DE 1150$<\/p>\n<p class=\"font_8 wixui-rich-text__text\">4 1\/2 À PARTIR DE 1250$<\/p>\n<p class=\"font_8 wixui-rich-text__text\">5 1\/2 À PARTIR DE 1500$<\/p>\n<p class=\"font_8 wixui-rich-text__text\">Ces prix sont sujets à changement selon les promotions et loyer en vigueur<\/p>\n<p class=\"font_8 wixui-rich-text__text\">Adresse: Flavie-Poirier, Saint-Charles-Borromee<\/p>\n<p class=\"font_8 wixui-rich-text__text\">Les appartements comprennent :<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- 1 Salle de bain<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Salle de lavage<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Air climatisé mural\/thermopompe et Échangeur d’air<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Un espace ouvert et lumineux<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Un espace extérieur (balcon)<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Animaux acceptés sous certaines conditions<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- TV\/Internet Vidéotron inclus<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- 1 Stationnements inclus<\/p>\n<p class=\"font_8 wixui-rich-text__text\">- Rangement intérieur disponible ($)<\/p>\n<p class=\"font_8 wixui-rich-text__text\">Emplacement idéal pour ceux qui cherchent à conjuguer qualité de vie et beauté naturelle, à proximité de tous les services essentiels. Laissez-vous charmer par nos unités !<\/p>\n<p class=\"font_8 wixui-rich-text__text\">**Photos à titre indicatif seulement**<\/p>\n<p class=\"font_8 wixui-rich-text__text\">N'hésitez pas à nous contacter pour plus d'informations ou pour planifier une visite!<\/p>\n<p class=\"font_8 wixui-rich-text__text\">CONTACT : 450-499-7978<\/p>\n<p class=\"font_8 wixui-rich-text__text\">COURRIEL : <a data-auto-recognition=\"true\" href=\"mailto:info@leshabitationssf.com\" class=\"wixui-rich-text__text\">info@leshabitationssf.com<\/a><\/p>\n<p class=\"font_8 wixui-rich-text__text\">*Certaines conditions s'appliquent*<\/p>"},"comp-m8oqu8301":{"html":"<p class=\"font_8 wixui-rich-text__text\">3 1\/2 4 1\/2 5 1\/2 NEUF SAINT-CHARLES-BORROMEE<\/p>"},"comp-m8omdbf39":{"html":"<p class=\"font_7 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">APPARTEMENT<\/span><\/p>"},"comp-m8omdbf68":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1-3<\/span><\/p>"},"comp-m8omdbf916":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1<\/span><\/p>"},"comp-m8omdbfc10":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\"><span class=\"wixGuard\">​<\/span><\/span><\/p>"},"comp-m8omdbff":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1250<\/span><\/p>"},"comp-m8oobbzb":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">MOIS<\/span><\/p>"},"comp-m8omdbf211":{"html":"<h6 class=\"font_6 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">Disponible<\/span><\/h6>","corvid":{"hasColor":true}}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeu13":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Nous avons reçu votre demande. Nous vous contacterons sous-peu.<\/p><\/div>","ariaAttributes":{"live":"polite"}},"comp-m8omdbew":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Une erreur s'est produite. Veuillez réessayer.<\/p><\/div>","ariaAttributes":{"live":"polite"}}}],"ssrStyleUpdates":[{"comp-m8omdbf211":{"--corvid-color":"green"},"comp-m8omdbf2":{"--container-corvid-background-color":"#D1FFBD"}}],"ssrStructureUpdates":[]},"pages":{"compIdToTypeMap":{"masterPage":"MasterPage","SITE_HEADER":"HeaderContainer","PAGES_CONTAINER":"PagesContainer","SITE_FOOTER":"FooterContainer","SITE_PAGES":"PageGroup","BACKGROUND_GROUP":"BackgroundGroup","SCROLL_TO_TOP":"Anchor","SCROLL_TO_BOTTOM":"Anchor","SKIP_TO_CONTENT_BTN":"SkipToContentButton","comp-m8omcih82":"AppController","comp-m8oopad5":"AppController","comp-mfl8zvjs":"AppController","comp-m8omdbez":"WRichText","comp-m8oqbc3l":"GoogleMap","comp-m8omcigd2_r_comp-kd5pdf7t":"WRichText","comp-m8omcih716_r_comp-kd5px9kk":"ExpandableMenu","comp-m8omcih716_r_comp-kkmqi5tc":"VectorImage","comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID":"AppController","comp-m8oqu82u":"WRichText","comp-m8oqu82z":"WRichText","comp-m8oqu8301":"WRichText","comp-m8omdbf39":"WRichText","comp-m8omcigd2_r_comp-m2y12dql":"WRichText","comp-m8omdbea15":"WRichText","comp-m8omdbeb13":"WRichText","comp-m8omdbec15":"TextInput","comp-m8omdbeg9":"TextInput","comp-m8omdbeh9":"TextInput","comp-m8omdbei9":"TextInput","comp-m8omdben":"TextAreaInput","comp-m8omdber7":"ComboBoxInput","comp-m8omdbeu13":"WRichText","comp-m8omdbew":"WRichText","comp-m8omdbex1":"StylableButton","comp-m8or8zjr":"ComboBoxInput","comp-m8omdbf211":"WRichText","comp-m8omdbf510":"VectorImage","comp-m8omdbf813":"VectorImage","comp-m8omcigd2_r_comp-m2y1gkmp":"WRichText","comp-m8omcigd2_r_comp-m8j7o6oq":"VectorImage","comp-m8omcigd2_r_comp-m2y10ib8":"ExpandableMenu","comp-m8omcigd2_r_comp-mbweuill":"LanguageSelector","comp-m8omcihb_r_comp-m2xz2cwh":"SiteButton","comp-m8omcihb_r_comp-m8j7mq6v":"VectorImage","comp-m8omcihb_r_comp-mdez2caz":"VerticalLine","comp-m8omcihb_r_comp-mdeylyv3":"LinkBar","comp-m8omcihb_r_comp-mdf18wki":"WRichText","comp-m8omdbf68":"WRichText","comp-m8omdbf711":"WRichText","comp-m8omdbf916":"WRichText","comp-m8omdbfa13":"WRichText","comp-m8omdbfc10":"WRichText","comp-m8omdbfd11":"WRichText","comp-m8omdbff":"WRichText","comp-m8ooawu0":"WRichText","comp-m8omdbfg7":"WRichText","comp-m8oobbzb":"WRichText","comp-m8omcihb_r_comp-lxu2mi38":"HamburgerOpenButton","comp-m8omcihb_r_comp-lxu2mi3i1":"HamburgerCloseButton","comp-m8omcihb_r_comp-m5rceatr":"SiteButton","comp-m8omcihb_r_comp-lxubhuix":"ExpandableMenu","comp-m8omcihb_r_comp-mdezahz3":"LanguageSelector","comp-m8omcihb_r_comp-mdf0r6km":"WRichText","comp-m8omcihb_r_comp-mdf0tx18":"StylableButton","listModal_comp-m8omdber7":"ComboBoxInputListModal","listModal_comp-m8or8zjr":"ComboBoxInputListModal","portal-comp-m8omcihb_r_comp-m99166jr":"MenuContent","portal-comp-m8omcihb_r_comp-mdeyqfi8":"MenuContent","ebqqm":"Page","comp-m8omdbdn":"Section","comp-m8omcigd2":"RefComponent","comp-m8omcih716":"RefComponent","comp-m8omcihb":"RefComponent","comp-m9cxxt3r":"RefComponent","comp-m8oqdae2":"Container","comp-m8omdbdr7":"Container","comp-m8omdbdy12":"Container","comp-m8omdbey11":"Container","comp-m8omdbf0":"Container","comp-m8oqa661":"Container","comp-m8omcigd2_r_comp-kbgakgyt":"FooterSection","comp-m8omcih716_r_comp-kd5px9hr":"MenuContainer","comp-m8omcihb_r_comp-kbgajy18":"HeaderSection","comp-m9cxxt3r_r_comp-m9cxxr9c":"TPAGluedWidget","comp-m8omdbe910":"Container","comp-m8oqu82o":"Container","comp-m8omf94r":"Container","comp-m8omdbf1":"Container","comp-m8omcigd2_r_comp-m2y11976":"Container","comp-m8omcihb_r_comp-m6saac0q":"tpaWidgetNative","comp-m8omcihb_r_comp-m6saadbd":"GhostComp","comp-m8omcihb_r_comp-mdeyh2rw":"Container","comp-m8omdbea7":"Container","comp-m8omdbec6":"Container","comp-m8omf94t":"tpaWidgetNative","comp-m8omdbf2":"Container","comp-m8omdbf415":"Container","comp-m8omdbf82":"Container","comp-m8omdbfb14":"Container","comp-m8omdbfe":"Container","comp-m8omcigd2_r_comp-m2y1gxle":"Container","comp-m8omcigd2_r_comp-m8j7owsd":"Container","comp-m8omcihb_r_comp-m2xyvk9x":"Container","comp-m8omcihb_r_comp-mdeyhsow":"Container","comp-m8omdbf61":"Container","comp-m8omdbf97":"Container","comp-m8omdbfc3":"Container","comp-m8omdbfe11":"Container","comp-m8omcigd2_r_comp-m2y1awex":"tpaWidgetNative","comp-m8omcihb_r_comp-lxu2mi30":"HamburgerMenuRoot","comp-m8omcihb_r_comp-m73v5p0x":"tpaWidgetNative","comp-m8omcihb_r_comp-m99166jr":"Menu","comp-m8omcihb_r_comp-mdeyqfi8":"Menu","comp-m8omcihb_r_comp-lxu2mi3c":"HamburgerOverlay","comp-m8omcihb_r_comp-lxu2mi3d5":"HamburgerMenuContainer","comp-m8omcihb_r_comp-m5rceko6":"Container","comp-m8omcihb_r_comp-mdezy72f":"Repeater","comp-m8omcihb_r_comp-mdezy72s":"Container","comp-m8omcihb-pinned-layer":"PinnedLayer","PAGE_SECTIONSebqqm":"PageSections","comp-m8omcih716-pinned-layer":"PinnedLayer","comp-m8omcih82-pinned-layer":"PinnedLayer","comp-m8oopad5-pinned-layer":"PinnedLayer","comp-m9cxxt3r-pinned-layer":"PinnedLayer","comp-mfl8zvjs-pinned-layer":"PinnedLayer","Containerebqqm":"ResponsiveContainer","comp-m8omdbdn_relative":"ResponsiveContainer","comp-m8oqdae2_relative":"ResponsiveContainer","comp-m8omdbdr7_relative":"ResponsiveContainer","comp-m8omdbdy12_relative":"ResponsiveContainer","comp-m8omdbey11_relative":"ResponsiveContainer","comp-m8omdbf0_relative":"ResponsiveContainer","comp-m8oqa661_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-kbgakgyt_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-kbgajy18_relative":"ResponsiveContainer","comp-m8omdbe910_relative":"ResponsiveContainer","comp-m8oqu82o_relative":"ResponsiveContainer","comp-m8omf94r_relative":"ResponsiveContainer","comp-m8omdbf1_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y11976_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyh2rw_relative":"ResponsiveContainer","comp-m8omdbea7_relative":"ResponsiveContainer","comp-m8omdbec6_relative":"ResponsiveContainer","comp-m8omdbf2_relative":"ResponsiveContainer","comp-m8omdbf415_relative":"ResponsiveContainer","comp-m8omdbf82_relative":"ResponsiveContainer","comp-m8omdbfb14_relative":"ResponsiveContainer","comp-m8omdbfe_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y1gxle_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m8j7owsd_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m2xyvk9x_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyhsow_relative":"ResponsiveContainer","comp-m8omdbf61_relative":"ResponsiveContainer","comp-m8omdbf97_relative":"ResponsiveContainer","comp-m8omdbfc3_relative":"ResponsiveContainer","comp-m8omdbfe11_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m5rceko6_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdezy72s_relative":"ResponsiveContainer","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","ebqqm_3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee":"PageMountUnmount"}},"appsWarmupData":{"dataBinding":{"schemas":{"Location":{"displayName":"À Louer","plugins":{},"allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"id":"Location","fields":{"imageSecondaire":{"displayName":"Image Secondaire","sortable":true,"isDeleted":false,"type":"image","index":12},"nombreDeChambres":{"displayName":"Nombre de Chambre(s)","sortable":true,"isDeleted":false,"type":"text","index":14},"adresseCivique":{"displayName":"Adresse Civique","sortable":true,"isDeleted":false,"type":"text","index":8},"_id":{"displayName":"ID","sortable":true,"isDeleted":false,"type":"text","index":1},"imagePrinciple":{"displayName":"Image Principle","sortable":true,"isDeleted":false,"type":"image","index":11},"_owner":{"displayName":"Owner","sortable":true,"isDeleted":false,"type":"text","index":4},"_createdDate":{"displayName":"Created Date","sortable":true,"isDeleted":false,"type":"datetime","index":2},"imagesEtVideosDeLaProprit":{"displayName":"Images et Videos de la propriété","sortable":true,"isDeleted":false,"type":"media-gallery","index":13},"frquence":{"displayName":"Fréquence","sortable":true,"isDeleted":false,"type":"text","index":7},"link-location-title":{"displayName":"Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":5},"superficiePi2":{"displayName":"Superficie (Pi2)","sortable":true,"isDeleted":false,"type":"number","index":21},"descriptionDeLaProprit":{"displayName":"Description de la Propriété","sortable":true,"isDeleted":false,"type":"richtext","index":16},"_updatedDate":{"displayName":"Updated Date","sortable":true,"isDeleted":false,"type":"datetime","index":3},"enVedette":{"displayName":"En Vedette","sortable":true,"isDeleted":false,"type":"boolean","index":23},"nombreDeSallesDeBain":{"displayName":"Nombre de Salle(s) de bain","sortable":true,"isDeleted":false,"type":"text","index":15},"prix":{"displayName":"Prix","sortable":true,"isDeleted":false,"type":"number","index":6},"adresseComplte":{"displayName":"Adresse Complète","sortable":true,"isDeleted":false,"type":"address","index":10},"typeDimmeuble":{"displayName":"Type d'immeuble","sortable":true,"isDeleted":false,"type":"array<string>","index":18},"region":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"array<string>","index":22},"disponibilite":{"displayName":"Disponibilité","sortable":true,"isDeleted":false,"type":"boolean","index":19},"ville":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"text","index":9},"title":{"displayName":"Titre de l'annonce","sortable":true,"isDeleted":false,"type":"text","index":0},"link-copy-of-location-title":{"displayName":"Copy of Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/copy-of-location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":20},"nombreDeSallesDeBain1":{"displayName":"Nombre de Pièces","sortable":true,"isDeleted":false,"type":"text","index":17}},"displayField":"title","defaultSort":null,"pagingMode":["OFFSET","CURSOR"]},"DemandedereservationAlouer":{"id":"DemandedereservationAlouer","isDeleted":false,"namespace":null,"storage":"docstore","ownerAppId":null,"displayNamespace":null,"displayField":"prenom","allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"collectionOperations":["update","remove"],"fields":{"title":{"displayName":"Title","systemField":false,"sortable":true,"isDeleted":false,"index":0,"type":"text","plugins":{}},"_id":{"displayName":"ID","systemField":true,"sortable":true,"isDeleted":false,"index":1,"type":"text","plugins":{}},"_createdDate":{"displayName":"Created Date","systemField":true,"sortable":true,"isDeleted":false,"index":2,"type":"datetime","plugins":{}},"_updatedDate":{"displayName":"Updated Date","systemField":true,"sortable":true,"isDeleted":false,"index":3,"type":"datetime","plugins":{}},"_owner":{"displayName":"Owner","systemField":true,"sortable":true,"isDeleted":false,"index":4,"type":"text","plugins":{}},"prenom":{"displayName":"Prenom","systemField":false,"sortable":true,"isDeleted":false,"index":5,"type":"text","plugins":{}},"nomDeFamille":{"displayName":"Nom de Famille","systemField":false,"sortable":true,"isDeleted":false,"index":6,"type":"text","plugins":{}},"courriel":{"displayName":"Courriel","systemField":false,"sortable":true,"isDeleted":false,"index":7,"type":"text","plugins":{}},"message":{"displayName":"Message","systemField":false,"sortable":true,"isDeleted":false,"index":8,"type":"text","plugins":{}},"telephone":{"displayName":"Telephone","systemField":false,"sortable":true,"isDeleted":false,"index":9,"type":"text","plugins":{}},"units":{"displayName":"Units","systemField":false,"sortable":true,"isDeleted":false,"index":10,"type":"text","plugins":{}},"demandeDuClient":{"displayName":"Demande du client","systemField":false,"sortable":true,"isDeleted":false,"index":11,"type":"text","plugins":{}}},"displayName":"Demande de réservation(À louer)","permissions":{"read":"admin","insert":"anyone","remove":"admin","update":"admin"},"dataPermissions":{"itemRead":"CMS_EDITOR","itemInsert":"ANYONE","itemUpdate":"CMS_EDITOR","itemRemove":"CMS_EDITOR"},"defaultSort":null,"version":17,"plugins":{"multilingual":{"translatable":["title","prenom","nomDeFamille","courriel","message","telephone","units","demandeDuClient"]},"persistentPageLink":{"isPersisted":true,"isUpdatable":true}},"pagingMode":["OFFSET","CURSOR"],"translatable":false,"ttl":null,"capabilities":{"indexing":{"regular":3,"regular1Field":0,"compound":3,"unique":1,"total":4}},"updatedDate":"2025-06-14T15:46:48.449Z"}},"dataStore":{"recordInfosByDatasetId":{"comp-m8omcih82":{"itemIds":["2470dc7f-3644-49dd-aa23-256cdcbdac46"],"datasetSize":{"total":1,"loaded":1},"collectionId":"Location"},"comp-mfl8zvjs":{"itemIds":["75c0dc6e-69fa-455c-941d-35d088470b1a"],"datasetSize":{"total":35,"loaded":1,"cursor":"LnjjKFfK1ctcCwS+lMrkakAUQRljm\/eZmzXq6obmU1FXnFZG72++tuOwumy5vDdnJ+N5f3W1Z8\/dZjvNTHriwUirXjrEnjSM9dZB+ppPTpevnoG5r8yzMfVI1hX41f\/pdfIr1kSUmGOdXFj5XpMio4Os5HXUR12t1J5WH\/25UDHs8EAKb+PqPoAerg0m4ch0bpoVdAxIm6ywwOOmgY8xfvP50i2A1Mxnzoq6ysFCkYHiIMC9HTZ26j\/+\/6e6FeDvUZCz\/4QMWEW\/LVySM782RM5MX6nVP745D5L1cjm3jFQFWulxIV5U1d9PYLKqUwV+H8ZYqvL51p9Uh9OMTfabSVjpfsAqnl05uOwFOBF1Qf0Y907kZUW+no9ye97Hc6k45Us7B6jeXtS3e3XjLgZtfILgSCVzfenPd7H+j2SyU0shIsp2VVIkcHSzTGKTDvRCmn3lGYc\/iz1Lz\/VKv6awng=="}}},"recordsByCollectionId":{"Location":{"2470dc7f-3644-49dd-aa23-256cdcbdac46":{"imageSecondaire":"wix:image:\/\/v1\/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg\/1-4.jpg#originWidth=2048&originHeight=1365","nombreDeChambres":"1-3","adresseCivique":"650 RUE FLAVIE POIRIER","_id":"2470dc7f-3644-49dd-aa23-256cdcbdac46","imagePrinciple":"wix:image:\/\/v1\/0df8bb_d422b67dcd1844059b6143417458f3b5~mv2.jpg\/650%20Rue%20Flavie%20Poirier,%20SCB_Facade%20Devant%201.jpg#originWidth=2400&originHeight=1797","_owner":"0df8bb56-8f2d-4978-a872-39f282a27235","_createdDate":{"$date":"2025-09-05T18:18:32.254Z"},"imagesEtVideosDeLaProprit":[{"description":"","fileName":"1-6.jpg","slug":"0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_206b69b69ffc4b23b0763a9ff69506b1~mv2.jpg\/1-6.jpg#originWidth=2048&originHeight=1365","title":"1-6.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-18.jpg","slug":"0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_a48ad9f732ba4c4eb8dc684ab110b267~mv2.jpg\/1-18.jpg#originWidth=2048&originHeight=1365","title":"1-18.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-17.jpg","slug":"0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_c6215d03bc304694ba4e465180af8208~mv2.jpg\/1-17.jpg#originWidth=2048&originHeight=1365","title":"1-17.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-16.jpg","slug":"0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_b6d99cec44d64b09960646e4549c9724~mv2.jpg\/1-16.jpg#originWidth=2048&originHeight=1365","title":"1-16.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-13.jpg","slug":"0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_021012ca524a4c00b8190e4a373ec6d6~mv2.jpg\/1-13.jpg#originWidth=2048&originHeight=1365","title":"1-13.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-11.jpg","slug":"0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_0e4a2d0f488741d2b55130e20501a1fc~mv2.jpg\/1-11.jpg#originWidth=2048&originHeight=1365","title":"1-11.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-7.jpg","slug":"0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_fe7f201e249645e7b90ee3665b8ee923~mv2.jpg\/1-7.jpg#originWidth=2048&originHeight=1365","title":"1-7.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-4.jpg","slug":"0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_33e34e4dd24246328faed19722c123cc~mv2.jpg\/1-4.jpg#originWidth=2048&originHeight=1365","title":"1-4.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"1-3.jpg","slug":"0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/0df8bb_1f2afdb08689460faf1583f3697f1611~mv2.jpg\/1-3.jpg#originWidth=2048&originHeight=1365","title":"1-3.jpg","type":"image","settings":{"width":2048,"height":1365,"focalPoint":[0.5,0.5]}}],"frquence":"MOIS","link-location-title":"\/location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","descriptionDeLaProprit":"<p class=\"font_8\">3 1\/2 À PARTIR DE 1150$<\/p>\n<p class=\"font_8\">4 1\/2 À PARTIR DE 1250$<\/p>\n<p class=\"font_8\">5 1\/2 À PARTIR DE 1500$<\/p>\n<p class=\"font_8\">Ces prix sont sujets à changement selon les promotions et loyer en vigueur<\/p>\n<p class=\"font_8\">Adresse: Flavie-Poirier, Saint-Charles-Borromee<\/p>\n<p class=\"font_8\">Les appartements comprennent :<\/p>\n<p class=\"font_8\">- 1 Salle de bain<\/p>\n<p class=\"font_8\">- Salle de lavage<\/p>\n<p class=\"font_8\">- Air climatisé mural\/thermopompe et Échangeur d’air<\/p>\n<p class=\"font_8\">- Un espace ouvert et lumineux<\/p>\n<p class=\"font_8\">- Un espace extérieur (balcon)<\/p>\n<p class=\"font_8\">- Animaux acceptés sous certaines conditions<\/p>\n<p class=\"font_8\">- TV\/Internet Vidéotron inclus<\/p>\n<p class=\"font_8\">- 1 Stationnements inclus<\/p>\n<p class=\"font_8\">- Rangement intérieur disponible ($)<\/p>\n<p class=\"font_8\">Emplacement idéal pour ceux qui cherchent à conjuguer qualité de vie et beauté naturelle, à proximité de tous les services essentiels. Laissez-vous charmer par nos unités !<\/p>\n<p class=\"font_8\">**Photos à titre indicatif seulement**<\/p>\n<p class=\"font_8\">N'hésitez pas à nous contacter pour plus d'informations ou pour planifier une visite!<\/p>\n<p class=\"font_8\">CONTACT : 450-499-7978<\/p>\n<p class=\"font_8\">COURRIEL : info@leshabitationssf.com<\/p>\n<p class=\"font_8\">*Certaines conditions s'appliquent*<\/p>","_updatedDate":{"$date":"2025-09-05T18:22:29.001Z"},"enVedette":true,"nombreDeSallesDeBain":"1","prix":1250,"adresseComplte":{"subdivisions":[{"code":"QC","name":"Québec","type":"ADMINISTRATIVE_AREA_LEVEL_1"},{"code":"Lanaudière","name":"Lanaudière","type":"ADMINISTRATIVE_AREA_LEVEL_2"},{"code":"Saint-Charles-Borromã©E","name":"Saint-Charles-Borromã©E","type":"ADMINISTRATIVE_AREA_LEVEL_3"},{"code":"CA","name":"Canada","type":"COUNTRY"}],"city":"Saint-Charles-Borromã©E","location":{"latitude":46.0385082,"longitude":-73.4758044},"countryFullname":"Canada","streetAddress":{"number":"650","name":"Rue Flavie Poirier","apt":""},"formatted":"650 Rue Flavie Poirier, Saint-Charles-Borromã©E, QC J6E 8Y9, Canada","country":"CA","postalCode":"J6E 8Y9","subdivision":"QC"},"typeDimmeuble":["APPARTEMENT"],"region":["Saint-Charles-Borromée"],"disponibilite":true,"ville":"SAINT-CHARLES-BORROMEE","title":"3 1\/2 4 1\/2 5 1\/2 NEUF SAINT-CHARLES-BORROMEE","link-copy-of-location-title":"\/copy-of-location\/3-1%2F2-4-1%2F2-5-1%2F2-neuf-saint-charles-borromee","nombreDeSallesDeBain1":"3-5"},"75c0dc6e-69fa-455c-941d-35d088470b1a":{"imageSecondaire":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","nombreDeChambres":"2","adresseCivique":"Boulevard l'Amérique- Francaise ","_id":"75c0dc6e-69fa-455c-941d-35d088470b1a","imagePrinciple":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","_owner":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","_createdDate":{"$date":"2025-09-08T14:54:28.981Z"},"imagesEtVideosDeLaProprit":[{"description":"","fileName":"514646087_24202612302683661_2141445117385405711_n.jpg","slug":"5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","title":"514646087_24202612302683661_2141445117385405711_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514346442_737519705440090_5625784311658989043_n.jpg","slug":"5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg\/514346442_737519705440090_5625784311658989043_n.jpg#originWidth=960&originHeight=638","title":"514346442_737519705440090_5625784311658989043_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513956748_605174219292282_4948914998556777853_n.jpg","slug":"5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg\/513956748_605174219292282_4948914998556777853_n.jpg#originWidth=960&originHeight=638","title":"513956748_605174219292282_4948914998556777853_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514707686_1924960548324105_4232948139591812700_n.jpg","slug":"5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg\/514707686_1924960548324105_4232948139591812700_n.jpg#originWidth=960&originHeight=638","title":"514707686_1924960548324105_4232948139591812700_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516197379_1447432313242521_4617035550820131745_n.jpg","slug":"5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg\/516197379_1447432313242521_4617035550820131745_n.jpg#originWidth=960&originHeight=638","title":"516197379_1447432313242521_4617035550820131745_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489373820_1016680700283430_8615493138739300961_n.jpg","slug":"5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg\/489373820_1016680700283430_8615493138739300961_n.jpg#originWidth=960&originHeight=638","title":"489373820_1016680700283430_8615493138739300961_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516022778_1755651455027777_937280568293922313_n.jpg","slug":"5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg\/516022778_1755651455027777_937280568293922313_n.jpg#originWidth=960&originHeight=638","title":"516022778_1755651455027777_937280568293922313_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515251778_653712071061254_5529898409053103548_n.jpg","slug":"5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg\/515251778_653712071061254_5529898409053103548_n.jpg#originWidth=960&originHeight=638","title":"515251778_653712071061254_5529898409053103548_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514972410_1293485992396146_3222863060244739430_n.jpg","slug":"5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg\/514972410_1293485992396146_3222863060244739430_n.jpg#originWidth=960&originHeight=638","title":"514972410_1293485992396146_3222863060244739430_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514540784_695018393347375_2888448066215732589_n.jpg","slug":"5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg\/514540784_695018393347375_2888448066215732589_n.jpg#originWidth=960&originHeight=638","title":"514540784_695018393347375_2888448066215732589_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514500119_702565739425128_1147449990054449884_n.jpg","slug":"5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg\/514500119_702565739425128_1147449990054449884_n.jpg#originWidth=960&originHeight=638","title":"514500119_702565739425128_1147449990054449884_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372762_2713660005498871_4733097477494250675_n.jpg","slug":"5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg\/489372762_2713660005498871_4733097477494250675_n.jpg#originWidth=960&originHeight=638","title":"489372762_2713660005498871_4733097477494250675_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515069041_1069138161850276_582622406997880659_n.jpg","slug":"5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg\/515069041_1069138161850276_582622406997880659_n.jpg#originWidth=960&originHeight=638","title":"515069041_1069138161850276_582622406997880659_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372713_984834983577770_8155438069471395066_n.jpg","slug":"5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","title":"489372713_984834983577770_8155438069471395066_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513825131_1436054440628551_5696716311336627229_n.jpg","slug":"5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg\/513825131_1436054440628551_5696716311336627229_n.jpg#originWidth=960&originHeight=638","title":"513825131_1436054440628551_5696716311336627229_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}}],"frquence":"Mois","link-location-title":"\/location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","descriptionDeLaProprit":"<p class=\"font_8\">Luxueux 4 ½ au cœur du Plateau <\/p>\n<p class=\"font_8\">• 1er étage <\/p>\n<p class=\"font_8\">• Disponible le 1er juillet <\/p>\n<p class=\"font_8\">• Thermopompe (air climatisé) <\/p>\n<p class=\"font_8\">• Pas d’animaux <\/p>\n<p class=\"font_8\">• Enquête de pré-location obligatoire <\/p>\n<p class=\"font_8\">• Construction 2019 <\/p>\n<p class=\"font_8\">• Très lumineux, plafonds de 8 pi <\/p>\n<p class=\"font_8\">• Salle de bain avec douche et bain séparés <\/p>\n<p class=\"font_8\">• Deux grandes chambres plus espace bureau <\/p>\n<p class=\"font_8\">• 1 espace de stationnement privé (déneigé) inclus <\/p>\n<p class=\"font_8\">• Espace de rangement (remise) <\/p>\n<p class=\"font_8\">• Cuisine tendance à aire ouverte <\/p>\n<p class=\"font_8\">• Électroménagers non inclus <\/p>\n<p class=\"font_8\">Courriel: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Tel: 450-499-7978 English <\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Luxurious 2-Bed (4 ½) in the heart of the Plateau <\/p>\n<p class=\"font_8\">• 1st floor <\/p>\n<p class=\"font_8\">• Available July 1 <\/p>\n<p class=\"font_8\">• Heat pump (A\/C) <\/p>\n<p class=\"font_8\">• No pets <\/p>\n<p class=\"font_8\">• Credit check required <\/p>\n<p class=\"font_8\">• New construction (2019) <\/p>\n<p class=\"font_8\">• Very bright with 8' ceilings <\/p>\n<p class=\"font_8\">• Bathroom with separate shower and tub <\/p>\n<p class=\"font_8\">• Two large bedrooms plus home office space <\/p>\n<p class=\"font_8\">• 1 private parking space included (snow-cleared) <\/p>\n<p class=\"font_8\">• Exterior storage unit <\/p>\n<p class=\"font_8\">• Trendy open-concept kitchen <\/p>\n<p class=\"font_8\">• Appliances not included <\/p>\n<p class=\"font_8\">E-mail: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Phone: 450-499-7978<\/p>","_updatedDate":{"$date":"2025-09-08T14:54:28.981Z"},"enVedette":false,"nombreDeSallesDeBain":"1","prix":1750,"adresseComplte":{"subdivisions":[{"code":"QC","name":"Québec","type":"ADMINISTRATIVE_AREA_LEVEL_1"},{"code":"Outaouais","name":"Outaouais","type":"ADMINISTRATIVE_AREA_LEVEL_2"},{"code":"Gatineau","name":"Gatineau","type":"ADMINISTRATIVE_AREA_LEVEL_3"},{"code":"Le Plateau","name":"Le Plateau","type":"ADMINISTRATIVE_AREA_LEVEL_4"},{"code":"CA","name":"Canada","type":"COUNTRY"}],"city":"Gatineau","location":{"latitude":45.4360266,"longitude":-75.8182333},"countryFullname":"Canada","streetAddress":{"number":"49","name":"Boulevard de l'Amérique-Française","apt":"2"},"formatted":"49 Boul. de l'Amérique-Française #2, Gatineau, QC J9J 4B6, Canada","country":"CA","postalCode":"J9J 4B6","subdivision":"QC"},"typeDimmeuble":["APPARTEMENT"],"region":["Gatineau"],"disponibilite":true,"ville":"Gatineau","title":"APPARTEMENT à LOUER 4 1\/2 GATINEAU","link-copy-of-location-title":"\/copy-of-location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","nombreDeSallesDeBain1":"5 "}}},"uniqueFieldValuesByCollection":{"Location":{}}}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"importedNamespaces":[]},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"comp-m8omf94t_appSettings":{"pageId":"d34uk","styleId":"style-jyem87tx","upgrades":{"fullscreen":{"date":"Tue Dec 11 2018 18:15:52 GMT+0300 (Москва, стандартное время)"}},"layoutTeaserShowed":true,"galleryId":"f69dcbf9-e1a7-426c-98ee-2da2f685c218","originGallerySettings":null},"comp-m8omf94t_galleryData":{"items":[{"itemId":"dbb93b00-91d8-4fb1-a372-e7cffcf44fcb","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":-287258,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1349,"width":2397,"fileName":"pexels-yaroslav-shuraev-1553961_edit.jpg","name":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},"mediaUrl":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},{"itemId":"d066ae7a-e300-4ffd-b33f-095f08f2c3da","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":844792578030.5,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3751,"width":2501,"fileName":"mathilde-langevin-6fz3ajqj88c-unsplash_edit.jpg","name":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},"mediaUrl":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},{"itemId":"d1d9c6a6-188f-41b8-8d0b-732ad02a0154","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1267189010674.75,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5862,"width":5685,"fileName":"florian-krumm-Fudi5uf5-m8-unsplash_edit.jpg","name":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},"mediaUrl":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},{"itemId":"537cf9e5-fb38-4855-a759-4da6163a4fc9","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1478387226996.875,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":933,"width":623,"focalPoint":[0.5,0.5],"fileName":"0_1 (6).jpg","name":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},"mediaUrl":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},{"itemId":"b5b299a3-71d8-4ae3-aa0b-dd1b388ddb4d","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1583986335157.9375,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4761,"width":3174,"fileName":"the-blowup-X5gIdTDxkYU-unsplash_edit.jpg","name":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},"mediaUrl":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},{"itemId":"96afa29d-6b92-4f99-be4f-13e82e9ee669","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1636785889238.4688,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3515,"width":2344,"fileName":"arctic-qu-Yn7NXC5SFQo-unsplash_edit.jpg","name":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},"mediaUrl":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},{"itemId":"e759f1da-099c-4a3a-81f1-c4ad0692ee6e","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1663185666278.7344,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1713,"width":1142,"fileName":"martin-jursitzka-5NSLhET_jmw-unsplash (1).png","name":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},"mediaUrl":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},{"itemId":"1255be04-9bec-4cba-8768-cfaa76be582b","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1676385554798.8672,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-arthouse-studio-5091109-1920x1080-50fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":720,"quality":"720p","width":1280},{"formats":["mp4"],"height":480,"quality":"480p","width":854},{"formats":["mp4"],"height":360,"quality":"360p","width":640}],"duration":20600},"mediaUrl":"8bb438_927f3e749a784536afbcdd81890e8064"},{"itemId":"b2b9804e-41a8-4cf2-b387-2332f1095e36","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1682985499058.9336,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":6000,"width":4000,"fileName":"almas-salakhov-r6tBVNU-mx4-unsplash_edit.jpg","name":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},"mediaUrl":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},{"itemId":"db9fee57-10cc-45f7-b45d-1833098c4eb5","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585443319,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5255,"width":3503,"fileName":"philippe-gauthier-KQsU_tQDH9k-unsplash_edit.jpg","name":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},"mediaUrl":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},{"itemId":"5146d337-7d0e-4010-a24e-63ae281a7631","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585444021,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4405,"width":4271,"fileName":"0220 (2).jpg","name":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},"mediaUrl":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},{"itemId":"57fb6172-1793-4e03-8a34-2059b664d4a0","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585851017,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-ксения-капустина-9350509-1080x1920-30fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":406,"quality":"720p","width":720},{"formats":["mp4"],"height":270,"quality":"480p","width":480},{"formats":["mp4"],"height":202,"quality":"360p","width":360}],"duration":10043},"mediaUrl":"8bb438_f6bbdd3a41df4bcab09c7333855ba583"}],"totalItemsCount":12}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"form-viewer-comp-m2y1awex":{"formsById":{"39743f17-3b77-49be-b37c-a7284b6479cc":{"id":"39743f17-3b77-49be-b37c-a7284b6479cc","fields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","target":"email_443e","validation":{"string":{"format":"EMAIL","enum":[]},"required":true},"pii":true,"hidden":false,"view":{"label":"E-mail","fieldType":"CONTACTS_EMAIL","hideLabel":false},"readOnly":false},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","pii":false,"hidden":false,"view":{"submitText":"S'ABONNER","thankYouMessageDuration":8,"thankYouMessageText":{"nodes":[{"id":"06udw27","type":"PARAGRAPH","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Thanks, we received your submission.","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"id":"4eed8828-bee0-4b73-9a8d-3610631c9875","version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z"}},"nextText":"Next","submitAction":"THANK_YOU_MESSAGE","fieldType":"SUBMIT_BUTTON","previousText":"Back"},"readOnly":false},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","pii":false,"hidden":false,"view":{"content":{"nodes":[{"id":"cuu0z29","type":"HEADING","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a","version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z"},"documentStyle":{}},"fieldType":"HEADER"},"readOnly":false}],"formFields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","hidden":false,"identifier":"CONTACTS_EMAIL","fieldType":"INPUT","inputOptions":{"target":"email_443e","pii":true,"required":true,"inputType":"STRING","contactMapping":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}},"readOnly":false,"stringOptions":{"validation":{"format":"EMAIL","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"E-mail","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","hidden":false,"identifier":"SUBMIT_BUTTON","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"PAGE_NAVIGATION","pageNavigationOptions":{"nextPageText":"Next","previousPageText":"Back","submitText":"S'ABONNER"}}},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","hidden":false,"identifier":"HEADER","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"RICH_CONTENT","richContentOptions":{"richContent":{"nodes":[{"type":"HEADING","id":"cuu0z29","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z","id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a"},"documentStyle":{}}}}}],"steps":[{"id":"8f0147c8-3b42-47b8-af55-5f708dd9933d","name":"Page 1","hidden":false,"layout":{"large":{"items":[{"fieldId":"fa3b0aad-f2fe-47df-ee69-6441506710df","row":1,"column":0,"width":8,"height":1},{"fieldId":"d5df37db-369b-4f3c-f561-579e39eeee46","row":1,"column":8,"width":4,"height":1},{"fieldId":"9c5d853d-7654-4b58-5574-bf0262076a35","row":0,"column":0,"width":12,"height":1}],"sections":[]}}}],"rules":[],"revision":"5","createdDate":"2024-11-01T01:06:55.602Z","updatedDate":"2024-11-14T03:29:39.801Z","properties":{"name":"Abonnement","disabled":false},"deletedFields":[],"deletedFormFields":[],"kind":"REGULAR","postSubmissionTriggers":{"upsertContact":{"fieldsMapping":{"email_443e":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}}},"labels":[]}},"extendedFields":{"namespaces":{"@forms\/form-app":{"automationId":"07baafb0-a4af-4945-9d02-e93bb0e17a3a"}}},"namespace":"wix.form_app.form","nestedForms":[],"spamFilterProtectionLevel":"ADVANCED","submitSettings":{"submitSuccessAction":"THANK_YOU_MESSAGE","thankYouMessageOptions":{"durationInSeconds":8,"richContent":{"nodes":[{"type":"PARAGRAPH","id":"06udw27","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Merci pour votre envoi","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z","id":"4eed8828-bee0-4b73-9a8d-3610631c9875"},"documentStyle":{}}}},"fieldGroups":[],"enabled":true,"name":"Abonnement","formRules":[],"autoFillContact":"FORM_INPUT","submissionAccess":"OWNER_AND_COLLABORATORS"}},"translations":{"field-description.a11y.aria-label":"Lien de description {linkText}","form.submit-button.next-step":"Suivant","multiline-address.a11y.group-name":"Champ d'adresse","error.could-not-load-form.button.label":"Actualiser","submit.failed.message.SUBMISSION_LIMIT_PER_USER_EXCEEDED":"You've reached the submission limit for this form.","form.a11y.step.index.title":"Étape {index} sur {total}","form.disabled.fallback-message":"Sorry, but the form is closed.","submit.failed.message.DISABLED_FORM_ERROR":"Ce formulaire a expiré, vous ne pouvez plus le remplir.","bookings-address.a11y.group-name":"Address field","error.could-not-load-form.title":"Impossible de charger ce formulaire","form.submit-button.state.in-progress":"Envoi du formulaire...","checkbox.input.error.message.required":"Cochez la case pour continuer.","submit.failed.message.SITE_MUST_ACCEPT_PAYMENTS_TO_CREATE_CHECKOUT":"Nous ne pouvons pas accepter les paiements en ligne pour le moment. Contactez-nous pour effectuer votre transaction.","error.could-not-load-form.description":"Il semble qu'il y ait eu un problème temporaire de notre côté. Veuillez patienter quelques minutes, puis cliquez sur Actualiser pour réessayer.","form.submit-button.previous-step":"Retour","contacts-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field-context-menu.cut":"Couper","input.error.message.incomplete-date-error.day-time":"Saisissez un jour et une heure.","field.signature.a11y.action-description.type":"Utilisez le clavier pour écrire.","input.error.message.invalid-default-value-error":"Enter a valid default value","input.error.message.required-error-forced":"Ce champ est obligatoire.","field-context-menu.show-field":"Afficher le champ","date-picker.input.error.message.format-error":"Choisissez une date.","form.login-bar.actions.login":"Se connecter","date-picker.a11y.clear-button":"Effacer","form.file-upload.uploading":"Importation de {count, plural, =0 {...} other {#%...}}","rating-input.a11y.reaction-label":"{count, plural, one {{count} étoile} other {{count} étoiles}}","contacts-company.input.error.message.required-error":"Saisissez un nom d'entreprise.","dext-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.signature.clear-button.label":"Effacer","input.error.message.type-error":"Choisissez un {type}.","payment-input.input.error.message.required-error":"Saisissez un montant de paiement.","form.login-bar.action.logout":"Se déconnecter","date-picker.a11y.arrow-left":"Accéder au mois précédent","mla-subdivision.input.error.message.required-error.tr":"Choisissez une ville.","settings.scheduling.sync-external-calendars.modal.tooltip.kb-link":"https:\/\/support.wix.com\/fr\/article\/r%C3%A9unions-synchroniser-les-agendas-personnels-avec-r%C3%A9unions","input.error.message.value-range-error":"Saisissez un nombre entre {minLimit} et {maxLimit}.","input.error.message.incomplete-date-error.year-month":"Saisissez un mois et une année.","mla-address-line.input.error.message.required-error":"Saisissez une adresse.","contacts-position.input.error.message.required-error":"Saisissez un nom de poste.","bookings-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.year-month-time":"Saisissez un mois, une heure et une année.","field.number.aria-role-description":"Nombre","signature.input.error.message.required-error":"Signez dans la zone ci-dessus.","field.date.label.month":"Mois","field.rich-text.read-more-button.label":"Lire plus","field.time.label.period":"Réglage 24 h","submit.failed.message":"Nous n'avons pas pu envoyer votre formulaire. Veuillez réessayer plus tard.","image-choice.input.error.message.required-error":"Choisissez une option.","dext-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","mla-city.input.error.message.required-error.tr":"Saisissez un district.","date-picker.a11y.calendar-button.role-description":"Pop-up de la fenêtre de l'agenda réduit","field.signature.a11y.action-description.draw-or-type":"Signez dans la case ou utilisez le clavier pour écrire.","settings.scheduling.meeting-type.round-robin":"Rotation des organisateurs","field.time.perdiod.AM":"AM","form.login-bar.title.logged-out-state":"Avez-vous un compte ? ","form.appointment.slots-not-found.text":"Il n'y a aucune disponibilité pour cette date. Essayez de sélectionner une autre date.","input.error.message.format-error":"Utilisez le format « {format} ».","contacts-address.input.error.message.required-error":"Saisissez une adresse.","field-context-menu.copy":"Copier dans le presse-papiers","field.signature.a11y.state.empty":"Le champ de signature est vide.","dext-date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","payment-input.input.error.message.min-value-error":"Saisissez un montant de paiement supérieur à {limit} {currency}.","input.error.message.incomplete-date-error.year-time":"Saisissez une année et une heure à 4 chiffres.","field.signature.a11y.state.signed":"Signé.","field.quiz-answer-feedback.wrong":"Incorrect","mla-city.input.error.message.required-error":"Saisissez une ville.","full-name.input.error.message.required-error":"Saisissez le prénom et le nom.","field.rich-text.read-less-button.label":"Lire moins","form.appointment.accessibility.calendar.previous-week.aria-label":"Afficher la semaine précédente","field.signature.mode.upload.description":"Le mode d'importation a été sélectionné. Importez une image de votre signature.","field.quiz-file-upload.skipped":"Cette question a été ignorée. ","ecom.email.label":"E‑mail","input.error.message.incomplete-date-error.year-month-day":"Saisissez un mois, un jour et une année.","field-context-menu.make-optional":"Rendre facultatif","settings.scheduling.meeting-type.info-icon.round-robin.description":" - Les réunions alternent entre les organisateurs.","contacts-subscribe.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.signature.mode.draw.description":"Le mode de dessin a été sélectionné. Le dessin nécessite une souris ou un pavé tactile. Pour l'accessibilité du clavier, sélectionnez « Saisir » ou « Importer ».","checkbox.input.error.message.required-error":"Cochez la case pour continuer.","date-picker.input.error.message.required-error":"Choisissez une date.","dext-tags.input.error.message.required-error":"Choisissez une option.","field-context-menu.delete":"Supprimer","field.date.label.year":"Année","mla-address-line-2.input.error.message.required-error":"Saisissez une deuxième ligne d'adresse (ex. appartement, suite, étage).","form.login-bar.title.logged-in-state":"Connecté en tant que {user}","payment-input.input.error.message.max-value-error":"Saisissez un montant de paiement inférieur à {limit} {currency}.","ecom-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","payment-input.input.error.message.value-range-error":"Saisissez un montant de paiement compris entre {minLimit} {currency}et {maxLimit} {currency}.","settings.appointment.sync-external-calendars.hosts-title":"Synchroniser les agendas pour les organisateurs","input.error.message.incomplete-date-error.year-day":"Saisissez un jour et une année.","submission-table.signature.not-signed":"Non signé","dext-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","contacts-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","vat-id.input.error.message.required-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","input.error.message.incomplete-date-error.day":"Saisissez un jour.","date-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","input.error.message.invalid-location-id-error":"Location is invalid","input.error.message.max-length-error":"{limit, plural, one {Saisissez un maximum de {limit,number} caractère.} other {Saisissez un maximum de {limit,number} caractères.}}","field.date.placeholder.day":"Jour","services-dropdown.input.error.message.required-error":"Select a Service","ecom-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dext-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","dext-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","contacts-date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","signature.input.error.message.required-error.with-upload":"Signez dans la zone ci-dessus ou importez votre signature.","forms.widget.modals.show-password-tooltip":"Afficher le mot de passe","contacts-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.phone.country-selector-button.aria-label":"Sélectionnez l'indicatif du pays","field-context-menu.move-up":"Déplacer vers le haut","dext-text-input.input.error.message.required-error":"Saisissez une réponse.","settings.required-indicator-text":"(Obligatoire)","file-upload.dropzone.overlay.button":" Déposer vos fichiers ici","platform-quiz-radio-group.input.error.message.required-error":"Choose an option.","field.time.perdiod.PM":"PM","contacts-birthdate.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.quiz-answer-feedback.correct":"Bonne réponse","settings.appointment.duration.custom":"Personnalisée","vat-id.input.error.message.required-error":"Saisissez un numéro CPF\/CNPJ.","bookings-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","input.error.message.character-length-range-error":"Saisissez entre {minLimit} et {maxLimit} caractères.","bookings-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","contacts-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dropdown.input.error.message.required-error":"Choisissez une option.","dext-text-area.input.error.message.required-error":"Saisissez une réponse.","field.signature.settings.upload-button.label":"Importer une image","field.date.placeholder.month":"Mois","form.error.prefix.a11y":"Erreur :","contacts-tax-id.input.error.message.required-error":"Saisissez un numéro de TVA.","signature.text.placeholder":"Type your signature","contacts-number-input.input.error.message.required-error":"Enter a number.","date-picker.a11y.aria-label":"Afficher le sélecteur de date","field.phone.country-search-input.aria-label":"Rechercher","field.signature.a11y.state.drawing":"Signature en cours...","input.error.message.unknown-value-error":"Doit comporter des informations supplémentaires.","phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","dext-date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","form.appointment.empty-state.notification.text":"Il n'y a aucun créneau horaire disponible pour le moment. Veuillez nous contacter pour finaliser votre demande.","mla-country.input.error.message.required-error":"Choisissez un pays\/une région.","field.time.label.hours":"Heures","file-upload.delete-file.aria-label":"Supprimer le fichier","field.vat-id.label-br":"CPF\/CNPJ","ecom-header.contact-details":"Détails du client","input.error.message.invalid-staff-id-error":"This field is invalid.","date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","contacts-first-name.input.error.message.required-error":"Saisissez un prénom.","file-upload.dropzone.title":"Importer votre fichier","field-context-menu.move-down":"Déplacer vers le bas","contacts-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field.time.label.minutes":"Minutes","dext-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","bookings-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","form.file-upload.explanation-text":"{count, plural, one {{count,number} fichier importé} other {{count,number} fichiers importés}}","settings.scheduling.meeting-type.info-icon.intro":"Comment les organisateurs sont attribués :","pikachu.input.error.message.required-error":"Choose an option.","contacts-last-name.input.error.message.required-error":"Saisissez un nom de famille.","forms.widget.modals.hide-password-tooltip":"Masquer le mot de passe","field.signature.mode.selector.aria-label":"Mode de saisie de signature","phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif téléphonique ne sont pas acceptés.","field.signature.mode.draw.label":"Dessiner","mla-postal-code.input.error.message.pattern-error":"Saisissez un code postal valide.","date-picker.a11y.dropdown-year":"Sélectionner l'année","time-input.input.error.message.format-error":"Saisissez les heures et les minutes.","field-context-menu.hide-field":"Masquer le champ","input.error.message.not-allowed-value":"La valeur choisie n'est pas autorisée.","input.error.message.min-value-error":"Saisissez un nombre égal ou supérieur à {limit}.","input.error.message.incomplete-date-error.month-day":"Saisissez un mois et un jour.","field.date.placeholder.time":"HH:MM","submit.checkout.message":"Redirection vers la page de paiement...","form.file-upload.error.unsupported-file-format":"Le type de fichier n'est pas pris en charge.","settings.scheduling.meeting-type.info-icon.single-host.description":" - Un même organisateur est attribué à toutes les réunions.","input.error.message.invalid-phone-country-code-error":"Saisissez un indicatif de pays valide.","mla-street-name.input.error.message.required-error":"Saisissez un nom de rue.","settings.scheduling.sync-external-calendars.not-current-user.kb-link":"https:\/\/support.wix.com\/en\/article\/wix-meetings-syncing-personal-calendars-with-wix-meetings","bookings-first-name.input.error.message.required-error":"Saisissez un prénom.","vat-id.input.error.message.format-error":"Saisissez un numéro CPF\/CNPJ valide.","form.appointment.accessibility.calendar.next-week.aria-label":"Afficher la semaine prochaine","donation.input.error.message.required-error":"Choisissez un montant de don.","settings.appointment.duration.hours-error":"Les heures doivent être comprises entre 0 et 99.","input.error.message.incomplete-date-error.month":"Saisissez un mois.","input.error.message.incomplete-date-error.year":"Saisissez une année à 4 chiffres.","vat-id.input.error.message.format-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","settings.appointment.duration.hours-label":"Heures","field.phone.aria-label":"Téléphone","field.signature.canvas.aria-label.empty":"Zone de dessin de la signature (vide)","file-upload.dropzone.limit-reached.title":"Vous avez atteint la limite d'importation de fichiers.","form.appointment.accessibility.calendar.has-availability.aria-label":"Ce jour dispose de créneaux horaires disponibles.","bookings-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.month-time":"Saisissez un mois et une heure.","product-list.input.error.message.required-error":"Choisissez une option.","field-context-menu.move-to-next-page":"Déplacer vers la page suivante","mla-postal-code.input.error.message.required-error":"Saisissez un code postal.","file-upload.input.error.message.required-error":"Veuillez importer un fichier.","vat-id.input.error.message.format-error.br":"Enter a valid CPF\/CNPJ number.","input.error.message.exact-character-length-error":"{limit, plural, one {Saisissez exactement {limit,number} caractère.} other {Saisissez exactement {limit,number} caractères.}}","submission-table.signature.signed":"Signé","input.error.message.incomplete-date-error":"Saisissez un mois, un jour et une année.","ecom-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field.vat-id.label-il":"Numéro d’identité\/d’entreprise","text-input.input.error.message.required-error":"Saisissez une réponse.","url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-header.shipping-details":"Informations de livraison","service-dropdown.input.error.message.required-error":"Sélectionnez un service.","field.signature.mode.type.description":"Le mode de saisie a été sélectionné. Saisissez votre signature à l'aide du clavier.","input.error.message.incomplete-date-error.year-day-time":"Saisissez un jour, une heure et une année.","number-input.input.error.message.required-error":"Saisissez un nombre.","field.signature.mode.upload.label":"Importer","input.error.message.unknown-error":"Erreur inconnue, veuillez contacter l'Assistance.","input.error.message.max-items-error":"{limit, plural, one {Choisissez jusqu'à {limit,number} option.} other {Choisissez jusqu'à {limit,number} options.}}","file-upload.popover.aria-label":"Liste des fichiers importés","input.error.message.multiple-of-value-error":"Choisissez un multiple de {multipleOf}.","full-name-last-name.input.error.message.required-error":"Saisissez un nom de famille.","field-context-menu.paste":"Coller","input.error.message.pattern-error":"Correspond au modèle « {pattern} ».","dext-number-input.input.error.message.required-error":"Saisissez un nombre.","field-context-menu.ai-assistant":"AI Assistant","field-context-menu.move-to-previous-page":"Déplacer vers la page précédente","dext-date-picker.input.error.message.required-error":"Choisissez une date.","settings.appointment.duration.minutes-error":"Les minutes doivent être comprises entre 0 et 59.","date-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","dext-checkbox-group.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.subtitle":"Choisissez un fichier ou glissez-déposez-le ici.","dext-radio-group.input.error.message.required-error":"Choisissez une option.","checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","contacts-birthdate.input.error.message.max-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","input.error.message.incomplete-date-error.month-day-time":"Saisissez un mois, un jour et une heure.","file-upload.aria-roledescription":"Importation de fichier","settings.appointment.duration.minutes-label":"Minutes","contacts-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","mla-street-number.input.error.message.required-error":"Saisissez un numéro de bâtiment.","date-picker.a11y.dropdown-month":"Sélectionner le mois","field.signature.mode.type.label":"Saisir","settings.default-value-conflict.min-value-error":"Min characters must be at least the default text length. Update the character limit or shorten the text.","date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","settings.scheduling.meeting-type.personal":"Organisateur unique","date-time-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","dext-checkbox.input.error.message.required-error":"Cochez la case pour continuer.","url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","file-upload.file.uploading-spinner.aria-label":"Chargement du ficher","field.phone.country-code.aria-label":"Indicatif du pays","add-other.default-other-option-label":"Autre","dext-checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.date.placeholder.year":"Année","date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","field.signature.text.placeholder":"Saisissez votre signature","dext-date-picker.input.error.message.format-error":"Choisissez une date.","form.file-upload.error.upload-limit":"{limit, plural, one {Il y a une limite d'importation de {limit,number} fichier.} other {Il y a une limite d'importation de {limit,number} fichiers.}}","checkbox-group.input.error.message.required-error":"Choisissez une option.","rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.mla-apartment.label":"Appartement","text-area.input.error.message.required-error":"Saisissez une réponse.","field.phone.country-search-input.placeholder":"Rechercher","submission-table.appointment.meeting-tool-tip":"Go to Scheduled Meetings","donation.other-option.placeholder":"Saisissez un montant","dext-rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.signature.a11y.action-description.draw":"Signez dans la zone.","contacts-birthdate.input.error.message.min-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","mla-subdivision.input.error.message.required-error":"Choisissez une option.","dext-dropdown.input.error.message.required-error":"Choisissez une option.","contacts-text-input.input.error.message.required-error":"Enter an answer.","field.date.label.day":"Jour","vat-id.input.error.message.required-error.br":"Enter a CPF\/CNPJ number.","date-picker.calendar.close-button":"Fermer","settings.appointment.duration.zero-error":"La durée doit être d'au moins 1 minute.","phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.invalid-value-for-pattern":"Saisissez une réponse valide.","radio-group.input.error.message.required-error":"Choisissez une option.","input.error.message.min-items-error":"{limit, plural, one {Choisissez au moins {limit,number} option.} other {Choisissez au moins {limit,number} options.}}","ecom.form.field-type.ecom-subscriptions.label":"J'accepte de recevoir des actualités à l'adresse e-mail et\/ou aux numéros de téléphone ajoutés","input.error.message.decimal_point_error":"Ajouter {number} chiffre(s) après la virgule.","bookings-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","contacts-subscribe.input.error.message.required-error":"Cochez la case pour continuer.","form.appointment.show-more-slots.text":"Afficher plus de créneaux","form.file-upload.error.upload-failed":"Échec d'importation du fichier.","dext-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","full-name-first-name.input.error.message.required-error":"Saisissez un prénom.","field-context-menu.settings":"Paramètres","settings.default-value-conflict.max-value-error":"Max characters must be at least the default text length. Update the character limit or shorten the text.","bookings-last-name.input.error.message.required-error":"Saisissez un nom de famille.","appointment.input.error.message.required-error":"Ce champ est obligatoire.","field-context-menu.make-required":"Rendre obligatoire","date-time-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.date.label.time":"Heure","input.error.message.required-error":"Ce champ est obligatoire.","field.phone.country-selector-dropdown.no-result":"Aucun résultat","input.error.message.exact-items-number-error":"{limit, plural, one {Choisissez {limit,number} option.} other {Choisissez {limit,number} options.}}","form.appointment.timezone.label":"Fuseau horaire ","dext-date-time-input.input.error.message.required-error":"Saisissez le jour, le mois et l'année.","actions.rules.button.label":"Rules","date-time-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","date-picker.a11y.arrow-right":"Accéder au mois suivant","input.error.message.incomplete-date-error.time":"Saisissez une heure.","field.signature.canvas.aria-label.signed":"Zone de dessin de la signature (signée)","settings.default-value-conflict.regex-error":"The regex must be viable for the entered default value. Update the regex or change the text.","contacts-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","tags.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.limit-reached.subtitle":"Supprimez un fichier pour en ajouter un autre.","input.error.message.max-value-error":"Saisissez un nombre égal ou inférieur à {limit}.","input.error.message.min-length-error":"{limit, plural, one {Saisissez un minimum de {limit,number} caractère.} other {Saisissez un minimum de {limit,number} caractères.}}","form.appointment.meeting-format.in-person-location-method-os-location":"Emplacement de l’entreprise","form.file-upload.error.limit":"Vous avez atteint votre limite d'importation de {limit,number} fichiers.","contacts-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field-context-menu.duplicate":"Dupliquer"},"localeDataset":{},"fieldInitialData":{}}}},"builderComponentsWarmupData":{},"ooi":{"failedInSsr":{}}}</script> | |
| 2610 | +<!-- warmup data end --> | |
| 2611 | + | |
| 2612 | + | |
| 2613 | +<!-- presets polyfill --> | |
| 2614 | + | |
| 2615 | + | |
| 2616 | + | |
| 2617 | + | |
| 2618 | +<!-- detect browser zoom --> | |
| 2619 | + | |
| 2620 | + | |
| 2621 | + | |
| 2622 | + | |
| 2623 | + | |
| 2624 | + | |
| 2625 | + | |
| 2626 | + | |
| 2627 | + | |
| 2628 | + | |
| 2629 | + | |
| 2630 | +</body> | |
| 2631 | +</html> | |
added
tests/fixtures/habitations_sf/9bf658dfab06c60e4da7.html
+2611 −0
@@ -0,0 +1,2611 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + | |
| 5 | + <meta charset='utf-8'> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" id="wixDesktopViewport" /> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 8 | + <meta name="generator" content="Wix.com Website Builder"/> | |
| 9 | + | |
| 10 | + <link rel="icon" sizes="192x192" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 11 | + <link rel="shortcut icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 12 | + <link rel="apple-touch-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 13 | + | |
| 14 | + <!-- Safari Pinned Tab Icon --> | |
| 15 | + <!-- <link rel="mask-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg"> --> | |
| 16 | + | |
| 17 | + <!-- Segmenter Polyfill --> | |
| 18 | + <script> | |
| 19 | + if (!window.Intl || !window.Intl.Segmenter) { | |
| 20 | + (function() { | |
| 21 | + var script = document.createElement('script'); | |
| 22 | + script.src = 'https://static.parastorage.com/unpkg/@formatjs/intl-segmenter@11.7.10/polyfill.iife.js'; | |
| 23 | + document.head.appendChild(script); | |
| 24 | + })(); | |
| 25 | + } | |
| 26 | + </script> | |
| 27 | + | |
| 28 | + <!-- Legacy Polyfills --> | |
| 29 | + <script nomodule="" src="https://static.parastorage.com/unpkg/core-js-bundle@3.2.1/minified.js"></script> | |
| 30 | + <script nomodule="" src="https://static.parastorage.com/unpkg/focus-within-polyfill@5.0.9/dist/focus-within-polyfill.js"></script> | |
| 31 | + | |
| 32 | + <!-- Performance API Polyfills --> | |
| 33 | + <script> | |
| 34 | + (function () { | |
| 35 | + var noop = function noop() {}; | |
| 36 | + if ("performance" in window === false) { | |
| 37 | + window.performance = {}; | |
| 38 | + } | |
| 39 | + window.performance.mark = performance.mark || noop; | |
| 40 | + window.performance.measure = performance.measure || noop; | |
| 41 | + if ("now" in window.performance === false) { | |
| 42 | + var nowOffset = Date.now(); | |
| 43 | + if (performance.timing && performance.timing.navigationStart) { | |
| 44 | + nowOffset = performance.timing.navigationStart; | |
| 45 | + } | |
| 46 | + window.performance.now = function now() { | |
| 47 | + return Date.now() - nowOffset; | |
| 48 | + }; | |
| 49 | + } | |
| 50 | + })(); | |
| 51 | + </script> | |
| 52 | + | |
| 53 | + <!-- Essential Viewer Model --> | |
| 54 | + <script type="application/json" id="wix-essential-viewer-model">{"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"siteFeaturesConfigs":{"sessionManager":{"isRunningInDifferentSiteContext":false}},"language":{"userLanguage":"fr"},"siteAssets":{"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"site":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isSEO":false},"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"interactionSampleRatio":0.01,"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","experiments":{"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true}}</script> | |
| 55 | + <script>window.viewerModel = JSON.parse(document.getElementById('wix-essential-viewer-model').textContent)</script> | |
| 56 | + | |
| 57 | + <!-- Globals Definitions --> | |
| 58 | + <script> | |
| 59 | + (function () { | |
| 60 | + var now = Date.now() | |
| 61 | + var activationStart = 0 | |
| 62 | + try { | |
| 63 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 64 | + if (navEntry && navEntry.activationStart > 0) { | |
| 65 | + activationStart = navEntry.activationStart; | |
| 66 | + } | |
| 67 | + } catch (e) {} | |
| 68 | + window.initialTimestamps = { | |
| 69 | + initialTimestamp: now, | |
| 70 | + initialRequestTimestamp: Math.round(performance.timeOrigin ? performance.timeOrigin + activationStart : now - performance.now() + activationStart) | |
| 71 | + } | |
| 72 | + | |
| 73 | + window.thunderboltTag = "libs-releases-GA-local" | |
| 74 | + window.thunderboltVersion = "1.17718.0" | |
| 75 | + })(); | |
| 76 | + </script> | |
| 77 | + | |
| 78 | + <script> | |
| 79 | + window.commonConfig = viewerModel.commonConfig | |
| 80 | + </script> | |
| 81 | + | |
| 82 | + | |
| 83 | + <!-- BEGIN handleAccessTokens bundle --> | |
| 84 | + | |
| 85 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js">(()=>{"use strict";let e,t,r,o;var n={},i={};function l(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return n[e](r,r.exports,l),r.exports}function a(e){let{context:t,property:r,value:o,enumerable:n=!0}=e,i=e.get,l=e.set;if(!r||void 0===o&&!i&&!l)return Error("property and value are required");let a=t||globalThis,s=a?.[r],u={};if(void 0!==o)u.value=o;else{if(i){let e=c(i);e&&(u.get=e)}if(l){let e=c(l);e&&(u.set=e)}}let p={...u,enumerable:n||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(a,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function c(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}l.rv=()=>"1.6.8",l.ruid="bundler=rspack@1.6.8";try{a({property:"strictDefine",value:a})}catch{}try{a({property:"defineStrictObject",value:function e(t){let{context:r,property:o,propertiesToExclude:n=[],skipPrototype:i=!1,hardenPrototypePropertiesToExclude:l=[]}=t;if(!o)return Error("property is required");let c=(r||globalThis)[o],p={},f=u(r,o);c&&("object"==typeof c||"function"==typeof c)&&Reflect.ownKeys(c).forEach(e=>{if(!n.includes(e)&&!s.includes(e)){let t=u(c,e);if(t&&(t.writable||t.configurable)){let{value:r,get:o,set:n,enumerable:i=!1}=t,l={};void 0!==r?l.value=r:o?l.get=o:n&&(l.set=n);try{let t=a({context:c,property:e,...l,enumerable:i});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:c,originalProperties:p};if(!i&&c?.prototype!==void 0){let t=e({context:c,property:"prototype",propertiesToExclude:l,skipPrototype:!0});t instanceof Error||(d.originalPrototype=t?.originalObject,d.originalPrototypeProperties=t?.originalProperties)}return a({context:r,property:o,value:c,enumerable:f?.enumerable}),d}})}catch{}try{a({property:"defineStrictMethod",value:function(e,t){let r=(t||globalThis)[e],o=u(t||globalThis,e);return r&&o&&(o.writable||o.configurable)?(Object.freeze(r),a({context:globalThis,property:e,value:r})):r}})}catch{}var s=["toString","toLocaleString","valueOf","constructor","prototype"];function u(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function p(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function f(e,t){let r="";if("string"==typeof e)r=e.split("=")[0]?.trim()||"";else{if(!e||"string"!=typeof e.name)return!1;r=e.name}return t.has(p(r)||"")}function d(e,t){return("string"==typeof e?e.split(";").map(e=>e.trim()).filter(e=>e.length>0):e||[]).filter(e=>!f(e,t))}var y=null;function g(){return null===y&&(y=typeof Document>"u"?void 0:Object.getOwnPropertyDescriptor(Document.prototype,"cookie")),y}let b=(e,t)=>{try{let r=t?t.get.call(document):document.cookie;return r.split(";").map(e=>e.trim()).filter(t=>t?.startsWith(e))[0]?.split("=")[1]}catch(e){return""}},h=(e="",t="",r="/")=>`${e}=; ${t?`domain=${t};`:""} max-age=0; path=${r}; expires=Thu, 01 Jan 1970 00:00:01 GMT`;function m(e,t){try{return sessionStorage[e]("reload",t||"")}catch(e){console.error("ATS: Error calling sessionStorage:",e)}}var v=["true","b","c","new","enabled"];let w=[],S=(e,t)=>{let r;return w.includes(t)||!0===(r=e[t])||"string"==typeof r&&v.includes(r.toLowerCase())},T="client-session-bind",k="sec-fetch-unsupported",{experiments:x}=window.viewerModel,{cookie:E}=(e=new Set([T,"client-binding",k,"svSession","smSession","server-session-bind","wixSession2","wixSession3"].map(e=>e.toLowerCase())),a({context:document,property:"cookie",set:{func:t=>{var r,o;let n,i;return r=document,o=void 0,n=g(),i=p(t.split(";")[0]||"")||"",void([...e].every(e=>!i.startsWith(e.toLowerCase()))&&n?.set?n.set.call(r,t):o&&console.warn(o))}},get:{func:()=>(function(e,t){let r=g();if(!r?.get)throw Error("Cookie descriptor or getter not available");return d(r.get.call(e),t).join("; ")})(document,e)},enumerable:!0}),{cookieStore:function(e,t){if(!globalThis?.cookieStore)return;let r=globalThis.cookieStore.get.bind(globalThis.cookieStore),o=globalThis.cookieStore.getAll.bind(globalThis.cookieStore),n=globalThis.cookieStore.set.bind(globalThis.cookieStore),i=globalThis.cookieStore.delete.bind(globalThis.cookieStore);return a({context:globalThis.CookieStore.prototype,property:"get",value:async function(t){return f(("string"==typeof t?t:t.name)||"",e)?null:r.call(this,t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"getAll",value:async function(){let t=await o.apply(this,Array.from(arguments));return d(t,e)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"set",value:async function(){let r=Array.from(arguments);if(!f(1===r.length?r[0].name:r[0],e))return n.apply(this,r);t&&console.warn(t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"delete",value:async function(){let t=Array.from(arguments);if(!f(1===t.length?t[0].name:t[0],e))return i.apply(this,t)},enumerable:!0}),a({context:globalThis.cookieStore,property:"prototype",value:globalThis.CookieStore.prototype,enumerable:!1}),a({context:globalThis,property:"cookieStore",value:globalThis.cookieStore,enumerable:!0}),{get:r,getAll:o,set:n,delete:i}}(e,void 0),cookie:g()}),P="tbReady",C="security_overrideGlobals",{experiments:D,siteFeaturesConfigs:M,accessTokensUrl:O}=window.viewerModel,$={},j=(t=b(T,E),S(x,"specs.thunderbolt.browserCacheReload")&&(b(k,E)||t?m("removeItem"):function(){if("undefined"!=typeof window){let e=performance.getEntriesByType("navigation")[0];return"back_forward"===(e?.type||"")}return!1}()&&function(){let{counter:e}=function(){let e=m("getItem");if(e){let[t,r]=e.split("-"),o=r?parseInt(r,10):0;if(o>=3){let e=t?Number(t):0;if(Date.now()-e>6e4)return{counter:0}}return{counter:o}}return{counter:0}}();e<3?(function(e=1){m("setItem",`${Date.now()}-${e}`)}(e+1),window.location.reload()):console.error("ATS: Max reload attempts reached")}()),r=h(T),o=h(T,location.hostname),E.set.call(document,r),E.set.call(document,o),t);j&&($["client-binding"]=j);let A=fetch;addEventListener(P,function e(t){let{logger:r}=t.detail;try{window.tb.init({fetch:A,fetchHeaders:$})}catch(t){let e=Error("TB003");r.meter(`${C}_${e.message}`,{paramsOverrides:{errorType:C,eventString:e.message}}),window?.viewerModel?.mode.debug&&console.error(t)}finally{removeEventListener(P,e)}}),S(D,"specs.thunderbolt.hardenFetchAndXHR")||(window.fetchDynamicModel=()=>M.sessionManager.isRunningInDifferentSiteContext?Promise.resolve({}):fetch((()=>{try{let e="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,t=globalThis?.parent!==globalThis,r=new URL(O,location.href);return(t||e)&&(r.searchParams.set("ifr",String(t)),r.searchParams.set("worker",String(e))),r.href}catch{return O}})(),{credentials:"same-origin",headers:$}).then(function(e){if(!e.ok)throw Error(`[${e.status}]${e.statusText}`);return e.json()}),window.dynamicModelPromise=window.fetchDynamicModel())})(); | |
| 86 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js.map</script> | |
| 87 | + | |
| 88 | +<!-- END handleAccessTokens bundle --> | |
| 89 | + | |
| 90 | +<!-- BEGIN overrideGlobals bundle --> | |
| 91 | + | |
| 92 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js">(()=>{"use strict";var e={},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}function o(e){let{context:t,property:r,value:o,enumerable:i=!0}=e,c=e.get,a=e.set;if(!r||void 0===o&&!c&&!a)return Error("property and value are required");let l=t||globalThis,s=l?.[r],u={};if(void 0!==o)u.value=o;else{if(c){let e=n(c);e&&(u.get=e)}if(a){let e=n(a);e&&(u.set=e)}}let p={...u,enumerable:i||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(l,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function n(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}r.rv=()=>"1.6.8",r.ruid="bundler=rspack@1.6.8";try{o({property:"strictDefine",value:o})}catch{}try{o({property:"defineStrictObject",value:c})}catch{}try{o({property:"defineStrictMethod",value:a})}catch{}var i=["toString","toLocaleString","valueOf","constructor","prototype"];function c(e){let{context:t,property:r,propertiesToExclude:n=[],skipPrototype:a=!1,hardenPrototypePropertiesToExclude:s=[]}=e;if(!r)return Error("property is required");let u=(t||globalThis)[r],p={},f=l(t,r);u&&("object"==typeof u||"function"==typeof u)&&Reflect.ownKeys(u).forEach(e=>{if(!n.includes(e)&&!i.includes(e)){let t=l(u,e);if(t&&(t.writable||t.configurable)){let{value:r,get:n,set:i,enumerable:c=!1}=t,a={};void 0!==r?a.value=r:n?a.get=n:i&&(a.set=i);try{let t=o({context:u,property:e,...a,enumerable:c});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:u,originalProperties:p};if(!a&&u?.prototype!==void 0){let e=c({context:u,property:"prototype",propertiesToExclude:s,skipPrototype:!0});e instanceof Error||(d.originalPrototype=e?.originalObject,d.originalPrototypeProperties=e?.originalProperties)}return o({context:t,property:r,value:u,enumerable:f?.enumerable}),d}function a(e,t){let r=(t||globalThis)[e],n=l(t||globalThis,e);return r&&n&&(n.writable||n.configurable)?(Object.freeze(r),o({context:globalThis,property:e,value:r})):r}function l(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function s(e){return e.startsWith("//")&&/(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/g.test(`${location.protocol}:${e}`)&&(e=`${location.protocol}${e}`),!e.startsWith("http")||new URL(e).hostname===location.hostname}function u(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function p(e,t){return e instanceof Headers?e.forEach((r,o)=>{f(o,t)||e.delete(o)}):Object.keys(e).forEach(r=>{f(r,t)||delete e[r]}),e}function f(e,t){return!t.has(u(e)||"")}function d(e,t){let r=!0,o=u(function(e){let t,r;if(globalThis.Request&&e instanceof Request)t=e.url;else if("function"==typeof e?.toString)t=e.toString();else throw Error("Unsupported type for url");try{return new URL(t).pathname}catch{return(r=t.replace(/#.+/gi,"").split("?").shift()).startsWith("/")?r:`/${r}`}}(e));return o&&t.some(e=>o.includes(e))&&(r=!1),r}var y=["true","b","c","new","enabled"];let b=[],g=(e,t)=>{let r;return b.includes(t)||!0===(r=e[t])||"string"==typeof r&&y.includes(r.toLowerCase())};performance.mark("overrideGlobals started");let{experiments:m}=window.viewerModel,v=g(m,"specs.thunderbolt.securityExperiments");try{let e,t;!function(){let e=globalThis.open,t=document.open;function r(t,r,o){let n="string"!=typeof t,i=e.call(window,t,r,o);return n||t&&s(t)?{}:i}o({property:"open",value:r,context:globalThis,enumerable:!0}),o({property:"open",value:function(e,o,n){return e?r(e,o,n):t.call(document,e||"",o||"",n||"")},context:document,enumerable:!0})}(),v&&function(){let e=document.createElement,t=Element.prototype.setAttribute,r=Element.prototype.setAttributeNS,n=Element.prototype.removeAttribute,i=(Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow")?.get,Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"src")),c=i?.get,a=i?.set,l=Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"sandbox")?.get,s=DOMTokenList.prototype.add,p=DOMTokenList.prototype.remove,f=DOMTokenList.prototype.toggle,d=DOMTokenList.prototype.replace,y=Object.getOwnPropertyDescriptor(DOMTokenList.prototype,"value"),b=y?.get,g=y?.set,m=new WeakSet;o({property:"createElement",context:document,value:function(n,i){let c=e.call(document,n,i);return"iframe"===u(n)&&(o({property:"srcdoc",context:c,get:()=>"",set:()=>{console.warn("`srcdoc` is not allowed in iframe elements.")}}),o({property:"setAttribute",context:c,value:function(e,r){if("srcdoc"===e.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");t.call(c,e,r);e.toLowerCase()},enumerable:!1}),o({property:"setAttributeNS",context:c,value:function(e,t,o){if("srcdoc"===t.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");r.call(c,e,t,o);t.toLowerCase()},enumerable:!1})),c},enumerable:!0})}(),g(m,"specs.thunderbolt.hardenFetchAndXHR")&&v&&function(e,t,r){let n=fetch,i=XMLHttpRequest,c=new Set(t);function a(){let t=new i,o=t.open,n=t.setRequestHeader;return t.open=function(){let n=Array.from(arguments),i=n[1];if(n.length<2||d(i,e))return o.apply(t,n);throw Error(r||`Request not allowed for path ${i}`)},t.setRequestHeader=function(e,r){f(decodeURIComponent(e),c)&&n.call(t,e,r)},t}o({property:"fetch",value:function(){var t;let o=(t=arguments,globalThis.Request&&t[0]instanceof Request&&t[0]?.headers?p(t[0].headers,c):t[1]?.headers&&p(t[1].headers,c),t);return d(arguments[0],e)?n.apply(globalThis,Array.from(o)):new Promise((e,t)=>{let o=Error(r||`Request not allowed for path ${arguments[0]}`);t(o)})},enumerable:!0}),o({property:"XMLHttpRequest",value:a,enumerable:!0}),Object.keys(i).forEach(e=>{a[e]=i[e]})}(["/_api/v1/access-tokens","/_api/v2/dynamicmodel","/_api/one-app-session-web/v3/businesses"],["client-binding"]),function(){if(navigator&&"serviceWorker"in navigator)navigator.serviceWorker.register,o({context:navigator.serviceWorker,property:"register",value:function(){console.log("Service worker registration is not allowed")},enumerable:!0})}(),e=[],t=(t=[]).concat(["TextEncoder","TextDecoder"]),v&&(t=t.concat(["XMLHttpRequestEventTarget","EventTarget"])),t=t.concat(["URL","JSON"]),v&&(e=e.concat(["addEventListener","removeEventListener"])),e=e.concat(["encodeURI","encodeURIComponent","decodeURI","decodeURIComponent"]),t=t.concat(["String","Number"]),v&&t.push("Object"),t=t.concat(["Reflect"]),e.forEach(e=>{a(e),["addEventListener","removeEventListener"].includes(e)&&a(e,document)}),t.forEach(e=>{c({property:e})}),v&&function(){return e("setTimeout",0,globalThis),e("setInterval",0,globalThis);function e(e,t,r){let n=r||globalThis,i=n[e];if(!i||"function"!=typeof i)throw Error(`Function ${e} not found or is not a function`);o({property:e,value:function(){let r=Array.from(arguments);if("string"!=typeof r[t])return i.apply(n,r);console.warn(`Calling ${e} with a String Argument at index ${t} is not allowed`)},context:r,enumerable:!0})}}()}catch(t){window?.viewerModel?.mode.debug&&console.error(t);let e=Error("TB006");window.fedops?.reportError(e,"security_overrideGlobals"),window.Sentry?window.Sentry.captureException(e):globalThis.defineStrictProperty("sentryBuffer",[e],window,!1)}performance.mark("overrideGlobals ended")})(); | |
| 93 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js.map</script> | |
| 94 | + | |
| 95 | +<!-- END overrideGlobals bundle --> | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + <script> | |
| 101 | + window.commonConfig = viewerModel.commonConfig | |
| 102 | + | |
| 103 | + | |
| 104 | + window.clientSdk = new Proxy({}, {get: (target, prop) => (...args) => window.externalsRegistry.clientSdk.loaded.then(() => window.__clientSdk__[prop](...args))}) | |
| 105 | + | |
| 106 | + </script> | |
| 107 | + | |
| 108 | + <!-- Initial CSS --> | |
| 109 | + <style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css">@keyframes slide-horizontal-new{0%{transform:translate(100%)}}@keyframes slide-horizontal-old{80%{opacity:1}to{opacity:0;transform:translate(-100%)}}@keyframes slide-vertical-new{0%{transform:translateY(-100%)}}@keyframes slide-vertical-old{80%{opacity:1}to{opacity:0;transform:translateY(100%)}}@keyframes out-in-new{0%{opacity:0}}@keyframes out-in-old{to{opacity:0}}:root:active-view-transition{view-transition-name:none}:root:active-view-transition::view-transition-group(*){animation:none}:root:active-view-transition::view-transition-old(*){animation:none}:root:active-view-transition::view-transition-new(*){animation:none}:root::view-transition{pointer-events:none}:root:active-view-transition #SITE_HEADER{view-transition-name:header-group}:root:active-view-transition #WIX_ADS{view-transition-name:wix-ads-group}:root:active-view-transition #SITE_FOOTER{view-transition-name:footer-group}:root:active-view-transition #BACKGROUND_GROUP_TRANSITION_GROUP>div{view-transition-name:background-group}:root:active-view-transition::view-transition-group(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-old(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-new(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-horizontal-old}:root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-horizontal-new}:root:active-view-transition-type(SlideVertical)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-vertical-old}:root:active-view-transition-type(SlideVertical)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-vertical-new}:root:active-view-transition-type(OutIn)::view-transition-old(page-group){animation:.35s cubic-bezier(.22,1,.36,1) forwards out-in-old}:root:active-view-transition-type(OutIn)::view-transition-new(page-group){animation:.35s cubic-bezier(.64,0,.78,0) .35s backwards out-in-new}@media (prefers-reduced-motion:reduce){::view-transition-group(*){animation:none!important}::view-transition-old(*){animation:none!important}::view-transition-new(*){animation:none!important}}html,body{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}body{--scrollbar-width:0px;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;font-family:Arial,Helvetica,sans-serif;font-size:10px}html,body{height:100%}body{overflow-x:auto;overflow-y:scroll}body:not(.responsive) #site-root{width:100%;min-width:var(--site-width)}body:not([data-js-loaded]) [data-hide-prejs]{visibility:hidden}interact-element{display:contents}#SITE_CONTAINER{position:relative}:root{--one-unit:1vw;--section-max-width:9999px;--spx-stopper-max:9999px;--spx-stopper-min:0px;--browser-zoom:1}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){:root{--safari-sticky-fix:opacity;--experimental-safari-sticky-fix:translateZ(0)}}@supports (container-type:inline-size){:root{--one-unit:1cqw}}[id^=oldHoverBox-]{mix-blend-mode:plus-lighter;transition:opacity .5s,visibility .5s}[data-mesh-id$=inlineContent-gridContainer]:has(>[id^=oldHoverBox-]){isolation:isolate} | |
| 110 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css.map*/</style> | |
| 111 | +<style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css">div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,nav,button,section,header,footer,title{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}textarea,input,select{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif}ol,ul{list-style:none}blockquote,q{quotes:none}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a{cursor:pointer;text-decoration:none}.testStyles{overflow-y:hidden}.reset-button{color:inherit;font:inherit;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;background:0 0;border:0;outline:0;padding:0;line-height:normal;overflow:visible}:focus{outline:none}body.device-mobile-optimized:not(.disable-site-overflow){overflow-x:hidden;overflow-y:scroll}body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER{width:320px;margin-left:auto;margin-right:auto;position:relative;overflow-x:visible}body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling) #SITE_CONTAINER{margin-top:0}body.device-mobile-optimized>*{max-width:100%!important}body.device-mobile-optimized #site-root{overflow:hidden}@supports (overflow:clip){body.device-mobile-optimized #site-root{overflow:clip}}body.device-mobile-non-optimized #SITE_CONTAINER #site-root{overflow:clip}body.device-mobile-non-optimized.fullScreenMode{background-color:#5f6360}body.device-mobile-non-optimized.fullScreenMode #site-root,body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,body.fullScreenMode #WIX_ADS{visibility:hidden}body.fullScreenMode{overflow:hidden!important}body.fullScreenMode.device-mobile-optimized #TINY_MENU{opacity:0;pointer-events:none}body.fullScreenMode-scrollable.device-mobile-optimized{overflow-x:hidden!important;overflow-y:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #site-root,body.fullScreenMode-scrollable.device-mobile-optimized #masterPage{overflow:hidden!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND{height:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout{height:0!important}body.blockSiteScrolling,body.siteScrollingBlocked{width:100%;position:fixed}body.siteScrollingBlockedIOSFix{overflow:hidden!important}body.blockSiteScrolling #SITE_CONTAINER{margin-top:calc(var(--blocked-site-scroll-margin-top)*-1)}#site-root{top:var(--wix-ads-height);min-height:100%;margin:0 auto;position:relative}#site-root img:not([src]){visibility:hidden}#site-root svg img:not([src]){visibility:visible}.auto-generated-link{color:inherit}#SCROLL_TO_TOP,#SCROLL_TO_BOTTOM{height:0}.has-click-trigger{cursor:pointer}.fullScreenOverlay{z-index:1005;justify-content:center;display:flex;position:fixed;top:-60px;bottom:0;left:0;right:0;overflow-y:hidden}.fullScreenOverlay>.fullScreenOverlayContent{margin:0 auto;position:absolute;top:60px;bottom:0;left:0;right:0;overflow:hidden;transform:translateZ(0)}[data-mesh-id$=inlineContent],[data-mesh-id$=centeredContent],[data-mesh-id$=form]{pointer-events:none;position:relative}[data-mesh-id$=-gridWrapper],[data-mesh-id$=-rotated-wrapper]{pointer-events:none}[data-mesh-id$=-gridContainer]>*,[data-mesh-id$=-rotated-wrapper]>*,[data-mesh-id$=inlineContent]>:not([data-mesh-id$=-gridContainer]){pointer-events:auto}.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID{-ms-grid-row:2;grid-area:2/1/3/2;position:relative}#masterPage.mesh-layout{display:-ms-grid;-ms-grid-rows:max-content max-content min-content max-content;-ms-grid-columns:100%;grid-template-rows:max-content max-content min-content max-content;grid-template-columns:100%;justify-content:stretch;align-items:start;display:grid}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~=mobileView],#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-column:1;-ms-grid-row-align:start;-ms-grid-column-align:start}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder{-ms-grid-row:1;grid-area:1/1/2/2}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{-ms-grid-row:3;grid-area:3/1/4/2}#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{width:100%}#masterPage.mesh-layout #PAGES_CONTAINER{align-self:stretch}#masterPage.mesh-layout main#PAGES_CONTAINER{display:block}#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-row:4;grid-area:4/1/5/2}#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERcenteredContent],#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERinlineContent],#masterPage.mesh-layout #SITE_PAGES{height:100%}#masterPage.mesh-layout.desktop>*{width:100%}#masterPage.mesh-layout #SITE_PAGES,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #masterPageinlineContent,#masterPage.mesh-layout #SITE_FOOTER,#masterPage.mesh-layout #SITE_HEADER{position:relative}#masterPage.mesh-layout #SITE_HEADER{grid-area:1/1/2/2}#masterPage.mesh-layout #SITE_FOOTER{grid-area:4/1/5/2}#masterPage.mesh-layout.overflow-x-clip #SITE_HEADER,#masterPage.mesh-layout.overflow-x-clip #SITE_FOOTER{overflow-x:clip}[data-z-counter]{z-index:0}[data-z-counter="0"]{z-index:auto}.wixSiteProperties{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--wst-button-color-fill-primary:rgb(var(--color_48));--wst-button-color-border-primary:rgb(var(--color_49));--wst-button-color-text-primary:rgb(var(--color_50));--wst-button-color-fill-primary-hover:rgb(var(--color_51));--wst-button-color-border-primary-hover:rgb(var(--color_52));--wst-button-color-text-primary-hover:rgb(var(--color_53));--wst-button-color-fill-primary-disabled:rgb(var(--color_54));--wst-button-color-border-primary-disabled:rgb(var(--color_55));--wst-button-color-text-primary-disabled:rgb(var(--color_56));--wst-button-color-fill-secondary:rgb(var(--color_57));--wst-button-color-border-secondary:rgb(var(--color_58));--wst-button-color-text-secondary:rgb(var(--color_59));--wst-button-color-fill-secondary-hover:rgb(var(--color_60));--wst-button-color-border-secondary-hover:rgb(var(--color_61));--wst-button-color-text-secondary-hover:rgb(var(--color_62));--wst-button-color-fill-secondary-disabled:rgb(var(--color_63));--wst-button-color-border-secondary-disabled:rgb(var(--color_64));--wst-button-color-text-secondary-disabled:rgb(var(--color_65));--wst-color-fill-base-1:rgb(var(--color_36));--wst-color-fill-base-2:rgb(var(--color_37));--wst-color-fill-base-shade-1:rgb(var(--color_38));--wst-color-fill-base-shade-2:rgb(var(--color_39));--wst-color-fill-base-shade-3:rgb(var(--color_40));--wst-color-fill-accent-1:rgb(var(--color_41));--wst-color-fill-accent-2:rgb(var(--color_42));--wst-color-fill-accent-3:rgb(var(--color_43));--wst-color-fill-accent-4:rgb(var(--color_44));--wst-color-fill-background-primary:rgb(var(--color_11));--wst-color-fill-background-secondary:rgb(var(--color_12));--wst-color-text-primary:rgb(var(--color_15));--wst-color-text-secondary:rgb(var(--color_14));--wst-color-action:rgb(var(--color_18));--wst-color-disabled:rgb(var(--color_39));--wst-color-title:rgb(var(--color_45));--wst-color-subtitle:rgb(var(--color_46));--wst-color-line:rgb(var(--color_47));--wst-font-style-h2:var(--font_2);--wst-font-style-h3:var(--font_3);--wst-font-style-h4:var(--font_4);--wst-font-style-h5:var(--font_5);--wst-font-style-h6:var(--font_6);--wst-font-style-body-large:var(--font_7);--wst-font-style-body-medium:var(--font_8);--wst-font-style-body-small:var(--font_9);--wst-font-style-body-x-small:var(--font_10);--wst-color-custom-1:rgb(var(--color_13));--wst-color-custom-2:rgb(var(--color_16));--wst-color-custom-3:rgb(var(--color_17));--wst-color-custom-4:rgb(var(--color_19));--wst-color-custom-5:rgb(var(--color_20));--wst-color-custom-6:rgb(var(--color_21));--wst-color-custom-7:rgb(var(--color_22));--wst-color-custom-8:rgb(var(--color_23));--wst-color-custom-9:rgb(var(--color_24));--wst-color-custom-10:rgb(var(--color_25));--wst-color-custom-11:rgb(var(--color_26));--wst-color-custom-12:rgb(var(--color_27));--wst-color-custom-13:rgb(var(--color_28));--wst-color-custom-14:rgb(var(--color_29));--wst-color-custom-15:rgb(var(--color_30));--wst-color-custom-16:rgb(var(--color_31));--wst-color-custom-17:rgb(var(--color_32));--wst-color-custom-18:rgb(var(--color_33));--wst-color-custom-19:rgb(var(--color_34));--wst-color-custom-20:rgb(var(--color_35))}.wix-presets-wrapper{display:contents}.builder-root{box-sizing:border-box}#main_MF .wix-visibility-hidden{visibility:hidden}#main_MF .wix-visibility-collapsed.wix-visibility-collapsed{--l_display:none;display:none}#main_MF .wix-visibility-revealed:after{content:"";box-sizing:border-box;z-index:1;pointer-events:none;border-radius:inherit;background-image:repeating-linear-gradient(-45deg,transparent,transparent 40%,rgba(43,86,114,.5) 40%,rgba(43,86,114,.5) 45%,rgba(255,255,255,.333) 45%,rgba(255,255,255,.333) 50%,transparent 50%);background-size:10px 10px;background-clip:padding-box;border:1px solid rgba(43,86,114,.5);position:absolute;top:0;bottom:0;left:0;right:0} | |
| 112 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css.map*/</style> | |
| 113 | + | |
| 114 | + <meta name="format-detection" content="telephone=no"> | |
| 115 | + <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + <!--pageHtmlEmbeds.head start--> | |
| 123 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head start"></script> | |
| 124 | + | |
| 125 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head end"></script> | |
| 126 | + <!--pageHtmlEmbeds.head end--> | |
| 127 | + | |
| 128 | + | |
| 129 | + <!-- head performance data start --> | |
| 130 | + | |
| 131 | + <!-- head performance data end --> | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + <style id="a11y-contrast"> | |
| 138 | + @media (forced-colors: active) { | |
| 139 | + #SITE_CONTAINER.focus-ring-active | |
| 140 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus, | |
| 141 | + #SITE_CONTAINER.focus-ring-active | |
| 142 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus | |
| 143 | + ~ .wixSdkShowFocusOnSibling { | |
| 144 | + outline: 2px solid CanvasText; | |
| 145 | + outline-offset: 2px; | |
| 146 | + } | |
| 147 | + } | |
| 148 | + </style> | |
| 149 | + | |
| 150 | + | |
| 151 | + <script id="wix-skip-played-animations-setup"> | |
| 152 | + (function() { | |
| 153 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 154 | + if (navEntry && navEntry.type === 'reload') { | |
| 155 | + return; | |
| 156 | + } | |
| 157 | + if ('PageRevealEvent' in window) { | |
| 158 | + window.__pageRevealPromise = new Promise(function(resolve) { | |
| 159 | + window.addEventListener('pagereveal', resolve, { once: true }); | |
| 160 | + }); | |
| 161 | + } else { | |
| 162 | + window.__pageRevealPromise = Promise.resolve(); | |
| 163 | + } | |
| 164 | + })(); | |
| 165 | + </script> | |
| 166 | + | |
| 167 | +<meta http-equiv="X-Wix-Meta-Site-Id" content="39b9882f-9e71-4f93-bb6d-a87166c85cda"> | |
| 168 | +<meta http-equiv="X-Wix-Application-Instance-Id" content="452071c1-a99b-44c2-b686-dd15b11264a3"> | |
| 169 | + | |
| 170 | + <meta http-equiv="X-Wix-Published-Version" content="4"/> | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + <meta http-equiv="etag" content="bug"/> | |
| 175 | + | |
| 176 | +<!-- render-head end --> | |
| 177 | + | |
| 178 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap.2c161780.min.css">.EtmdIW{cursor:pointer}.XWeqiF{opacity:0}.bWoigz{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.HTrn1j{opacity:1}.sAGPNe{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.cCFKrw{opacity:0}.yifJnQ{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.64,0,.78,0)}._mj5qU{opacity:1}.gG6uhp{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.22,1,.36,1)}.k0CnHT{transform:translate(100%)}.URQNsX{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.CCwVTE{transform:translate(0)}.TX_1qK{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(-100%)}.JMRv7x{transform:translate(-100%)}.AOzCGi{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.WzSMGx{transform:translate(0)}.I76Pz6{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(100%)}.bX95uQ{transform:translateY(100%)}.Ogwj62{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.GdyWfW{transform:translateY(0)}.YxqFze{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(-100%)}.NrDww4{transform:translateY(-100%)}.ciVV17{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.BMKrqh{transform:translateY(0)}.jNxMkI{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(100%)}body:not(.responsive) .Y3K28_{overflow-x:clip}:root:active-view-transition .Y3K28_{view-transition-name:page-group}.uvik8H{grid-template-rows:1fr;grid-template-columns:1fr;height:100%;display:grid}.uvik8H>div{grid-area:1/1/2/2;align-self:stretch!important;justify-self:stretch!important}.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}ul.font_100,ol.font_100{color:#080808;font-variant:normal;letter-spacing:normal;margin:0;font-family:"Arial, Helvetica, sans-serif",serif;font-size:10px;font-style:normal;font-weight:400;line-height:normal;text-decoration:none}ul.font_100 li,ol.font_100 li{margin-bottom:12px}ul.wix-list-text-align,ol.wix-list-text-align{list-style-position:inside}ul.wix-list-text-align p,ul.wix-list-text-align h1,ul.wix-list-text-align h2,ul.wix-list-text-align h3,ul.wix-list-text-align h4,ul.wix-list-text-align h5,ul.wix-list-text-align h6,ol.wix-list-text-align p,ol.wix-list-text-align h1,ol.wix-list-text-align h2,ol.wix-list-text-align h3,ol.wix-list-text-align h4,ol.wix-list-text-align h5,ol.wix-list-text-align h6{display:inline}.E28gHm{cursor:pointer}.V9ooqn{clip:rect(0 0 0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){._v6ohL>*>:first-child{vertical-align:top}}@supports (-webkit-touch-callout:none){._v6ohL>*>:first-child{vertical-align:top}}._v6ohL [data-attr-richtext-marker=true]{display:block}._v6ohL [data-attr-richtext-marker=true] table{border-collapse:collapse;width:100%;margin:15px 0}._v6ohL [data-attr-richtext-marker=true] table td{padding:12px;position:relative}._v6ohL [data-attr-richtext-marker=true] table td:after{content:"";opacity:.2;border-bottom:1px solid;border-left:1px solid;position:absolute;inset:0}._v6ohL [data-attr-richtext-marker=true] table tr td:last-child:after{border-right:1px solid}._v6ohL [data-attr-richtext-marker=true] table tr:first-child td:after{border-top:1px solid}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) [class$=rich-text__text],.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div)[class$=rich-text__text]{color:var(--corvid-color,currentColor)}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) span[style*=color]{color:var(--corvid-color,currentColor)!important}.V3wkP4{min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction)}.V3wkP4 .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.V3wkP4 .nzCBBu ul{list-style:inside}.V3wkP4 .nzCBBu li{margin-bottom:12px}.UwkEpO p,.UwkEpO h1,.UwkEpO h2,.UwkEpO h3,.UwkEpO h4,.UwkEpO h5,.UwkEpO h6,.UwkEpO blockquote,.UwkEpO div{letter-spacing:normal;line-height:normal}.JykKzs{min-height:var(--min-height);min-width:var(--min-width)}.JykKzs .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.JykKzs .nzCBBu ol,.JykKzs .nzCBBu ul{letter-spacing:normal;margin-inline-start:.5em;padding-inline-start:1.3em;line-height:normal}.JykKzs .nzCBBu ul{list-style-type:disc}.JykKzs .nzCBBu ol{list-style-type:decimal}.JykKzs .nzCBBu ul ul,.JykKzs .nzCBBu ol ul{line-height:normal;list-style-type:circle}.JykKzs .nzCBBu ol ol ul,.JykKzs .nzCBBu ol ul ul,.JykKzs .nzCBBu ul ol ul,.JykKzs .nzCBBu ul ul ul{line-height:normal;list-style-type:square}.JykKzs .nzCBBu li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.JykKzs .nzCBBu p,.JykKzs .nzCBBu h1,.JykKzs .nzCBBu h2,.JykKzs .nzCBBu h3,.JykKzs .nzCBBu h4,.JykKzs .nzCBBu h5,.JykKzs .nzCBBu h6{margin-block:0;letter-spacing:normal;margin:0;line-height:normal}.JykKzs .nzCBBu a{color:inherit}.N8MGzv,.UwkEpO{word-wrap:break-word;overflow-wrap:break-word;text-align:start;pointer-events:none;min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction);mix-blend-mode:var(--blendMode,normal);text-transform:var(--textTransform,"none");text-shadow:var(--textOutline,0px 0px transparent),var(--textShadow,0px 0px transparent)}.N8MGzv>*,.UwkEpO>*{pointer-events:auto}.N8MGzv li,.UwkEpO li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.N8MGzv ol,.UwkEpO ol,.N8MGzv ul,.UwkEpO ul{letter-spacing:normal;margin-inline:.5em 0;line-height:normal}.N8MGzv:not(.PO9MfV) ol,.UwkEpO:not(.PO9MfV) ol,.N8MGzv:not(.PO9MfV) ul,.UwkEpO:not(.PO9MfV) ul{padding-inline:1.3em 0}.N8MGzv ul,.UwkEpO ul{list-style-type:disc}.N8MGzv ol,.UwkEpO ol{list-style-type:decimal}.N8MGzv ul ul,.UwkEpO ul ul,.N8MGzv ol ul,.UwkEpO ol ul{list-style-type:circle}.N8MGzv ul ul ul,.UwkEpO ul ul ul,.N8MGzv ol ul ul,.UwkEpO ol ul ul,.N8MGzv ul ol ul,.UwkEpO ul ol ul,.N8MGzv ol ol ul,.UwkEpO ol ol ul{list-style-type:square}.N8MGzv p,.UwkEpO p,.N8MGzv h1,.UwkEpO h1,.N8MGzv h2,.UwkEpO h2,.N8MGzv h3,.UwkEpO h3,.N8MGzv h4,.UwkEpO h4,.N8MGzv h5,.UwkEpO h5,.N8MGzv h6,.UwkEpO h6,.N8MGzv blockquote,.UwkEpO blockquote,.N8MGzv div,.UwkEpO div{margin-block:0;margin:0}.N8MGzv a,.UwkEpO a{color:inherit}.PO9MfV li{margin-inline:1.3em 0}.qe3oTb{pointer-events:none;white-space:nowrap;padding:0;overflow:hidden}.TvbeET{display:none}.CNHfeA{width:100%;position:absolute;inset:0}.ZfNvr6{transition:all .2s ease-in;transform:translateY(-100%)}.ICcIQy{transition:all .2s}.xL7MJu{opacity:0;transition:all .2s ease-in}.xL7MJu.Dbjboh{pointer-events:none}.xg8z1A{opacity:1;transition:all .2s}.G6vvJF{width:100%;height:auto;position:relative}.ZgDNL8{width:100%;position:relative}body:not(.device-mobile-optimized) ._c_gnD,:host(:not(.device-mobile-optimized)) ._c_gnD{margin-left:calc((100% - var(--site-width))/2);width:var(--site-width)}.HQtdHX[data-focuscycled=active]{outline:1px solid #0000}.HQtdHX[data-focuscycled=active]:not(:focus-within){outline:2px solid #0000;transition:outline 10ms}.HQtdHX ._c_gnD{position:absolute;inset:0}.w4DepW{direction:var(--direction)}.w4DepW .tN_ggS .re13Ik{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.w4DepW .tN_ggS .re13Ik:last-child{margin-block:0;margin-inline:0}.w4DepW .tN_ggS .re13Ik .twXk19{display:block}.w4DepW .tN_ggS .re13Ik .twXk19 .ZK9snE{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.w4DepW .tN_ggS .re13Ik .twXk19{outline-offset:0;outline:2px solid buttontext}.w4DepW .tN_ggS .re13Ik .twXk19:hover{outline-offset:-2px;outline:3px solid highlight}.w4DepW .tN_ggS .re13Ik .twXk19:focus,.w4DepW .tN_ggS .re13Ik .twXk19:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.w4DepW .tN_ggS{white-space:nowrap;width:100%;height:100%;position:absolute}body.device-mobile-optimized .w4DepW .tN_ggS,:host(.device-mobile-optimized) .w4DepW .tN_ggS{white-space:normal}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.QED8q1{width:100%;height:calc(100% - var(--wix-ads-height));margin-top:var(--wix-ads-height);pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container));grid-template-rows:1fr;grid-template-columns:1fr;display:grid;position:fixed;top:0;left:0}.MswS0Y{pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container))}</style> | |
| 179 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SkipToContentButton].c9649c22.min.css">.BqYkvS{pointer-events:none;z-index:9999;color:#116dff;opacity:0;cursor:pointer;background:#fff;border-radius:24px;width:0;height:0;margin-left:-94px;padding:0 24px;font-family:Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;position:absolute;top:60px;left:50%}.BqYkvS:focus{opacity:1;pointer-events:auto;border:2px solid;width:auto;height:40px}</style> | |
| 180 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[GoogleMap].c573a625.min.css">.DDi8v8 .oD_vT7{position:absolute;inset:0}.ZzH1gE{background:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ZzH1gE .oD_vT7{border-radius:var(--rd,0);top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);display:inline-block;position:absolute;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff,#000);mask-image:radial-gradient(circle,#fff,#000)}.d45pDW .oD_vT7{position:absolute;inset:9px}.d45pDW .BIO33b{background-image:url(https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/media/sloppyframe.3214ce8e.png);background-repeat:no-repeat;position:absolute;inset:0}.d45pDW .tq8JQN{background-position:0 0;bottom:3px;right:3px}.d45pDW .wiMpk0{background-position:100% 100%;top:3px;left:3px}.PhoT72{background-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.PhoT72 .oD_vT7{top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);position:absolute;overflow:hidden}.PhoT72 .Yg0Qgp{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAAaCAYAAADR0BVGAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAACIFJREFUeNrsnOuS2ygQhRuBnWTf/1k3O5aA/QNbJ8enQfJkapMJXeWyrPul+TjdjRzsmgUxvbXpYGaxfTaYTmZ2a597+/5Cn69t2b1NfzWzbzTvrzadYH5q2+O+Uzvunc7lDucU27q4HM85nLwfta1bzeyAeWo9M7O9fZe2foDlxcxy+53bukebLmb2ZmYPM/unffY2f2+ft7Y+/v7etu/bHm3bA/bff/flfZ+5/eZPhk+B6X4NBab7d7/G6kxf8b3gTHc/xO9t4JfdN/nTfWMDX0vNBxP42FdY/qVt9w388Ub+2fd5Ax/v227UVmK7pgjX0O9VavOsrWuOv/Z5CXz0il/zMy7gl+gDD1r+AN/Z22/0zwf42sPM/m4+2Od/Bx9/gM+/0Qf3vZNvsl+yH9pF37P0Tkiik24ETXbKbfIJ4kEVuOn/tOkbNMLeeBM47Y0cLzrnEcHpAp2LUSPb6Nw6TO5tnQOuuztkXye043QnqgQjfrA7LNsBnOhIbwBPXPeN9vFGkEWQ7rDsgPtc6HwOmH8Q1BUUq/gwHD1HrQOf834zNAP5IH8jfBIAMQkfSeAnXwB0CEKEHUIxwu8IAqGvh0IgAvgi7YMBf4Pz79v259KXYQfe4VqbD9xEeyvU2Rn4AT5b7LgLATPT8h18DjvZNwdweA74fGfciOR3BbbDawt0X4ymfxooZ865OWqSp28CYOzQrLQOghj2lgykO91EPgY3IgPnMoKiEQDZQSJsh5AJcN47bVsEmDJArwhFyeoRHbDvn6F5DJxYTSvgeUrRTsJw1nvXF3zvTAc+g6gNlKcCLHaqajqKCArhGMDvsUNHlcnbbrB9FOBmkXGD+ZVg3+9BFp1BcDqxAtsVao+VwMRRRgEfrSRqdhGxFIKX6tzw/vZjJEctZmJIeK/vpYvOGcT3iPTbQNEpOFbRS20UsvYeFIHLob/6vcFDC7C/Sje1kqIt4mFnguFIIT4EYHeC5iHCml0ALgvAsfLmkCM7Sq8IB5sB72y4XO1jrL4DqDbxYw+wKnIKjkhgv0uOeNiEWkyUEooEUITjTbSn+0SBIkRxn4HacRSdSiWVVmF5oXZbB78P6sQPEgeZtgtOOgWVJLbR6HTcCFNOmYUzvpVe7MFn4c4ovOZGmCE3V+giOjASfG8UOkVHLaBjc6NHFXg4gDwEpDBkrSJUzk4eJ4tw1oR6PCj0OURYwdNGDjkKdT8aZL+KfTTIw8VoK5KwCM50It9NQmWaSBNEJ/8eRSgfKIXAsE4OMBOpU+5cCvmuEh4HddKHyIVj7rEQH4zEjseZSqBV56vSPPUVUHr5oBEkgwhnvAQ7XvgB4UIliByOGq2kXI16DXN6lkygG+XldgHOMoDh7oS6nNcxgnUeFIPqBHrLfh0Q1xehGwb5WAy3cX50orc0ACYXMRmMtxP52jBQnnwNnCcsBNUi0kO7KBB5eUvV2WxwnDBQx+qZubBML0DSU49B5D42UUXmm4e/N1JJ2MNGCBU8J6t0Y6tTmVVwLATIQqDEYgbnV7C4pMLk7OT0gggLlv150B0B9qBoTLXHOAjnA8EOgZcItpgzTU6aYKMiaBTV+UDtvjrpnIOiycPJXSJouY4QKAzfBkwpJzo4Cct0ITluE+XofQcnX3DQfgx6g11UnKOjRk1Uy7OTbOaqnVe5O0h1IggLqeAiCjomKsNV3NPL1bdlf5wFBzLoO4eIrriQg+kqDPVZ0KhRACqii0J5qtqAxxYeElec3LqJiE4JjgD82ChC3Qa8MJGnfGqP6YUK4izsDgOaqzF32Z6H5KhjbuLGqyStGr7AYXZ2FGUm1RjsueJbBoWQM+O1FhCXfUS+NduP1d6thbCjoXycEqukNqOjKKMIx9U6r7TfKpaVicLktjdj0xlA/gDLq8ODgo3HsiEUuVLGlXKjB6dOHMdFKdLzUBaz52E43s3NYlkGpVvoeAz8Zct+RZjOwkwj5cltqwNTqcUOQLPnMambPQ9bMnsecqVC3CpEEl8LXg8Pa+NquQm1qQThuwechwkcR5bhogvk+6KTDxjlaxB63lgoVIaBch9cIebKHALdU4orLF722YzBE4TKyqQ0gz2/kKHSbJgbrfZct1BtmOHqcYfZwKNKlEo9I/6m7T0NgDV7K8JIyamL64DDga78cIJQhwzNTMvMgWlxZLval9cbz94WWbbss4Xz3pjZ4rR/VJaqzuCF+QpSal8mVGgVEMuCDSpVlp12HCb34r9jp4laPDO6PRDkuIfBJOtuz4nV4PRyZn5hhC+Uh94EB+Q2uGnLli0biwYj8cHhPKsz9QaQgiRC1py0nOIFg1GNN569JHEmcgzpxM0KJw5U6ILUMIaN8iDm9Fyequx5CXN6P7xBGPpn59yWLVv2OkSLgNZGy6qNx1kmey7AmOk6hopUZ1Ac/f/A6HVb80LvV+S6US5DqU6vis3vT9sg/Ma3dIqNq8kqx+lVopctW/a6FfPHLzMoVfiOOUxeVxV/1Jt9dZAqYAFlE1AObVaomb0Ly6oxODkIJZ25N7KBVOZxVWdyLcuWLft/bVbnUMOIRsMDzXRV20sHjNTj6L8MToHQBj3A6IJHAPYGXHsnulHPVWwVWpYt+4zg5Gq6UTg+Y8aINSbEmNn1Mc71TGX7TM8QJoA9m1Advb1yivzLli37bYDpia96UciFCfCu/n6aP/t/v7M9w5ntgkN3m+QLtgvrLlu27PcAZZiovtG6KhS3GewuRqI/rBNfhOJsOcMsXAQx7yss31q27NOCslyEahhEpK/+s9Nwebx4cbNlKjQOJ06wnjz+UpPLln0uYP6sP2NWbDjzqmL9GQe/sn2dXHh478kuW7bsjwXqVXao4UkvcybUuhi1bNmyZSPb1i1YtmzZsgXKZcuWLVugXLZs2bKPtH8HADJQ9p+EtD02AAAAAElFTkSuQmCC);background-repeat:no-repeat;width:165px;height:26px;position:absolute;bottom:-26px}.PhoT72 .u2ipRh{background-position:0 0;left:-20px}.PhoT72 .JNSeQ8{background-position:100% 0;right:-20px}.tE8VE3{width:100%;height:100%}.TlDFAU{font-size:14px;font-weight:500;line-height:15px}.erPUts{color:#333;font-size:13px;font-weight:400}.dKbVyb{color:var(--wst-links-and-actions-color,#1a73e8);font-size:13px;font-weight:400;text-decoration:underline;display:block}.ug7ltv svg{width:32px;height:32px}.gTl8fV{clip-path:polygon(0 0,0 0,0 0,0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}</style> | |
| 181 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_mobile.a7aaff2a.min.css">.BZjmPL{direction:var(--direction,ltr)}.BZjmPL>ul{box-sizing:border-box;width:100%}.BZjmPL>ul li{display:block}.BZjmPL>ul li>div:focus,.BZjmPL>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.BZjmPL .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);position:relative;-webkit-transform:translateZ(0)}.d2V6sy{display:var(--display);--display:grid;direction:var(--direction,ltr);grid-template-columns:minmax(0,1fr)}.d2V6sy>ul{box-sizing:border-box;width:100%}.d2V6sy>ul li{display:block}.d2V6sy>ul li>div:focus,.d2V6sy>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.d2V6sy .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);min-height:1px;position:relative;-webkit-transform:translateZ(0)}.FWN1UT{--padding-start-lvl1:var(--padding-start,0);--padding-end-lvl1:var(--padding-end,0);--padding-start-lvl2:var(--sub-padding-start,0);--padding-end-lvl2:var(--sub-padding-end,0);--padding-start-lvl3:calc(2*var(--padding-start-lvl2) - var(--padding-start-lvl1));--padding-end-lvl3:calc(2*var(--padding-end-lvl2) - var(--padding-end-lvl1));background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;min-width:100px;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.FWN1UT .keDKhi{cursor:pointer;height:var(--item-height,50px);grid-template-columns:1fr;display:grid;position:relative}.FWN1UT .keDKhi>.j945c8{text-overflow:ellipsis;position:relative}.FWN1UT .keDKhi>.j945c8>.G7GdaI{-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:absolute;inset:0;overflow:hidden}.FWN1UT .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_14,color_14)))}@supports (-webkit-touch-callout:none){.FWN1UT .keDKhi>.j945c8>.G7GdaI{text-decoration:underline #0000}}.FWN1UT.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.FWN1UT.Hp2waC>.keDKhi>.j945c8{grid-area:label}.FWN1UT.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.FWN1UT.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.FWN1UT.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.FWN1UT.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.FWN1UT>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.FWN1UT>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.FWN1UT>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--padding-start-lvl2,0);padding-inline-end:var(--padding-end-lvl2,0)}.FWN1UT>.tFexI9 .tFexI9 .G7GdaI{padding-inline-start:var(--padding-start-lvl3,0);padding-inline-end:var(--padding-end-lvl3,0)}.FWN1UT .DpFF8A{opacity:0;position:absolute}.FWN1UT .G7GdaI{padding-inline-start:var(--padding-start-lvl1,0);padding-inline-end:var(--padding-end-lvl1,0)}.Onlmt7{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.Onlmt7 .keDKhi{cursor:pointer;grid-template-columns:1fr;height:auto;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8{text-overflow:ellipsis;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8>.G7GdaI{padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:relative;overflow:hidden}.Onlmt7 .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_15,color_15)))}.Onlmt7.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.Onlmt7.Hp2waC>.keDKhi>.j945c8{grid-area:label}.Onlmt7.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.Onlmt7.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.Onlmt7.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.Onlmt7.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.Onlmt7>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.Onlmt7>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.Onlmt7>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--sub-padding-start,0);padding-inline-end:var(--sub-padding-end,0)}.Onlmt7 .DpFF8A{opacity:0;position:absolute}.Onlmt7 .G7GdaI{padding-inline-start:var(--padding-start,0);padding-inline-end:var(--padding-end,0)}.WIf5uD .keDKhi{direction:var(--item-depth0-direction);text-align:var(--item-depth0-align,var(--text-align))}.jieHoL .keDKhi{direction:var(--item-depth1-direction);text-align:var(--item-depth1-align,var(--text-align))}.pk6ct0 .keDKhi{direction:var(--item-depth2-direction);text-align:var(--item-depth2-align,var(--text-align))}.Uym66v{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.Uym66v.I_VSKP{opacity:1;visibility:visible}.Uym66v[data-undisplayed=true]{display:none}.Uym66v:not([data-is-mesh]) .a6myrz,.Uym66v:not([data-is-mesh]) .vaRtfC{position:absolute;inset:0}.PuJkmm{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.PuJkmm.nQIUtw{display:none}body.device-mobile-optimized .PuJkmm,:host(.device-mobile-optimized) .PuJkmm{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.nQIUtw,:host(.device-mobile-optimized) .Uym66v.nQIUtw{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.PV8CZu,:host(.device-mobile-optimized) .Uym66v.PV8CZu{height:100vh}body:not(.device-mobile-optimized) .Uym66v.PV8CZu,:host(:not(.device-mobile-optimized)) .Uym66v.PV8CZu{height:100vh}.JssDma.PV8CZu{height:calc(var(--menu-height) - var(--wix-ads-height))}.JssDma.PV8CZu>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.Uym66v.PV8CZu{top:0}.vaRtfC{width:100%;height:100%}.Uym66v{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.GtYgZN{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.GtYgZN.DhNUBc{opacity:1;visibility:visible}.GtYgZN[data-undisplayed=true]{display:none}.GtYgZN:not([data-is-mesh]) .PGRltO,.GtYgZN:not([data-is-mesh]) .ontAlD{position:absolute;inset:0}.bKMmNw{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.bKMmNw.XiExOX{display:none}body.device-mobile-optimized .bKMmNw,:host(.device-mobile-optimized) .bKMmNw{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.XiExOX,:host(.device-mobile-optimized) .GtYgZN.XiExOX{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.u1yVmb,:host(.device-mobile-optimized) .GtYgZN.u1yVmb{height:100vh}body:not(.device-mobile-optimized) .GtYgZN.u1yVmb,:host(:not(.device-mobile-optimized)) .GtYgZN.u1yVmb{height:100vh}.fgXcGP.u1yVmb{height:calc(var(--menu-height) - var(--wix-ads-height))}.fgXcGP.u1yVmb>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.GtYgZN.u1yVmb{top:0}.ontAlD{width:100%;height:100%}.GtYgZN{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.fgXcGP{scrollbar-width:none;overflow-x:hidden;overflow-y:scroll;overflow:-moz-scrollbars-none;-ms-overflow-style:none;position:relative}.fgXcGP::-webkit-scrollbar{width:0;height:0}.ml3dss{display:inherit;height:inherit;width:auto}.qJB7LV{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .ml3dss,body:not(.responsive) .qJB7LV{z-index:var(--above-all-in-container)}.ml3dss.d0L2ow,.qJB7LV.d0L2ow{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.qJB7LV{touch-action:manipulation}}.vlJDcR{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.vlJDcR.d0L2ow{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.Pfl7LL{display:inherit;height:inherit;width:auto}.SOW3kh{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .Pfl7LL,body:not(.responsive) .SOW3kh{z-index:var(--above-all-in-container)}.Pfl7LL.EstcUq,.SOW3kh.EstcUq{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.SOW3kh{touch-action:manipulation}}.xC357X{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.xC357X.EstcUq{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.JJE8Wh{cursor:pointer;border-radius:50%;width:22px;height:22px;transition:all .3s linear;display:block;position:relative}.JJE8Wh:before,.JJE8Wh:after{content:"";background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:5px;margin:auto;position:absolute;inset:0}.JJE8Wh:before{width:22px;height:3px}.JJE8Wh:after{width:22px;height:3px;transition:all .12s linear;transform:rotate(90deg)}.JJE8Wh.EstcUq{transform:rotate(180deg)}.JJE8Wh.EstcUq:before{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.JJE8Wh.EstcUq:after{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(180deg)}.igzAYe{display:inherit;height:inherit;width:auto}.ISBHB0{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .igzAYe,body:not(.responsive) .ISBHB0{z-index:var(--above-all-in-container)}.igzAYe.v_eR1n,.ISBHB0.v_eR1n{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ISBHB0{touch-action:manipulation}}.FVpEn7{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.FVpEn7.v_eR1n{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.vWwHt3{cursor:pointer;flex-direction:column;justify-content:space-between;width:26px;height:21px;transition:transform .33s ease-out;display:flex}.vWwHt3.v_eR1n{transform:rotate(-45deg)}.jECeES{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1.5px;width:100%;height:3px}.jECeES.wjOCYk{width:50%}.jECeES.IgM_eH{transform-origin:100%;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.IgM_eH{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(4px)}.jECeES.Zp0zoK{transform-origin:0;align-self:flex-end;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.Zp0zoK{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(-4px)}.v_eR1n .jECeES.GVKWTt{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wsSrN4{display:inherit;height:inherit;width:auto}.dfqkHk{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wsSrN4,body:not(.responsive) .dfqkHk{z-index:var(--above-all-in-container)}.wsSrN4.n_2AWG,.dfqkHk.n_2AWG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.dfqkHk{touch-action:manipulation}}.XTpFTd{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.XTpFTd.n_2AWG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.voZlI_{width:22px;height:20px;position:absolute}.LhBFsy{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.KMI4iR{width:50%;top:0}.b6pJLW,.sItLyG{width:100%;top:9px}.erfbYp{width:50%;bottom:0}.Os6vNa{left:0}.HryFHb{right:0}.b6pJLW.LhBFsy,.sItLyG.LhBFsy{transform-origin:50%}.KMI4iR.LhBFsy.Os6vNa{transform-origin:0 0}.KMI4iR.LhBFsy.HryFHb{transform-origin:100% 0}.erfbYp.LhBFsy.Os6vNa{transform-origin:0 100%}.erfbYp.LhBFsy.HryFHb{transform-origin:100% 100%}.voZlI_.n_2AWG .KMI4iR.LhBFsy.Os6vNa,.voZlI_.n_2AWG .KMI4iR.LhBFsy.HryFHb,.voZlI_.n_2AWG .erfbYp.LhBFsy.Os6vNa,.voZlI_.n_2AWG .erfbYp.LhBFsy.HryFHb{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.voZlI_.n_2AWG .b6pJLW.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-45deg)scaleX(1)}.voZlI_.n_2AWG .sItLyG.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(45deg)scaleX(1)}.VK1Hr1{display:inherit;height:inherit;width:auto}.PbaYul{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .VK1Hr1,body:not(.responsive) .PbaYul{z-index:var(--above-all-in-container)}.VK1Hr1.sqDofR,.PbaYul.sqDofR{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.PbaYul{touch-action:manipulation}}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.pp3XSB{width:22px;height:20px;margin:auto;position:relative}.Z_qSkN{background-color:rgba(var(--lineColor,var(--color_11,color_11)),var(--alpha-lineColor,1));border-radius:2px;width:100%;height:2px;transition:all .25s ease-in-out;position:absolute;left:0}.hczDnO{margin:auto;top:0;bottom:0}.VmRHI1{bottom:0}.pp3XSB.sqDofR .Z_qSkN{background-color:rgba(var(--lineColorOpen,var(--color_11,color_11)),var(--alpha-lineColorOpen,1))}.pp3XSB.sqDofR .bYgNSB{transform:translateY(10px)translateY(-50%)rotate(-45deg)}.pp3XSB.sqDofR .hczDnO{opacity:0}.pp3XSB.sqDofR .VmRHI1{transform:translateY(-10px)translateY(50%)rotate(45deg)}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_15,color_15)),var(--alpha-bordercolor,1))}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_15,color_15)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_15,color_15)),var(--alpha-bordercolorOpen,1))}.aYkftZ{display:inherit;height:inherit;width:auto}.xFZxP2{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .aYkftZ,body:not(.responsive) .xFZxP2{z-index:var(--above-all-in-container)}.aYkftZ.DJyiS4,.xFZxP2.DJyiS4{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.xFZxP2{touch-action:manipulation}}.uFKDKj{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.uFKDKj.DJyiS4{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.D_1muR{cursor:pointer;width:26px;height:26px}.mV6DGf{opacity:1;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;transition:opacity .5s}.YBeTIR{color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));letter-spacing:5px;font-family:Helvetica-bold;font-size:12px;transition:all .25s;position:absolute;top:50%;left:55%;transform:translate(-50%,-50%)}.g_9F_D,.MMZbiz{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;width:0;height:2px;position:absolute;top:50%;left:50%}.g_9F_D{transition:all .3s;transform:translate(-50%,-50%)rotate(45deg)}.MMZbiz{transition:all .3s .3s;transform:translate(-50%,-50%)rotate(-45deg)}.D_1muR.DJyiS4 .g_9F_D,.D_1muR.DJyiS4 .MMZbiz{opacity:1;width:24px}.D_1muR.DJyiS4 .mV6DGf{opacity:0}.mi7tiY{display:inherit;height:inherit;width:auto}.ajCUJZ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .mi7tiY,body:not(.responsive) .ajCUJZ{z-index:var(--above-all-in-container)}.mi7tiY.WpOYnf,.ajCUJZ.WpOYnf{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ajCUJZ{touch-action:manipulation}}.zBWfOh{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.zBWfOh.WpOYnf{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.VOuQ3v{width:22px;height:22px;display:block;position:relative}.VOuQ3v *,.VOuQ3v :before,.VOuQ3v :after{box-sizing:border-box}.VOuQ3v .Ieo4Vm{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:100%;width:4.4px;height:4.4px;transition:all .2s ease-in-out;position:absolute}.VOuQ3v .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v .Ieo4Vm:nth-of-type(2){transform:translate(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(4){transform:translateY(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(5){transform:translate(8.8px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(6){transform:translate(17.6px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(8){transform:translate(8.8px,17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.VOuQ3v.WpOYnf .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(2){transform:translate(4.4px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(4){transform:translate(4.4px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(6){transform:translate(13.2px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(8){transform:translate(13.2px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.tAZggB{display:inherit;height:inherit;width:auto}.DQvE55{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .tAZggB,body:not(.responsive) .DQvE55{z-index:var(--above-all-in-container)}.tAZggB.Afzcr2,.DQvE55.Afzcr2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.DQvE55{touch-action:manipulation}}.cGMrez{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.cGMrez.Afzcr2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.lPW_G3{width:25px;height:20px;transition:transform .3s ease-in-out}.lPW_G3 span{content:"";background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1px;width:100%;height:3px;transition:width .3s ease-in-out,transform .3s ease-in-out,opacity .3s ease-in-out;display:block;position:relative}.lPW_G3 span:first-child{top:0}.lPW_G3 span:nth-child(2){top:5px}.lPW_G3 span:nth-child(3){top:10px}.Afzcr2.lPW_G3{transform:rotate(180deg)}.Afzcr2.lPW_G3 span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:16px}.Afzcr2.lPW_G3 span:first-child{opacity:0}.Afzcr2.lPW_G3 span:nth-child(2){transform:rotate(45deg)translate(0)translateY(1px)}.Afzcr2.lPW_G3 span:nth-child(3){transform:rotate(-45deg)translate(12px)translateY(1px)}.iT1uR5{display:inherit;height:inherit;width:auto}.H8XzQw{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .iT1uR5,body:not(.responsive) .H8XzQw{z-index:var(--above-all-in-container)}.iT1uR5.xL58zS,.H8XzQw.xL58zS{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.H8XzQw{touch-action:manipulation}}.ph3zmg{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.ph3zmg.xL58zS{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}._2OyzB{width:24px;height:20px;display:block;position:relative}._2OyzB span,._2OyzB span:before,._2OyzB span:after{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:24px;height:2px;margin-top:-1px;position:absolute;top:50%}._2OyzB span:before,._2OyzB span:after{content:"";transition:all .2s}._2OyzB span:before{transform:translateY(-9px)}._2OyzB span:after{transform:translateY(9px)}.xL58zS span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:23px;transform:translate(1px)}.xL58zS span:before{transform-origin:0 100%;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(-35deg)}.xL58zS span:after{transform-origin:0 0;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(35deg)}.ADO5Zm{justify-content:center;align-items:center;display:flex}.nUIszS{transform-origin:100%;opacity:0;transition:all .5s;transform:translate(50%)}.hRUbUe{opacity:1;transform:translate(0%)}._xk4dL{display:inherit;height:inherit;width:auto}.JA1Uo1{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) ._xk4dL,body:not(.responsive) .JA1Uo1{z-index:var(--above-all-in-container)}._xk4dL.suGS6F,.JA1Uo1.suGS6F{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.JA1Uo1{touch-action:manipulation}}.Tnmpzm{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Tnmpzm.suGS6F{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.XYRJOb{flex-direction:column;justify-content:space-around;align-items:center;width:26px;height:26px;transition:transform .2s;display:flex}.wzUA2b{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:30px;height:2px;transition:opacity .2s,transform .2s;transform:rotate(-45deg)}.UEwx1J{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:17px;height:2px;transition:transform .2s,border-color .2s}.UEwx1J.trUHhA{transform:rotate(-45deg)translate(-7px,-3px)}.UEwx1J.rjaPi6{transform:rotate(-45deg)translate(6px,2px)}.XYRJOb.suGS6F .trUHhA{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(9px)rotate(135deg)}.XYRJOb.suGS6F .rjaPi6{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(-9px)rotate(45deg)}.XYRJOb.suGS6F .wzUA2b{opacity:0;transform:rotate(45deg)}.h2hVnU{display:inherit;height:inherit;width:auto}.Iyw1gJ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .h2hVnU,body:not(.responsive) .Iyw1gJ{z-index:var(--above-all-in-container)}.h2hVnU.m_Fqbp,.Iyw1gJ.m_Fqbp{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Iyw1gJ{touch-action:manipulation}}.CnBWJM{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.CnBWJM.m_Fqbp{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.GlYaWf,.KHg340{cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:#0000;width:22px;transition:all .2s ease-in-out;position:relative}.GlYaWf span,.KHg340 span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:#0000;border-radius:2em;width:100%;height:3px;transition:all .2s ease-in-out;position:absolute}.GlYaWf span:nth-child(2),.KHg340 span:nth-child(2){transform:rotate(90deg)}.GlYaWf.m_Fqbp,.m_Fqbp.KHg340{transform:rotate(135deg)}.GlYaWf.m_Fqbp span,.m_Fqbp.KHg340 span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.KHg340{justify-content:center;align-items:center;display:flex}.KHg340 span{left:0}.KHg340 span:nth-child(2){transform:rotate(90deg)}.KHg340.m_Fqbp{transform:rotate(135deg)}.KHg340.m_Fqbp span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.jxFaGF{display:inherit;height:inherit;width:auto}.wu4jpM{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .jxFaGF,body:not(.responsive) .wu4jpM{z-index:var(--above-all-in-container)}.jxFaGF.diaQsa,.wu4jpM.diaQsa{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.wu4jpM{touch-action:manipulation}}.e2jpjV{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.e2jpjV.diaQsa{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.DS2KZ9{cursor:pointer;width:26px;height:20px;display:block;position:relative}.DS2KZ9 div{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:2px;height:2px;transition:transform .45s cubic-bezier(.9,-.6,.3,1.6),width .2s .2s;position:absolute}.DS2KZ9 .MLWS98{transform-origin:50%;width:26px;margin:-2px 0 0;top:11px;left:0}.DS2KZ9 .LTPYyD{transform-origin:0;width:13px;left:0}.DS2KZ9 .VaoqxS{transform-origin:100%;width:18px;bottom:0}.DS2KZ9.diaQsa .MLWS98{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s;transform:rotate(-45deg)translate(0)}.DS2KZ9.diaQsa .LTPYyD{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(4px)rotate(45deg)}.DS2KZ9.diaQsa .VaoqxS{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(9px)rotate(45deg)}.NxdLn2{display:inherit;height:inherit;width:auto}.NvEdZv{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .NxdLn2,body:not(.responsive) .NvEdZv{z-index:var(--above-all-in-container)}.NxdLn2.nq0ZU6,.NvEdZv.nq0ZU6{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.NvEdZv{touch-action:manipulation}}.PSaCAQ{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.PSaCAQ.nq0ZU6{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.IjZy4M{cursor:pointer;position:absolute}.LtWZVJ{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:19px;height:2px;margin-bottom:6px;transition:all .3s cubic-bezier(0,1,.5,1);position:relative}.LtWZVJ:first-child{top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:first-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;left:0;transform:rotate(-45deg)}.LtWZVJ:nth-child(2){opacity:1;right:-5px}.nq0ZU6 .LtWZVJ:nth-child(2){background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;right:0}.LtWZVJ:last-child{margin:0;top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:last-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:-8px;left:0;transform:rotate(45deg)}.nq0ZU6 .LtWZVJ{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wLzWM9{display:inherit;height:inherit;width:auto}.YFvXED{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wLzWM9,body:not(.responsive) .YFvXED{z-index:var(--above-all-in-container)}.wLzWM9.DlhxCV,.YFvXED.DlhxCV{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.YFvXED{touch-action:manipulation}}._G4uuH{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}._G4uuH.DlhxCV{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.rP06EV{width:26px;height:18px}.woYbvh{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:4px;height:2px;transition:all .4s;position:relative}.yawLPy{width:26px;top:0}.DKfMJX{width:26px;top:6px}.Upme0v{width:13px;top:12px}.DlhxCV .yawLPy{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px}.DlhxCV .DKfMJX{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.DlhxCV .Upme0v{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:4px}.fkVx4H{display:inherit;height:inherit;width:auto}.AX0rkT{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .fkVx4H,body:not(.responsive) .AX0rkT{z-index:var(--above-all-in-container)}.fkVx4H.pf7lKG,.AX0rkT.pf7lKG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.AX0rkT{touch-action:manipulation}}.X43m5R{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.X43m5R.pf7lKG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CpmaBD{width:22px;height:22px;margin:auto;position:absolute}.CpmaBD span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:22px;height:2px;transition:transform .2s cubic-bezier(.25,.46,.45,.94),top .2s cubic-bezier(.3,1.4,.7,1) .2s,bottom .2s cubic-bezier(.3,1.4,.7,1) .2s;display:block;position:relative}.CpmaBD span:first-of-type{top:5px}.CpmaBD span:last-of-type{top:13px}.CpmaBD.pf7lKG span{transition:transform .2s cubic-bezier(.25,.46,.45,.94) .2s,top .2s cubic-bezier(.3,1.4,.7,1),bottom .2s cubic-bezier(.3,1.4,.7,1)}.CpmaBD.pf7lKG span:first-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:10px;transform:rotate(45deg)}.CpmaBD.pf7lKG span:last-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;transform:rotate(-45deg)}.L1tNuO{display:inherit;height:inherit;width:auto}.Ae0iFd{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .L1tNuO,body:not(.responsive) .Ae0iFd{z-index:var(--above-all-in-container)}.L1tNuO.tUxMan,.Ae0iFd.tUxMan{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Ae0iFd{touch-action:manipulation}}.Hmm20G{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Hmm20G.tUxMan{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.AuZIx7{width:22px;height:19px;position:absolute}.BQuno6{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:3px;transition:all .25s;position:absolute}.oP04HO{width:50%;top:0}.p_ySCY{width:100%;top:8px}.u6J0wc{width:50%;bottom:0}.P03akj{left:0}.WBsrGG{right:0}.oP04HO.BQuno6.P03akj{transform-origin:0 0}.oP04HO.BQuno6.WBsrGG{transform-origin:100% 0}.u6J0wc.BQuno6.P03akj{transform-origin:0 100%}.u6J0wc.BQuno6.WBsrGG{transform-origin:100% 100%}.AuZIx7.tUxMan .oP04HO.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,2px)rotate(45deg)}.AuZIx7.tUxMan .oP04HO.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,2px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,-1px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,-1px)rotate(45deg)}.AuZIx7.tUxMan .p_ySCY.BQuno6{transform:scaleX(0)}.p2xU2j{display:inherit;height:inherit;width:auto}.tB06Km{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .p2xU2j,body:not(.responsive) .tB06Km{z-index:var(--above-all-in-container)}.p2xU2j.sb2ja2,.tB06Km.sb2ja2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.tB06Km{touch-action:manipulation}}.bSvkl8{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.bSvkl8.sb2ja2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CT0UM6{width:22px;height:20px;position:absolute}.i2Blxa{background-color:rgba(var(--lineColor,var(--color_15,color_15)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.NL9V92{width:100%;top:0}.xp7A7t{width:100%;top:9px}.dMTSgd{width:100%;bottom:0}.NL9V92.i2Blxa{transform-origin:0 0}.dMTSgd.i2Blxa{transform-origin:0 100%}.CT0UM6.sb2ja2 .NL9V92.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,2px)rotate(45deg)}.CT0UM6.sb2ja2 .dMTSgd.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,-1px)rotate(-45deg)}.CT0UM6.sb2ja2 .xp7A7t.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.PzP3Ka{cursor:pointer;opacity:0;visibility:hidden;display:var(--display);--display:flex;transition:visibility 0s .5s,opacity .5s}.PzP3Ka .XdXNO7{width:100%;height:100%;opacity:var(--icon-opacity,1)}.PzP3Ka .XdXNO7 svg{overflow:visible}.z7UpAt{opacity:1;visibility:visible;z-index:var(--above-all-z-index);transition-delay:0s;position:relative}</style> | |
| 182 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VectorImage_VectorButton].8d19a428.min.css">.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}</style> | |
| 183 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextInput].ff8b5cd8.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nbaJII:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nbaJII:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nbaJII.BOzGbm[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;-moz-appearance:none;margin:0}.nbaJII[disabled]{pointer-events:none}.Q1MQrw{min-height:25px;display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);flex-direction:column;position:relative}.Q1MQrw .nuFEsg{height:var(--inputHeight);position:relative}.Q1MQrw .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Q1MQrw .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;max-width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");min-height:var(--inputHeight);border-style:solid;width:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Q1MQrw .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;width:100%}.Q1MQrw .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Q1MQrw .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Q1MQrw .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Q1MQrw:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Q1MQrw.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw .QyrExM{display:none}.Q1MQrw.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Q1MQrw.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Yz8ZCc{display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);justify-content:var(--align,start);flex-direction:column}.Yz8ZCc .nuFEsg{flex-direction:column;flex:1;display:flex;position:relative}.Yz8ZCc .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Yz8ZCc .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");border-style:solid;flex:1;min-height:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Yz8ZCc .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield}.Yz8ZCc .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Yz8ZCc .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Yz8ZCc .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Yz8ZCc:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Yz8ZCc.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc .QyrExM{display:none}.Yz8ZCc.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Yz8ZCc.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 184 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextAreaInput].1476131e.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.fRbOAc{text-align:var(--align);direction:var(--direction)}.fRbOAc .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);min-width:100%;max-width:100%;height:var(--inputHeight);direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");margin:0;padding-top:.75em;display:block;overflow-y:auto;box-sizing:border-box!important}.fRbOAc .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .fRbOAc .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.fRbOAc .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.fRbOAc .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.fRbOAc .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.fRbOAc:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.fRbOAc.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc .P3lL3X{display:none}.fRbOAc.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.fRbOAc.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.YbkIHV{display:var(--display);--display:flex;text-align:var(--align);direction:var(--direction);flex-direction:column}.YbkIHV .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;width:100%;height:100%;direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");flex:1;margin:0;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);overflow-y:auto;box-sizing:border-box!important}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .YbkIHV .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.YbkIHV .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.YbkIHV .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.YbkIHV .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.YbkIHV .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.YbkIHV:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.YbkIHV.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV .P3lL3X{display:none}.YbkIHV.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.YbkIHV.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 185 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInput].2af36bd9.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}.alMCqG{opacity:0;pointer-events:none;justify-content:center;width:100%;height:0;display:flex}.vkQCnw{max-width:0;max-height:0;overflow:hidden}.l5LWAe .qKjd3E,.l5LWAe .Hae_iI:invalid{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.qa3D4M .Hae_iI:disabled{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.qa3D4M{display:var(--display);--display:flex;flex-direction:column}.qa3D4M .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight)}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .qa3D4M .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.qa3D4M .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.qa3D4M .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.qa3D4M .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}.qa3D4M .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.qa3D4M .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.qa3D4M .Hae_iI:disabled+.R8pbpf{border:none}.qa3D4M .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.qa3D4M .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.nYCc7p{display:var(--display);--display:flex;flex-direction:column}.nYCc7p .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight);border-width:1px 0;border-color:#0003}.nYCc7p .Hae_iI:hover:not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nYCc7p .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nYCc7p .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nYCc7p .Hae_iI:focus{border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.nYCc7p .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.nYCc7p .Hae_iI:disabled+.R8pbpf{border:none}.nYCc7p .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.nYCc7p .UuIgyh{flex:1;position:relative}.nYCc7p .R8pbpf{border-style:solid;border-color:#0003;border-width:var(--arrowBorderWidth,0)}.l5LWAe .Hae_iI:invalid,.l5LWAe .qKjd3E{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.nYCc7p .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.uvl2Tw{text-align:var(--align);text-align-last:var(--align);direction:var(--direction)}.UuIgyh{direction:var(--inputDirection)}.Hae_iI{direction:var(--inputDirection);text-align-last:var(--inputAlign,"inherit");border-radius:var(--corvid-border-radius,var(--rd,5px));-webkit-appearance:none;-moz-appearance:none;box-shadow:var(--shd,0 0 0 #0000);background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_8,color_8)),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,136,136,136)));cursor:pointer;text-overflow:ellipsis;white-space:nowrap;font:var(--fnt);border-style:solid;margin:0;padding-inline-start:var(--textPaddingInput_start);padding-inline-end:var(--textPaddingInput_end);display:block;position:relative}.Hae_iI option{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.Hae_iI option.QfNCKR{color:rgb(var(--txt2,var(--color_15,color_15)));display:none}.Hae_iI.ztWMYz{color:rgb(var(--txt_placeholder,136,136,136));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Hae_iI::placeholder{color:rgb(var(--txt_placeholder,136,136,136))}.Hae_iI:-moz-focusring{color:#0000;text-shadow:0 0 #000}.Hae_iI::-ms-expand{display:none}.Hae_iI:focus::-ms-value{background:0 0}.Hae_iI:disabled+.R8pbpf .ue5GsJ{fill:rgb(var(--txtd,255,255,255))}.R8pbpf{pointer-events:none;top:0;bottom:0;box-sizing:border-box;height:inherit;align-items:center;padding-left:20px;padding-right:20px;display:flex;position:absolute;inset-inline-start:var(--arrowInsetInlineStart);inset-inline-end:var(--arrowInsetInlineEnd)}.R8pbpf .XiOJeV{width:12px}.R8pbpf .XiOJeV .ue5GsJ{height:100%;fill:rgba(var(--arrowColor,var(--color_12,color_12)),var(--alpha-arrowColor,1))}.R8pbpf .XiOJeV.xlNOHs{transform:rotate(180deg)}.lo03zG{display:none}.VYqX7C .lo03zG{font:var(--fntlbl);text-align:var(--labelAlign,"inherit");direction:var(--labelDirection);color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.DCgvoa .lo03zG:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Y_w4j4{display:var(--display);--display:flex;flex-direction:column}.Y_w4j4 .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI{box-sizing:border-box;flex:1;align-items:center;width:100%;display:flex}.Y_w4j4 .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Y_w4j4 .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .Y_w4j4 .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.Y_w4j4 .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.Y_w4j4 .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf{border:none}</style> | |
| 186 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_Default].24db2c41.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 187 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LanguageSelector].1814237c.min.css">.d53IyJ .CjkVyx>button,.d53IyJ .drWYz5 .SVOqp3,.drWYz5 .d53IyJ .SVOqp3,.d53IyJ .drWYz5 .clBgzu,.drWYz5 .d53IyJ .clBgzu{justify-content:flex-start}.kyRJB9 .CjkVyx>button,.kyRJB9 .drWYz5 .SVOqp3,.drWYz5 .kyRJB9 .SVOqp3,.kyRJB9 .drWYz5 .clBgzu,.drWYz5 .kyRJB9 .clBgzu{justify-content:center}.OIbSKK .CjkVyx>button,.OIbSKK .drWYz5 .SVOqp3,.drWYz5 .OIbSKK .SVOqp3,.OIbSKK .drWYz5 .clBgzu,.drWYz5 .OIbSKK .clBgzu{direction:rtl}.CjkVyx .z6NAhm img,.drWYz5 .vDrjru .gEOfRC img,.drWYz5 .clBgzu .gEOfRC img{height:var(--iconSize);display:block}.drWYz5 .SVOqp3.tJr0E9,.CjkVyx>button:hover,.drWYz5 .SVOqp3:hover,.drWYz5 .clBgzu:hover{color:rgb(var(--itemTextColorHover,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorHover,var(--color_4,color_4)),var(--alpha-backgroundColorHover,1))}.drWYz5 .SVOqp3.tJr0E9 path,.CjkVyx>button:hover path,.drWYz5 .SVOqp3:hover path,.drWYz5 .clBgzu:hover path{fill:rgb(var(--itemTextColorHover,var(--color_1,color_1)))}.CjkVyx>button:active,.drWYz5 .SVOqp3:active,.drWYz5 .clBgzu:active,.CjkVyx>button.nOw6jW,.drWYz5 .nOw6jW.SVOqp3,.drWYz5 .nOw6jW.clBgzu{color:rgb(var(--itemTextColorActive,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorActive,var(--color_4,color_4)),var(--alpha-backgroundColorActive,1));cursor:default}.CjkVyx>button:active path,.drWYz5 .SVOqp3:active path,.drWYz5 .clBgzu:active path,.CjkVyx>button.nOw6jW path,.drWYz5 .nOw6jW.SVOqp3 path,.drWYz5 .nOw6jW.clBgzu path{fill:rgb(var(--itemTextColorActive,var(--color_1,color_1)))}.xDaLqh{width:var(--width);height:100%}body.device-mobile-optimized .xDaLqh,:host(.device-mobile-optimized) .xDaLqh{display:var(--display);--display:table}.xDaLqh.uEjKHu{opacity:.38}.xDaLqh.uEjKHu *,.xDaLqh.uEjKHu:active{pointer-events:none}.drWYz5 .SVOqp3,.drWYz5 .clBgzu{height:calc(var(--height) - var(--borderWidth,1px)*2);align-items:center;display:flex}.drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .clBgzu .YvJYK8{line-height:0}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{position:absolute;right:0}.OIbSKK .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .OIbSKK .SVOqp3 .YvJYK8,.OIbSKK .drWYz5 .clBgzu .YvJYK8,.drWYz5 .OIbSKK .clBgzu .YvJYK8,.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{margin:0 20px 0 14px}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8,.d53IyJ .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .d53IyJ .SVOqp3 .YvJYK8,.d53IyJ .drWYz5 .clBgzu .YvJYK8,.drWYz5 .d53IyJ .clBgzu .YvJYK8{margin:0 14px 0 20px}.d53IyJ .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .d53IyJ .SVOqp3 .GZ9kig,.d53IyJ .drWYz5 .clBgzu .GZ9kig,.drWYz5 .d53IyJ .clBgzu .GZ9kig,.OIbSKK .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .OIbSKK .SVOqp3 .GZ9kig,.OIbSKK .drWYz5 .clBgzu .GZ9kig,.drWYz5 .OIbSKK .clBgzu .GZ9kig{flex-grow:1}.kyRJB9 .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .kyRJB9 .SVOqp3 .GZ9kig,.kyRJB9 .drWYz5 .clBgzu .GZ9kig,.drWYz5 .kyRJB9 .clBgzu .GZ9kig{flex-shrink:0;width:20px}.drWYz5 .SVOqp3 svg,.drWYz5 .clBgzu svg{width:12px;height:auto}.drWYz5 .SVOqp3 path,.drWYz5 .clBgzu path{fill:rgb(var(--itemTextColor,var(--color_9,color_9)))}.drWYz5 .vDrjru,.drWYz5 .clBgzu{border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));overflow:hidden}.drWYz5 .vDrjru .gEOfRC,.drWYz5 .clBgzu .gEOfRC{margin:0 -6px 0 14px}.kyRJB9 .drWYz5 .vDrjru .gEOfRC,.drWYz5 .kyRJB9 .vDrjru .gEOfRC,.kyRJB9 .drWYz5 .clBgzu .gEOfRC,.drWYz5 .kyRJB9 .clBgzu .gEOfRC{margin:0 4px}.OIbSKK .drWYz5 .vDrjru .gEOfRC,.drWYz5 .OIbSKK .vDrjru .gEOfRC,.OIbSKK .drWYz5 .clBgzu .gEOfRC,.drWYz5 .OIbSKK .clBgzu .gEOfRC{margin:0 14px 0 -6px}.xDaLqh{height:100%}.drWYz5{cursor:pointer;width:var(--width);font:var(--itemFont,var(--font_0));color:rgb(var(--itemTextColor,var(--color_9,color_9)));height:100%;position:relative}.drWYz5 *{box-sizing:border-box}.drWYz5 .clBgzu{z-index:1;height:100%;position:relative}.FDTMKK.drWYz5 .clBgzu{display:none!important}.drWYz5 .yHM59W{text-overflow:ellipsis;white-space:nowrap;margin:0 0 0 14px;overflow:hidden}.kyRJB9 .drWYz5 .yHM59W{margin:0 4px}.OIbSKK .drWYz5 .yHM59W{margin:0 14px 0 0}.drWYz5 .vDrjru{z-index:1;min-width:100%;max-height:calc(var(--height)*5.5);flex-direction:column;display:flex;position:absolute;overflow-y:auto}.drWYz5 .vDrjru:not(.jLVp_T){--itemBorder:1px 0 0;top:0}.drWYz5 .vDrjru.jLVp_T{--itemBorder:0 0 1px;flex-direction:column-reverse;bottom:0}.FDTMKK.drWYz5 .vDrjru svg{transform:rotate(180deg)}.drWYz5.FDTMKK{z-index:47}.drWYz5:not(.FDTMKK) .vDrjru{display:none}.drWYz5 .SVOqp3{flex-shrink:0}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .drWYz5 .SVOqp3:focus{outline-offset:1px;outline-offset:-2px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.drWYz5 .SVOqp3:focus{box-shadow:none;outline-offset:-3px!important;outline:3px solid highlight!important}}.drWYz5 .SVOqp3:not(:first-child){--force-state-metadata:false;border-width:var(--itemBorder);border-style:solid;border-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.Q0JjLQ{height:100%}body.device-mobile-optimized .Q0JjLQ,:host(.device-mobile-optimized) .Q0JjLQ{width:100%;display:table}.CjkVyx{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);height:100%;color:rgb(var(--itemTextColor,var(--color_9,color_9)));border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);font:var(--itemFont,var(--font_0));display:flex}.CjkVyx,.CjkVyx *{box-sizing:border-box}.CjkVyx>button{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));height:100%;color:inherit;cursor:pointer;font:inherit;flex:auto;align-items:center;display:flex}.CjkVyx>button:not(:first-child){--force-state-metadata:false;border-left-style:solid;border-left-width:1px;border-left-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.CjkVyx>button:first-child,.CjkVyx>button:last-child{border-radius:var(--borderRadius,5px)}.CjkVyx>button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.CjkVyx>button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.OIbSKK .CjkVyx .z6NAhm{margin:0 14px 0 -6px}.kyRJB9 .CjkVyx .z6NAhm{margin:0 4px}.d53IyJ .CjkVyx .z6NAhm{margin:0 -6px 0 14px}.CjkVyx ._L5t7V{margin:0 14px}.kyRJB9 .CjkVyx ._L5t7V{margin:0 4px}._1Ry_8 select{opacity:0;z-index:1;width:100%;height:100%;position:absolute;top:0;left:0}._1Ry_8 .XDBTy_{display:none}</style> | |
| 188 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SiteButton_WrappingButton].339c1169.min.css">.ZhVEJq{touch-action:manipulation}.PoVCDy{text-align:initial;box-sizing:border-box;align-items:center;justify-content:var(--label-align);width:max-content;min-width:100%;display:flex}@media (forced-colors:active){.PoVCDy{outline-offset:0px;outline:2px solid buttontext}.PoVCDy:hover{outline-offset:1px;outline:3px solid highlight}.PoVCDy:focus,.PoVCDy:focus-visible{outline-offset:1px;outline:3px solid highlight!important}[aria-disabled=true] .PoVCDy{outline:none}}.PoVCDy:before{content:"";max-width:var(--margin-start,0px);flex-grow:1;align-self:stretch}.PoVCDy:after{content:"";max-width:var(--margin-end,0px);flex-grow:1;align-self:stretch}.lIkFMb{display:var(--display);--display:grid;grid-template-columns:minmax(0,1fr)}.lIkFMb .PoVCDy{border-radius:var(--corvid-border-radius,var(--rd,0));transition:var(--trans1,border-color .4s ease 0s,background-color .4s ease 0s);box-shadow:var(--shd,0 1px 4px #0009);padding-left:var(--horizontalPadding,0);padding-right:var(--horizontalPadding,0);padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);width:auto;position:relative}.lIkFMb .PoVCDy:before{width:var(--margin-start,0px);flex-shrink:0}.lIkFMb .PoVCDy:after{width:var(--margin-end,0px);flex-shrink:0}.lIkFMb .Gf1CuA{font:var(--fnt,var(--font_5));transition:var(--trans2,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));position:relative}.lIkFMb[aria-disabled=false] .PoVCDy{background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17,color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)))var(--corvid-border-width,var(--brw,0));cursor:pointer!important}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .PoVCDy,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .Gf1CuA,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .PoVCDy,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .Gf1CuA,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}.lIkFMb[aria-disabled=true] .PoVCDy{background-color:var(--corvid-disabled-background-color,rgba(var(--bgd,204,204,204),var(--alpha-bgd,1)));border-color:var(--corvid-disabled-border-color,rgba(var(--brdd,204,204,204),var(--alpha-brdd,1)))}.lIkFMb[aria-disabled=true] .Gf1CuA{color:var(--corvid-disabled-color,rgb(var(--txtd,255,255,255)))}.lIkFMb .Gf1CuA{text-align:var(--label-text-align)}</style> | |
| 189 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VerticalLine_VerticalSolidLine].81222752.min.css">.n8bAtI .zACo20{border-left:var(--lnw,3px)solid rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));height:100%}</style> | |
| 190 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LinkBar_Responsive].9d761e03.min.css">.eAOB3n{direction:var(--direction)}.eAOB3n .tDHQQD .VGXFRO{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.eAOB3n .tDHQQD .VGXFRO:last-child{margin-block:0;margin-inline:0}.eAOB3n .tDHQQD .VGXFRO .FvIvPq{display:block}.eAOB3n .tDHQQD .VGXFRO .FvIvPq .IKlnHc{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.eAOB3n .tDHQQD .VGXFRO .FvIvPq{outline-offset:0;outline:2px solid buttontext}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:hover{outline-offset:-2px;outline:3px solid highlight}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus,.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.eAOB3n{display:var(--display);--display:initial;width:-moz-fit-content;width:fit-content}.eAOB3n .tDHQQD{flex-direction:var(--flex-direction);display:flex}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}</style> | |
| 191 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_menu.d7f69225.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.umBpNq{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.umBpNq:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.umBpNq:not(:disabled):hover,.umBpNq:not(:disabled)[aria-pressed=true],.umBpNq:not(:disabled)[aria-selected=true],.umBpNq:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.umBpNq:not(:disabled):focus,.umBpNq:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.umBpNq.b5wzzG:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.umBpNq.IdBKRQ:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.umBpNq:hover,.umBpNq [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.umBpNq.olGtjp:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.umBpNq.H4kLBj:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.umBpNq:disabled,.umBpNq [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.umBpNq.jRfRxf:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.umBpNq.yNUpJa:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.xuJAxK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.umBpNq.EOdpK9:not(:hover):not(:disabled) .xuJAxK{color:var(--corvid-color,var(--color))}.umBpNq:hover .xuJAxK,.umBpNq [data-preview=hover] .xuJAxK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.umBpNq.wCtkkB:hover:not(:disabled) .xuJAxK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.umBpNq:disabled .xuJAxK,.umBpNq [data-preview=disabled] .xuJAxK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.umBpNq.GsVIhZ:disabled:not(:hover) .xuJAxK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.wVQcpq{box-sizing:border-box;color:#000;text-decoration:none}.NZHz_8{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.GvoWb8{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.umBpNq.LwoP3t:not(:hover):not(:disabled) .GvoWb8{fill:var(--corvid-icon-color,var(--icon-color))}.umBpNq:hover .GvoWb8,.umBpNq [data-preview=hover] .GvoWb8{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.umBpNq.Sbl9_q:hover:not(:disabled) .GvoWb8{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.umBpNq:disabled .GvoWb8,.umBpNq [data-preview=disabled] .GvoWb8{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.umBpNq.ET2QWr:disabled:not(:hover) .GvoWb8{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.GvoWb8>span,.GvoWb8 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.GvoWb8,.GvoWb8 svg,.GvoWb8 svg *{fill:currentColor!important;stroke:currentColor!important}}.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}.gDZ5xr{border-radius:var(--overflow-wrapper-border-radius)}.ZBf0K1{opacity:var(--hamburger-menu-container-initial-opacity)}.ZBf0K1>*{transform:var(--hamburger-menu-container-initial-transform)}.ZBf0K1[data-animation-name=revealFromRight]{clip-path:inset(0)}.ZBf0K1[data-animation-name=revealFromRight]>*{transition:transform .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterActive]>*,.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterDone]>*{transform:translate(0)}.ZBf0K1[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterActive],.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.fy6eJk{--container-overflow-y:hidden}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1{clip-path:inset(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1>*{transition:transform .4s cubic-bezier(.645,.045,.355,1);transform:translate(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=fadeIn]:checked) .ZBf0K1{opacity:1;transition:opacity .4s cubic-bezier(.645,.045,.355,1)}[data-prehydration]:has([data-hamburger-toggle]:checked) .ZBf0K1{z-index:2;position:relative}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1{opacity:1}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1>*{transform:translate(0)}.HamburgerMenuContainer502174924__root{-archetype:paintBox;box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.Qkigz2{box-sizing:border-box;top:0;background:var(--background);border:var(--border);border-radius:var(--border-radius);width:100%;height:100%;box-shadow:var(--box-shadow);position:absolute;inset-inline-start:0}.NxO5nt{flex-direction:var(--container-flex-direction);flex-grow:var(--menu-items-flex-grow);align-items:center;gap:var(--menu-items-main-axis-gap);flex-wrap:nowrap;display:flex}.fYThT1{height:var(--menu-item-wrapper-height);display:var(--item-wrapper-display);width:var(--item-wrapper-width);justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow)}.FBAIyH{width:var(--item-width);box-sizing:border-box;align-items:center;height:100%;display:flex;position:relative}.FBAIyH a{color:inherit}.FBAIyH.QFOPOz{border-left:var(--item-border-left);border-right:var(--item-border-right);border-radius:var(--item-border-radius);padding-left:var(--item-padding-left,var(--item-horizontal-padding));padding-right:var(--item-padding-right,var(--item-horizontal-padding))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8{background:var(--item-hover-background,var(--item-background));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow));border-top:var(--item-hover-border-top,var(--item-border-top));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH.QFOPOz,.FBAIyH[data-interactive=true]:hover.QFOPOz,.FBAIyH[data-preview=hover].QFOPOz,.FBAIyH.BjD2X8.QFOPOz{border-left:var(--item-hover-border-left,var(--item-border-left));border-right:var(--item-hover-border-right,var(--item-border-right));border-radius:var(--item-hover-border-radius,var(--item-border-radius))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .ijO_Jr,.FBAIyH[data-interactive=true]:hover .ijO_Jr,.FBAIyH[data-preview=hover] .ijO_Jr,.FBAIyH.BjD2X8 .ijO_Jr{color:var(--item-hover-color,var(--item-color));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration));text-shadow:var(--item-hover-text-outline,var(--item-text-outline)),var(--item-hover-text-shadow,var(--item-text-shadow));background-color:var(--item-hover-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH path,.FBAIyH[data-interactive=true]:hover path,.FBAIyH[data-preview=hover] path,.FBAIyH.BjD2X8 path{fill:var(--item-hover-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH[data-selected],.FBAIyH[data-preview=selected],.FBAIyH.aH0Njg{background:var(--item-selected-background,var(--item-background));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow));border-top:var(--item-selected-border-top,var(--item-border-top));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom))}.FBAIyH[data-selected].QFOPOz,.FBAIyH[data-preview=selected].QFOPOz,.FBAIyH.aH0Njg.QFOPOz{border-left:var(--item-selected-border-left,var(--item-border-left));border-right:var(--item-selected-border-right,var(--item-border-right));border-radius:var(--item-selected-border-radius,var(--item-border-radius))}.FBAIyH[data-selected] .ijO_Jr,.FBAIyH[data-preview=selected] .ijO_Jr,.FBAIyH.aH0Njg .ijO_Jr{color:var(--item-selected-color,var(--item-color));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration));text-shadow:var(--item-selected-text-outline,var(--item-text-outline)),var(--item-selected-text-shadow,var(--item-text-shadow));background-color:var(--item-selected-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}.FBAIyH[data-selected] path,.FBAIyH[data-preview=selected] path,.FBAIyH.aH0Njg path{fill:var(--item-selected-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH>a:before{content:"";position:absolute;inset:0}@media (forced-colors:active){.FBAIyH{outline-offset:-1px;outline:2px solid buttontext}.FBAIyH .RXCM8H{color:buttontext}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8,.FBAIyH[data-selected],.FBAIyH[data-preview=selected]{outline-offset:-2px;outline:3px solid highlight}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .RXCM8H,.FBAIyH[data-interactive=true]:hover .RXCM8H,.FBAIyH[data-preview=hover] .RXCM8H,.FBAIyH.BjD2X8 .RXCM8H,.FBAIyH[data-selected] .RXCM8H,.FBAIyH[data-preview=selected] .RXCM8H{color:highlight}.FBAIyH:focus-within{outline-offset:-2px!important;outline:3px solid highlight!important}.FBAIyH:focus-within .RXCM8H{color:highlight}.FBAIyH>a:focus,.FBAIyH>a:focus-visible{outline:none!important}.FBAIyH .RXCM8H:focus,.FBAIyH .RXCM8H:focus-visible{outline-offset:1px!important;outline:3px solid highlight!important}}.ijO_Jr{direction:var(--item-direction);background-color:var(--item-text-highlight);white-space:nowrap}.rpHatU{--computed-anchor:var(--anchor,var(--dropdown-anchor));--computed-align:var(--align,var(--dropdown-align));--computed-space-above:var(--space-above,var(--dropdown-space-above));--computed-horizontal-margin:var(--horizontal-margin,var(--dropdown-horizontal-margin));--before-el-top:calc(-1*var(--computed-space-above));visibility:hidden;z-index:var(--above-all-z-index);margin-top:var(--computed-space-above)!important;inset:auto!important;left:var(--dropdown-left)!important;display:none!important;position:absolute!important}.rpHatU:before{content:"";height:var(--computed-space-above);top:var(--before-el-top);width:100%;display:block;position:absolute}.rpHatU[data-open=true]{visibility:visible}.NxO5nt[data-open=calculating] .rpHatU,.NxO5nt[data-open=true] .rpHatU{display:grid!important}.RXCM8H{cursor:pointer;display:var(--item-icon-display,flex)}.RXCM8H svg{height:var(--item-icon-size);width:var(--item-icon-size)}.RXCM8H path{fill:var(--item-icon-color,currentcolor)}.RXCM8H.wWora8:before{content:"";position:absolute;inset:0}.RXCM8H.G_xd9z{display:var(--sr-only-item-icon-display,flex);clip:rect(0 0 0 0);clip-path:inset(50%);position:absolute}.RXCM8H.G_xd9z:focus,.RXCM8H.G_xd9z:active{clip-path:unset;position:static}.kbbiAh[data-open]{transform:rotate(-180deg)}.iincGk{display:var(--vertical-expand-collapse-display,var(--item-icon-display,flex))}.RXCM8H:not(.wWora8):not(.G_xd9z){position:relative}.RXCM8H:not(.wWora8):before{content:"";height:max(100%,24px);width:max(var(--item-icon-size),24px);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@media (forced-colors:active){.RXCM8H,.RXCM8H svg,.RXCM8H svg *,.RXCM8H path{fill:currentColor!important;stroke:currentColor!important}}.JFWRCg{display:var(--horizontal-menu-dropdown-display,block)}.lmsYvh{display:var(--vertical-menu-dropdown-display);margin-top:calc(var(--menu-items-main-axis-gap,0)*-1);width:100%}.t_wvYI{--computed-space-above:var(--space-above,var(--dropdown-space-above));visibility:var(--vertical-dropdown-visibility);height:var(--vertical-dropdown-height);margin-top:var(--vertical-dropdown-height,var(--computed-space-above))!important}.Rfl5du .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}.BDrALc{display:var(--divider-display,none);border-left:var(--horizontal-menu-item-divider,none);border-top:var(--vertical-menu-item-divider,none);align-self:stretch}.NxO5nt:last-child .BDrALc{display:none}.jGiW2t{display:contents}.twZzaW{display:none}.WCS58T{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}[data-prehydration] [data-submenu-toggle]:checked~.lmsYvh .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}[data-prehydration] .jGiW2t{z-index:1;display:flex;position:relative}[data-prehydration] .jGiW2t .RXCM8H{pointer-events:none}[data-prehydration] .twZzaW{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}[data-prehydration] .twZzaW:before{content:"";min-width:44px;min-height:44px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}[data-prehydration] [data-submenu-toggle]:checked~.fYThT1 .kbbiAh{transform:rotate(-180deg)}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=screen]{visibility:visible;left:var(--computed-horizontal-margin)!important;width:calc(100vw - 2*var(--computed-horizontal-margin))!important;display:grid!important;position:fixed!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuStretched]{visibility:visible;width:100%!important;display:grid!important;left:0!important}[data-prehydration] .NxO5nt:hover{anchor-name:--ee-hovered-menu-item}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth]{visibility:visible;display:grid!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{left:0!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:0!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:50%!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:0!important}@supports (anchor-name:--a){[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{width:max-content!important;min-width:anchor-size(--ee-hovered-menu-item width)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=start],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:anchor(--ee-hovered-menu-item left)!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=center],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:anchor(--ee-hovered-menu-item center)!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=end],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:anchor(--ee-hovered-menu-item right)!important}}.cVnJ7u{justify-content:var(--item-text-align);background:var(--item-background);box-shadow:var(--item-box-shadow);border-top:var(--item-border-top);border-bottom:var(--item-border-bottom);padding-top:var(--item-padding-top,var(--item-vertical-padding));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding));gap:var(--spacing-between-label-and-dropdown-icon)}.GPIJZi{font:var(--item-font,font_6);color:var(--item-color);text-decoration-line:var(--item-text-decoration);text-transform:var(--item-text-transform);text-shadow:var(--item-text-outline),var(--item-text-shadow);letter-spacing:var(--item-letter-spacing);line-height:var(--item-line-height)}.Y4Cdvx [data-part=menu-item]{--underline-scale:scaleX(0);--wash-scale:scaleX(0);--circle-clip-path:circle(0%);--dropdown-icon-transform:rotate(0);--bullet-translate:translateX(-150%);--bullet-opacity:0;--wave-tarnslate:scaleY(0)}.Y4Cdvx [data-part=menu-item]:not([data-animation-name=none]) [data-part=dropdown-icon]{transition-property:transform;transition-duration:.4s}.Y4Cdvx [data-part=menu-item] [data-part=label]:after,.Y4Cdvx [data-part=menu-item] [data-part=dropdown-item-label]:after{content:"";width:100%;height:1px;display:block;display:var(--item-label-underline-display,block);background-color:currentColor;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item] [data-part=label]:before{content:"•"/"";display:var(--item-label-bullet-display,inline-block);opacity:0;padding-inline-end:3px}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:after{display:var(--item-selected-label-underline-display,block);transform:scaleX(1)}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:before{opacity:1}.Y4Cdvx [data-part=menu-item][data-open=true],.Y4Cdvx [data-part=menu-item][data-animation-state=enterActive],.Y4Cdvx [data-part=menu-item][data-animation-state=enterDone]{--underline-scale:scaleX(1);--wash-scale:scaleX(1);--circle-clip-path:circle(100%);--dropdown-icon-transform:rotate(-540deg);--bullet-translate:translateX(0%);--bullet-opacity:1;--wave-tarnslate:scaleY(1.5)}.Y4Cdvx [data-part=menu-item] [data-selected]{--underline-scale:scaleX(1);--wash-scale:scaleX(0);--bullet-translate:translateX(0%);--bullet-opacity:1}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=label]:after{transform-origin:0;transform:var(--underline-scale);transition:transform .3s}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item-label]:after{transform-origin:0;transition-property:transform;transition-duration:.3s;display:block;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item]:hover [data-part=dropdown-item-label]:after{transform:scaleX(1)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);transform-origin:0;transform:var(--wash-scale);transition:transform .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);clip-path:var(--circle-clip-path);transition:clip-path .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=dropdown-icon]{transform:var(--dropdown-icon-transform)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);height:135%;inset:0;bottom:unset;transform-origin:bottom;transform:var(--wave-tarnslate);transition:transform .4s;display:block;position:absolute;-webkit-mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100% 100%;mask-size:100% 100%}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=bullet] [data-part=label]:before{transform:var(--bullet-translate);opacity:var(--bullet-opacity);transition-duration:.3s;display:inline-block}.Y4Cdvx{width:100%;height:100%;overflow-x:var(--container-overflow-x,unset);overflow-y:var(--container-overflow-y,visible);scrollbar-width:none;box-sizing:border-box;display:flex}.Y4Cdvx.VxjUGd{border-left:var(--container-border-left);border-right:var(--container-border-right);border-radius:var(--container-border-radius);padding-right:var(--container-padding-right,0);padding-left:var(--container-padding-left,0)}.tn8ZSa{direction:var(--direction)}.OD_PyT{width:100%;min-width:-moz-fit-content;height:auto;justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow);flex-direction:var(--container-flex-direction);flex-wrap:var(--container-flex-wrap,unset);scrollbar-width:none;row-gap:var(--menu-items-row-gap);column-gap:var(--menu-items-column-gap);min-width:fit-content;display:flex;overflow-x:visible}.YUEUpV{background:var(--container-background);box-shadow:var(--container-box-shadow);border-top:var(--container-border-top);border-bottom:var(--container-border-bottom);padding-top:var(--container-padding-top,0);padding-bottom:var(--container-padding-bottom,0)}.PnnIOa{cursor:pointer;pointer-events:auto;visibility:hidden;transform:var(--scroll-button-transform);--icon-rotation:var(--scroll-button-icon-rotation-deg,calc(var(--scroll-button-icon-rotation)*1deg));--icon-rotation-hover:var(--scroll-button-hover-icon-rotation-deg,calc(var(--scroll-button-hover-icon-rotation)*1deg));justify-content:center;align-items:center;display:flex;overflow:hidden}.PnnIOa.hcRPG3{border-left:var(--scroll-button-border-left);border-right:var(--scroll-button-border-right);border-radius:var(--scroll-button-border-radius)}.PnnIOa.hcRPG3 .KEUNmX{padding-right:var(--scroll-button-padding-right,0);padding-left:var(--scroll-button-padding-left,0)}.PnnIOa.Od2sOd .KEUNmX{padding-inline-start:var(--scroll-button-padding-inline-start,0);padding-inline-end:var(--scroll-button-padding-inline-end,0)}.PnnIOa:hover,.PnnIOa[data-preview=hover]{background:var(--scroll-button-hover-background,var(--scroll-button-background));box-shadow:var(--scroll-button-hover-box-shadow,var(--scroll-button-box-shadow));border-top:var(--scroll-button-hover-border-top,var(--scroll-button-border-top));border-bottom:var(--scroll-button-hover-border-bottom,var(--scroll-button-border-bottom))}.PnnIOa:hover.hcRPG3,.PnnIOa[data-preview=hover].hcRPG3{border-left:var(--scroll-button-hover-border-left,var(--scroll-button-border-left));border-right:var(--scroll-button-hover-border-right,var(--scroll-button-border-right));border-radius:var(--scroll-button-hover-border-radius,var(--scroll-button-border-radius))}.PnnIOa:hover.hcRPG3 .KEUNmX,.PnnIOa[data-preview=hover].hcRPG3 .KEUNmX{padding-right:var(--scroll-button-hover-padding-right,var(--scroll-button-padding-right,0));padding-left:var(--scroll-button-hover-padding-left,var(--scroll-button-padding-left,0))}.PnnIOa:hover .KEUNmX,.PnnIOa[data-preview=hover] .KEUNmX{fill:var(--scroll-button-hover-icon-color,var(--scroll-button-icon-color));transform:rotate(var(--icon-rotation-hover,var(--icon-rotation)));height:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size));width:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size))}.PnnIOa:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.fXBvwp{visibility:visible;pointer-events:auto}.sLcDXV{visibility:hidden;pointer-events:none}.KEUNmX{min-width:1px;max-width:100%;max-height:100%;fill:var(--scroll-button-icon-color);transform:rotate(var(--icon-rotation));height:var(--scroll-button-icon-size);width:var(--scroll-button-icon-size)}.KEUNmX>svg{width:inherit;height:inherit}@media (forced-colors:active){.PnnIOa.fXBvwp{outline-offset:0px;color:buttontext;outline:2px solid buttontext}.PnnIOa.fXBvwp:hover,.PnnIOa[data-preview=hover]{outline-offset:1px;color:highlight;outline:3px solid highlight}.KEUNmX,.KEUNmX *{fill:currentColor;stroke:currentColor}}.MXA4tA{background:var(--scroll-button-background);box-shadow:var(--scroll-button-box-shadow);border-top:var(--scroll-button-border-top);border-bottom:var(--scroll-button-border-bottom)}.UU6mel{padding-top:inherit;padding-bottom:inherit;border:inherit;pointer-events:none;display:var(--scroll-button-icon-display,flex);border-color:#0000;justify-content:space-between;position:absolute;inset:0}.toi7Rj{direction:var(--submenu-direction,var(--dropdown-menu-direction,var(--direction)));box-sizing:border-box;background:var(--container-background,var(--dropdown-menu-container-background));border-top:var(--container-border-top,var(--dropdown-menu-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-menu-container-border-bottom));border-left:var(--container-border-left,var(--dropdown-menu-container-border-left));border-right:var(--container-border-right,var(--dropdown-menu-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-menu-container-border-radius));box-shadow:var(--container-box-shadow,var(--dropdown-menu-container-box-shadow));text-align:var(--align,var(--dropdown-menu-align));padding-top:var(--container-padding-top,var(--container-vertical-padding,var(--dropdown-menu-container-padding-top,var(--dropdown-menu-container-vertical-padding))));padding-bottom:var(--container-padding-bottom,var(--container-vertical-padding,var(--dropdown-menu-container-padding-bottom,var(--dropdown-menu-container-vertical-padding))));min-width:min-content!important}.toi7Rj.x0UOau{padding-right:var(--container-padding-right,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-right,var(--dropdown-menu-container-horizontal-padding))));padding-left:var(--container-padding-left,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-left,var(--dropdown-menu-container-horizontal-padding))))}.toi7Rj.esKf1e{padding-inline-start:var(--container-padding-inline-start);padding-inline-end:var(--container-padding-inline-end)}@media (forced-colors:active){.toi7Rj{outline-offset:0px;outline:2px solid buttontext}.toi7Rj:focus-within{outline-offset:1px;outline:3px solid highlight!important}}.sbxaYn{--rows-number:calc((var(--items-number)/$columns-number) + .49);grid-template-columns:repeat(var(--columns-number,var(--dropdown-menu-columns-number)),1fr);grid-template-rows:repeat(var(--rows-number),auto);row-gap:var(--item-vertical-spacing,var(--dropdown-menu-item-vertical-spacing));column-gap:var(--item-horizontal-spacing,var(--dropdown-menu-item-horizontal-spacing));display:grid}@supports (width:round(1.9px, 1px)){.sbxaYn{--rows-number:calc(round(up,var(--items-number)/$columns-number))}}.SjbYta{gap:var(--sub-items-vertical-spacing-between,var(--dropdown-menu-sub-items-vertical-spacing-between));margin-top:var(--sub-items-vertical-spacing-before,var(--dropdown-menu-sub-items-vertical-spacing-before));flex-direction:column;display:flex}.P3tBK7{width:100%}.ptLEUT{direction:var(--submenu-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--dropdown-menu-item-justify-self);text-align:var(--item-align,var(--align,var(--dropdown-menu-item-align,var(--dropdown-menu-align))));padding-top:var(--item-padding-top,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));display:block}.ptLEUT.x0UOau{border-left:var(--item-border-left,var(--dropdown-menu-item-border-left));border-right:var(--item-border-right,var(--dropdown-menu-item-border-right));border-radius:var(--item-border-radius,var(--dropdown-menu-item-border-radius));padding-left:var(--item-padding-left,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-right:var(--item-padding-right,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.esKf1e{padding-inline-start:var(--item-padding-inline-start,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-inline-end:var(--item-padding-inline-end,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected]{font:var(--item-selected-font,var(--item-font,var(--dropdown-menu-item-selected-font,var(--dropdown-menu-item-font))));color:var(--item-selected-color,var(--item-color,var(--dropdown-menu-item-selected-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-selected-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-selected-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-selected-line-height,var(--item-line-height,var(--dropdown-menu-item-selected-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-selected-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-selected-text-transform,var(--item-text-transform,var(--dropdown-menu-item-selected-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-selected-text-outline,var(--item-text-outline,var(--dropdown-menu-item-selected-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-selected-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-selected-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-selected-background,var(--item-background,var(--dropdown-menu-item-selected-background,var(--dropdown-menu-item-background))));border-top:var(--item-selected-border-top,var(--item-border-top,var(--dropdown-menu-item-selected-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-selected-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-selected-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT.WB5Q35.x0UOau,.ptLEUT[data-preview=selected].x0UOau{border-left:var(--item-selected-border-left,var(--item-border-left,var(--dropdown-menu-item-selected-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-selected-border-right,var(--item-border-right,var(--dropdown-menu-item-selected-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-selected-border-radius,var(--item-border-radius,var(--dropdown-menu-item-selected-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT.WB5Q35 .u9_aLl,.ptLEUT[data-preview=selected] .u9_aLl{background-color:var(--item-selected-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-selected-text-highlight,var(--dropdown-menu-item-text-highlight))))}.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{font:var(--item-hover-font,var(--item-font,var(--dropdown-menu-item-hover-font,var(--dropdown-menu-item-font))));color:var(--item-hover-color,var(--item-color,var(--dropdown-menu-item-hover-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-hover-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-hover-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-hover-line-height,var(--item-line-height,var(--dropdown-menu-item-hover-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-hover-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-hover-text-transform,var(--item-text-transform,var(--dropdown-menu-item-hover-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-hover-text-outline,var(--item-text-outline,var(--dropdown-menu-item-hover-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-hover-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-hover-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-hover-background,var(--item-background,var(--dropdown-menu-item-hover-background,var(--dropdown-menu-item-background))));border-top:var(--item-hover-border-top,var(--item-border-top,var(--dropdown-menu-item-hover-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-hover-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-hover-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT:hover.x0UOau,.ptLEUT.brJofP.x0UOau,.ptLEUT[data-preview=hover].x0UOau{border-left:var(--item-hover-border-left,var(--item-border-left,var(--dropdown-menu-item-hover-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-hover-border-right,var(--item-border-right,var(--dropdown-menu-item-hover-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-hover-border-radius,var(--item-border-radius,var(--dropdown-menu-item-hover-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT:hover .u9_aLl,.ptLEUT.brJofP .u9_aLl,.ptLEUT[data-preview=hover] .u9_aLl{background-color:var(--item-hover-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-hover-text-highlight,var(--dropdown-menu-item-text-highlight))))}@media (forced-colors:active){.ptLEUT{outline-offset:0px;outline:2px solid buttontext}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected],.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.ptLEUT:focus,.ptLEUT:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.B2qCAf{direction:var(--submenu-sub-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--sub-item-justify-self);text-align:var(--sub-item-align,var(--align,var(--dropdown-menu-sub-item-align,var(--dropdown-menu-align))));display:block}.B2qCAf.x0UOau{border-left:var(--sub-item-border-left,var(--dropdown-menu-sub-item-border-left));border-right:var(--sub-item-border-right,var(--dropdown-menu-sub-item-border-right));border-radius:var(--sub-item-border-radius,var(--dropdown-menu-sub-item-border-radius));padding-left:var(--sub-item-padding-left,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)));padding-right:var(--sub-item-padding-right,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)))}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected]{font:var(--sub-item-selected-font,var(--sub-item-font,var(--dropdown-menu-sub-item-selected-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-selected-color,var(--sub-item-color,var(--dropdown-menu-sub-item-selected-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-selected-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-selected-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-selected-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-selected-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-selected-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-selected-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-selected-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-selected-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-selected-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-selected-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-selected-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-selected-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-selected-background,var(--sub-item-background,var(--dropdown-menu-sub-item-selected-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-selected-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-selected-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-selected-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-selected-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-selected-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-selected-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf.WB5Q35.x0UOau,.B2qCAf[data-preview=selected].x0UOau{border-left:var(--sub-item-selected-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-selected-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-selected-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-selected-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-selected-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-selected-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf.WB5Q35 .UCVF7R,.B2qCAf[data-preview=selected] .UCVF7R{background-color:var(--sub-item-selected-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-selected-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{font:var(--sub-item-hover-font,var(--sub-item-font,var(--dropdown-menu-sub-item-hover-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-hover-color,var(--sub-item-color,var(--dropdown-menu-sub-item-hover-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-hover-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-hover-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-hover-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-hover-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-hover-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-hover-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-hover-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-hover-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-hover-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-hover-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-hover-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-hover-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-hover-background,var(--sub-item-background,var(--dropdown-menu-sub-item-hover-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-hover-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-hover-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-hover-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-hover-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-hover-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-hover-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf:hover.x0UOau,.B2qCAf.brJofP.x0UOau,.B2qCAf[data-preview=hover].x0UOau{border-left:var(--sub-item-hover-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-hover-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-hover-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-hover-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-hover-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-hover-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf:hover .UCVF7R,.B2qCAf.brJofP .UCVF7R,.B2qCAf[data-preview=hover] .UCVF7R{background-color:var(--sub-item-hover-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-hover-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}@media (forced-colors:active){.B2qCAf{outline-offset:0px;outline:2px solid buttontext}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected],.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.B2qCAf:focus,.B2qCAf:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.u9_aLl{background-color:var(--item-text-highlight,var(--dropdown-menu-item-text-highlight));text-align:inherit;text-decoration-line:inherit;text-transform:inherit;text-shadow:inherit;display:inline-block}.UCVF7R{background-color:var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-text-highlight))}.eP1KVV{font:var(--item-font,var(--dropdown-menu-item-font,var(--font_7)));color:var(--item-color,var(--dropdown-menu-item-color));letter-spacing:var(--item-letter-spacing,var(--dropdown-menu-item-letter-spacing));line-height:var(--item-line-height,var(--dropdown-menu-item-line-height));text-decoration-line:var(--item-text-decoration,var(--dropdown-menu-item-text-decoration));text-transform:var(--item-text-transform,var(--dropdown-menu-item-text-transform));text-shadow:var(--item-text-outline,var(--dropdown-menu-item-text-outline)),var(--item-text-shadow,var(--dropdown-menu-item-text-shadow));background:var(--item-background,var(--dropdown-menu-item-background));border-top:var(--item-border-top,var(--dropdown-menu-item-border-top));border-bottom:var(--item-border-bottom,var(--dropdown-menu-item-border-bottom));box-shadow:var(--item-box-shadow,var(--dropdown-menu-item-box-shadow))}._3mA1c{font:var(--sub-item-font,var(--dropdown-menu-sub-item-font));color:var(--sub-item-color,var(--dropdown-menu-sub-item-color));letter-spacing:var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing));line-height:var(--sub-item-line-height,var(--dropdown-menu-sub-item-line-height));text-decoration-line:var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-text-decoration));text-transform:var(--sub-item-text-transform,var(--dropdown-menu-sub-item-text-transform));text-shadow:var(--sub-item-text-outline,var(--dropdown-menu-sub-item-text-outline)),var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-text-shadow));background:var(--sub-item-background,var(--dropdown-menu-sub-item-background));border-top:var(--sub-item-border-top,var(--dropdown-menu-sub-item-border-top));border-bottom:var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-border-bottom));box-shadow:var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-box-shadow));padding-top:var(--sub-item-padding-top,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)));padding-bottom:var(--sub-item-padding-bottom,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)))}.cNddzb[data-animation-name=revealFromTop]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),clip-path .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enter],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitDone]{clip-path:var(--animation-clip-path);opacity:0}.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive]{clip-path:inset(var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%))}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone]{clip-path:unset}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit]{opacity:1}.cNddzb[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=fadeIn][data-animation-state=enter],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitDone]{opacity:0}.cNddzb[data-animation-name=fadeIn][data-animation-state=enterActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=enterDone],.cNddzb[data-animation-name=fadeIn][data-animation-state=exit]{opacity:1}.cNddzb{background:var(--container-background,var(--dropdown-container-background));border-top:var(--container-border-top,var(--dropdown-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-container-border-bottom));box-shadow:var(--container-box-shadow,var(--dropdown-container-box-shadow))}.cNddzb.Nk9NbA{border-left:var(--container-border-left,var(--dropdown-container-border-left));border-right:var(--container-border-right,var(--dropdown-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-container-border-radius))}.cNddzb.W_BIhg{border-inline-start:var(--container-border-inline-start,var(--dropdown-container-border-inline-start));border-inline-end:var(--container-border-inline-end,var(--dropdown-container-border-inline-end));border-start-start-radius:var(--container-border-start-start-radius,var(--dropdown-container-border-start-start-radius));border-start-end-radius:var(--container-border-start-end-radius,var(--dropdown-container-border-start-end-radius));border-end-end-radius:var(--container-border-end-end-radius,var(--dropdown-container-border-end-end-radius));border-end-start-radius:var(--container-border-end-start-radius,var(--dropdown-container-border-end-start-radius))}.OOc2NG{direction:ltr}.G4Bkwp{box-sizing:border-box}div.wiZmhC{display:var(--l_display,var(--hamburger-menu-root-display,var(--container-display)))}[data-hamburger-btn-label]{display:none}div.wiZmhC[data-prehydration] [data-hamburger-btn-label]{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}.pcn0FH{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.HamburgerOpenButton3537389287__nav{display:inherit;height:inherit;width:auto}.uxNlIP{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.uxNlIP:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.uxNlIP:not(:disabled):hover,.uxNlIP:not(:disabled)[aria-pressed=true],.uxNlIP:not(:disabled)[aria-selected=true],.uxNlIP:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.uxNlIP:not(:disabled):focus,.uxNlIP:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.uxNlIP.KuCfHA:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.uxNlIP.aNAcG0:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.uxNlIP:hover,.uxNlIP [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.uxNlIP.GPIMxy:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.uxNlIP.KceBs9:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.uxNlIP:disabled,.uxNlIP [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.uxNlIP.N3sAZG:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.uxNlIP._FFhff:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.I0RXdK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.uxNlIP.siSNn5:not(:hover):not(:disabled) .I0RXdK{color:var(--corvid-color,var(--color))}.uxNlIP:hover .I0RXdK,.uxNlIP [data-preview=hover] .I0RXdK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.uxNlIP.EJ6L9y:hover:not(:disabled) .I0RXdK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.uxNlIP:disabled .I0RXdK,.uxNlIP [data-preview=disabled] .I0RXdK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.uxNlIP.S6tzPA:disabled:not(:hover) .I0RXdK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.kAoW_K{box-sizing:border-box;color:#000;text-decoration:none}.VzoZx_{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.p_5A25{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.uxNlIP.iN4eVS:not(:hover):not(:disabled) .p_5A25{fill:var(--corvid-icon-color,var(--icon-color))}.uxNlIP:hover .p_5A25,.uxNlIP [data-preview=hover] .p_5A25{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.uxNlIP.SGrXAN:hover:not(:disabled) .p_5A25{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.uxNlIP:disabled .p_5A25,.uxNlIP [data-preview=disabled] .p_5A25{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.uxNlIP.ZBuT2t:disabled:not(:hover) .p_5A25{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.p_5A25>span,.p_5A25 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.p_5A25,.p_5A25 svg,.p_5A25 svg *{fill:currentColor!important;stroke:currentColor!important}}.HMOnu5{display:inherit;height:inherit;width:auto}.HamburgerOverlay547129737__root{-archetype:paintBox;visibility:hidden;box-sizing:border-box;z-index:var(--above-all-z-index);left:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;top:var(--wix-ads-height)!important;position:fixed!important}.HamburgerOverlay547129737__overlay{box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--isMenuOpen{visibility:visible}.HamburgerOverlay547129737__root:not(.HamburgerOverlay547129737--showBackgroundOverlay){background-color:#0000}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--shouldScroll{overflow-x:hidden;overflow-y:scroll}.HamburgerOverlay547129737__scrollContent{position:relative}.OrbgmN[data-part=hamburger-overlay]{opacity:var(--hamburger-overlay-initial-opacity)}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn]{transition:opacity .4s}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterActive],.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.xdu0As{background:var(--background);border:var(--border);border-radius:var(--border-radius);box-shadow:var(--box-shadow);z-index:var(--above-all-z-index);box-sizing:border-box;visibility:hidden;inset-inline-start:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;position:fixed!important;inset-block-start:var(--wix-ads-height)!important}.oSs9UC{box-sizing:border-box;width:100%;height:100%;position:absolute;inset-block-start:0;inset-inline-start:0}.UOTM1J{visibility:visible}.xdu0As:not(.mh8_De){background-color:#0000}.vCpC6x{overflow-x:hidden;overflow-y:scroll}.mhdEAw{position:relative}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),visibility linear;opacity:1!important;visibility:visible!important}[data-hamburger-overlay-label]{display:none}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay] [data-hamburger-overlay-label]{z-index:1;cursor:pointer;display:block;position:absolute;inset:0}.EtmdIW{cursor:pointer}.gpDCD5{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--backdrop-filter:$backdrop-filter}.jv9xi4{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));backdrop-filter:var(--backdrop-filter,none);background-image:var(--bg-gradient,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.StylableHorizontalMenu3372578893__root{-archetype:paddingBox;box-sizing:border-box;width:100%;height:100%;display:flex}.StylableHorizontalMenu3372578893__root *{box-sizing:border-box}.StylableHorizontalMenu3372578893__menu{flex-wrap:var(--menu-flex-wrap,wrap);min-width:-moz-fit-content;min-width:fit-content;display:flex}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menuItem{box-sizing:border-box;height:100%;margin-top:0!important;margin-bottom:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:first-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-start:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:last-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-end:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu{height:auto!important;margin:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll{scrollbar-width:none;-ms-overflow-style:none;overflow-x:scroll}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll::-webkit-scrollbar{display:none}.StylableHorizontalMenu3372578893__menuItem{position:relative;--focus-ring-box-shadow:inset 0 0 0 2px #116dff,inset 0 0 0 4px #fff!important}.StylableHorizontalMenu3372578893__megaMenuWrapper{display:flex}.itemDepth02233374943__root{-archetype:paintBox;cursor:pointer;flex:1;text-decoration:none;display:block}.itemDepth02233374943__root.itemDepth02233374943--isHovered,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage,.itemDepth02233374943__root.itemDepth02233374943--isHovered .itemDepth02233374943__label,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage .itemDepth02233374943__label{transition:all 80ms cubic-bezier(0,0,1,1)}.itemDepth02233374943__container{-archetype:box;align-items:center;height:100%;display:flex}.itemDepth02233374943__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown;white-space:nowrap;transition:inherit}.itemDepth02233374943__itemWrapper{flex-grow:inherit}.itemDepth02233374943__positionBox{z-index:var(--position-box-z-index,47);margin:auto;display:none;position:fixed}.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn{position:absolute;left:0;right:0}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched{max-width:unset}@keyframes itemDepth02233374943__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth02233374943__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);max-height:var(--max-height,none);overflow-y:var(--overflow-y,visible);transition:border-color 80ms cubic-bezier(.25,1,.5,1),box-shadow 80ms cubic-bezier(.25,1,.5,1);animation-fill-mode:forwards}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched>.itemDepth02233374943__animationBox{width:100%}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched .itemDepth02233374943__megaMenuComp{width:100%!important}.itemDepth02233374943__alignBox{display:flex}.itemDepth02233374943__list{column-gap:calc(1px*var(--horizontalSpacing))}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox{visibility:hidden;display:block}.itemDepth02233374943__itemWrapper[data-shown]>.itemDepth02233374943__positionBox{visibility:visible;display:block}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox>.itemDepth02233374943__animationBox{animation-name:itemDepth02233374943__fadeIn}.itemDepth02233374943__megaMenuComp{direction:ltr;flex-shrink:0;margin-top:var(--containerMarginTop)!important;padding:0!important}.itemDepth02233374943__itemWrapper:not([data-hovered]) .itemDepth02233374943__megaMenuComp{display:none}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn.itemDepth02233374943--isStretched{display:block;position:fixed!important}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn>.itemDepth02233374943__animationBox{opacity:1}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn .itemDepth02233374943__megaMenuComp{display:block}.itemDepth12472627565__root{-archetype:paintBox;text-decoration:none;display:block;position:relative}.itemDepth12472627565__container{display:flex}.itemDepth12472627565__label{-archetype:text;text-overflow:clip;white-space:var(--white-space);overflow-wrap:var(--label-word-wrap);word-wrap:var(--label-word-wrap);display:block;overflow:hidden;text-align:inherit!important}.itemDepth12472627565__itemWrapper{page-break-inside:avoid;break-inside:avoid;position:relative}.itemDepth12472627565__itemWrapper:after{content:"";clear:both;display:table}.itemDepth12472627565__positionBox{position:var(--subsubmenu-box-position);display:var(--subsubmenu-box-display);top:0;left:var(--subsubmenu-box-left);right:var(--subsubmenu-box-right)}.itemDepth12472627565__positionBox[data-reverted]{left:var(--subsubmenu-box-right);right:var(--subsubmenu-box-left)}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox{display:block}@keyframes itemDepth12472627565__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth12472627565__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);animation-fill-mode:forwards;margin-top:0!important}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox>.itemDepth12472627565__animationBox{animation-name:itemDepth12472627565__fadeIn}.submenu815198092__heading .itemDepth12472627565__label{color:#000}.submenu815198092__pageWrapper{margin-left:auto!important;margin-right:auto!important}.submenu815198092__overrideWidth{width:100%!important}.submenu815198092__rowItem:last-child{margin-bottom:0!important}.submenu815198092__rowItem:first-child,.submenu815198092__rowItem+.submenu815198092__rowItem{margin-top:0}.h75ntl{display:var(--navbar-display,block);height:100%}.I9v6Rw:hover{z-index:var(--is-sticky,auto)}.Aj_PK7{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.wZrAIE{min-width:var(--min-width-override);min-height:var(--min-height-override)}.itemShared2352141355__rootContainer{height:100%}.itemShared2352141355__rootContainer.itemShared2352141355--isRow{flex-direction:row;display:flex}.itemShared2352141355__rootContainer.itemShared2352141355--isRow .itemShared2352141355__menuItem{flex-grow:1}.itemShared2352141355__accessibilityIconWrapper{width:0}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isIconShown{width:unset;margin-inline:4px 8px}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isTopLevel.itemShared2352141355--isIconShown{align-items:center;display:flex}.itemShared2352141355__accessibilityIcon{clip:rect(0 0 0 0);clip-path:inset(50%);width:0;height:0}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isIconShown{width:24px;height:24px;clip-path:unset;background:#fff}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isOpen{rotate:180deg}.ScrollButton2305195801__root{-archetype:paddingBox;cursor:pointer;opacity:0;pointer-events:none;justify-content:center;align-items:center;display:flex;overflow:hidden}.ScrollButton2305195801__root:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.ScrollButton2305195801__root.ScrollButton2305195801---side-4-left{transform:scaleX(-1)}.ScrollButton2305195801__root.ScrollButton2305195801--isVisible{opacity:1;pointer-events:auto}.ScrollButton2305195801__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown;min-width:1px;max-width:100%;max-height:100%}.ScrollButton2305195801__icon>svg{width:inherit;height:inherit}.ScrollControls2015960785__root{padding-top:inherit;padding-bottom:inherit;border:inherit;display:var(--scroll-controls-display,flex);pointer-events:none;border-color:#0000;justify-content:space-between;position:absolute;inset:0}</style> | |
| 192 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_StylableButton].37250527.min.css">.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 193 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInputListModal].80f46385.min.css">.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}</style> | |
| 194 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap-responsive.4e8a21db.min.css">.H4AHlN{clip-path:inset(50%);width:24px;height:24px;position:absolute}.H4AHlN:focus,.H4AHlN:active{clip-path:unset;top:50%;right:0;transform:translateY(-50%)}.H4AHlN.Ln3X5V{transform:translateY(-50%)rotate(180deg)}.RHcakQ,.CUYeWp{height:100%;width:initial;box-sizing:border-box;position:relative;overflow:visible}.RHcakQ[data-state~=header] a,[data-state~=header].CUYeWp a,.RHcakQ[data-state~=header] div,[data-state~=header].CUYeWp div{cursor:default!important}.RHcakQ .qMvpu5,.CUYeWp .qMvpu5{width:100%;height:100%;display:inline-block}.CUYeWp{display:var(--display);--display:inline-block;cursor:pointer;font:var(--fnt,var(--font_1))}.CUYeWp .EWeavx{padding:0 var(--pad,5px)}.CUYeWp .wGxoBM{color:rgb(var(--txt,var(--color_15,color_15)));transition:var(--trans,color .4s ease 0s);padding:0 10px;display:inline-block}.CUYeWp[data-state~=drop]{width:100%;display:block}.CUYeWp[data-state~=drop] .wGxoBM{padding:0 .5em}.CUYeWp[data-state~=over] .wGxoBM,.CUYeWp[data-state~=link]:hover .wGxoBM{color:rgb(var(--txth,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.CUYeWp[data-state~=selected] .wGxoBM{color:rgb(var(--txts,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.H5oXMS{overflow-x:hidden}.H5oXMS .nzOiVF{flex-direction:column;width:100%;height:100%;display:flex}.H5oXMS .nzOiVF .sPUR9o{flex:1}.H5oXMS .nzOiVF .U7fR3t{width:calc(100% - (var(--menuTotalBordersX,0px)));height:calc(100% - (var(--menuTotalBordersY,0px)));white-space:nowrap;overflow:visible}.H5oXMS .nzOiVF .U7fR3t .CSt_RJ,.H5oXMS .nzOiVF .U7fR3t .NgQZsf{direction:var(--menu-direction);text-align:var(--menu-align,var(--align));display:inline-block}.H5oXMS .nzOiVF .U7fR3t .NV2Ozs{width:100%;display:block}.H5oXMS .dva_z0{z-index:99999;opacity:1;text-align:var(--submenus-align,var(--align));direction:var(--submenus-direction);display:block}.H5oXMS .dva_z0 .fYO6yN{display:inherit;white-space:nowrap;width:auto;visibility:inherit;overflow:visible}.H5oXMS .dva_z0.mmODQd{visibility:visible;transition:visibility 0s .2s}.H5oXMS .dva_z0 .NgQZsf{display:inline-block}.H5oXMS .YStAo7{display:none}.MV6Z4B>nav{position:absolute;inset:0}.MV6Z4B .U7fR3t{position:absolute}.MV6Z4B .dva_z0{visibility:hidden;margin-top:7px;position:absolute}.MV6Z4B .dva_z0[data-dropMode="dropUp"]{margin-top:0;margin-bottom:7px}.MV6Z4B .fYO6yN{background-color:rgba(var(--bgDrop,var(--color_11,color_11)),var(--alpha-bgDrop,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ETqrjz .g0IvTF{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));position:absolute;inset:0;overflow:hidden}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}</style> | |
| 195 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Section].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 196 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[RefComponent].98cd6e5f.min.css">.S829f_{pointer-events:var(--ref-container-pointer-events)!important}.S829f_>*{pointer-events:auto}</style> | |
| 197 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Container_ResponsiveBox].c25ed6c0.min.css">.EtmdIW{cursor:pointer}.HFEOE3{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));--overflow-wrapper-border-radius:var(--rd);--backdrop-filter:$backdrop-filter}.NaeT1r{box-shadow:none!important;background:0 0!important;border:none!important}.NYfD3h{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));background-image:var(--bg-gradient,none);backdrop-filter:var(--backdrop-filter,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.jdJeEr{width:unset!important;min-width:unset!important;max-width:unset!important;height:unset!important;min-height:unset!important;max-height:unset!important;z-index:unset!important;margin:0!important;padding:0!important;position:absolute!important;inset:0!important}</style> | |
| 198 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[FooterSection].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 199 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[MenuContainer_Responsive].a710ff33.min.css">.vO4l6e{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.vO4l6e.Wy7QN0{opacity:1;visibility:visible}.vO4l6e[data-undisplayed=true]{display:none}.vO4l6e:not([data-is-mesh]) .mTXgrW,.vO4l6e:not([data-is-mesh]) ._Cv0fj{position:absolute;inset:0}.F02QWW{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.F02QWW.boScYg{display:none}body.device-mobile-optimized .F02QWW,:host(.device-mobile-optimized) .F02QWW{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.boScYg,:host(.device-mobile-optimized) .vO4l6e.boScYg{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.cdbKA3,:host(.device-mobile-optimized) .vO4l6e.cdbKA3{height:100vh}body:not(.device-mobile-optimized) .vO4l6e.cdbKA3,:host(:not(.device-mobile-optimized)) .vO4l6e.cdbKA3{height:100vh}.KX5JJ6.cdbKA3{height:calc(var(--menu-height) - var(--wix-ads-height))}.KX5JJ6.cdbKA3>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.vO4l6e.cdbKA3{top:0}.vO4l6e.B_nptD{z-index:calc(var(--above-all-z-index) - 1)}._Cv0fj{height:100%}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}._TdTo8{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}._TdTo8.mYq8K5{opacity:1;visibility:visible}._TdTo8[data-undisplayed=true]{display:none}._TdTo8:not([data-is-mesh]) ._SG1a6,._TdTo8:not([data-is-mesh]) .V1WvhC{position:absolute;inset:0}.KyTZlx{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.KyTZlx.rL1cmJ{display:none}body.device-mobile-optimized .KyTZlx,:host(.device-mobile-optimized) .KyTZlx{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.rL1cmJ,:host(.device-mobile-optimized) ._TdTo8.rL1cmJ{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.ci1BOD,:host(.device-mobile-optimized) ._TdTo8.ci1BOD{height:100vh}body:not(.device-mobile-optimized) ._TdTo8.ci1BOD,:host(:not(.device-mobile-optimized)) ._TdTo8.ci1BOD{height:100vh}.dz6k8U.ci1BOD{height:calc(var(--menu-height) - var(--wix-ads-height))}.dz6k8U.ci1BOD>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}._TdTo8.ci1BOD{top:0}.qINwWP{background-color:rgba(var(--containerBackground,var(--color_11,color_11)),var(--alpha-containerBackground,1));position:absolute;inset:0}.dz6k8U,.V1WvhC{height:100%}</style> | |
| 200 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[HeaderSection].cdbd0494.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}.yEgiaI{margin-top:var(--padding-top,0);margin-right:var(--padding-right,0);margin-bottom:var(--padding-bottom,0);margin-left:var(--padding-left,0)}</style> | |
| 201 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Repeater_Responsive].4a747053.min.css">.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}.ArRNfA{--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--container-corvid-border-color:rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0));direction:var(--wix-opt-in-direction,ltr);background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));border-style:solid;border-color:var(--container-corvid-border-color,rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0)));background-image:var(--bg-gradient,none);box-shadow:var(--boxShadow,0 0 0 #0000);border-width:var(--borderWidth,0px);border-radius:var(--borderRadius,0)}</style> | |
| 202 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[PageSections].7dbf3cd4.min.css">.ooGRUo{display:contents}</style> | |
| 203 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css">.chBh7{overflow:hidden}.UkML6{width:100%;height:100%;position:relative;overflow:hidden}.UkML6:-webkit-full-screen{min-height:auto!important}.UkML6:-moz-full-screen{min-height:auto!important}.UkML6:fullscreen{min-height:auto!important}.mqeQ0{visibility:hidden} | |
| 204 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css.map*/</style> | |
| 205 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css">.QrIus{height:auto!important}.bsFmQ{overflow:hidden!important} | |
| 206 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css.map*/</style> | |
| 207 | +<title>LUXUEUX 5 1/2 À SAINT CHARLES BORROMEE</title> | |
| 208 | + <meta name="description" content="eb3e7ea4-c49e-4483-8513-012cdbf3f492"/> | |
| 209 | + <link rel="canonical" href="https://www.leshabitationssf.com/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-"/> | |
| 210 | + <meta name="robots" content="index"/> | |
| 211 | + <meta property="og:title" content="LUXUEUX 5 1/2 À SAINT CHARLES BORROMEE"/> | |
| 212 | + <meta property="og:description" content="eb3e7ea4-c49e-4483-8513-012cdbf3f492"/> | |
| 213 | + <meta property="og:image" content="https://static.wixstatic.com/media/5ae170_53dc56e7e4dd47b7a01abb7ea1bdc238~mv2.png/v1/fill/w_5712,h_4284,al_c/IMG_7389.HEIC"/> | |
| 214 | + <meta property="og:image:width" content="5712"/> | |
| 215 | + <meta property="og:image:height" content="4284"/> | |
| 216 | + <meta property="og:url" content="https://www.leshabitationssf.com/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-"/> | |
| 217 | + <meta property="og:site_name" content="SF Habitations"/> | |
| 218 | + <meta property="og:type" content="website"/> | |
| 219 | + <script type="application/ld+json">{}</script> | |
| 220 | + <script type="application/ld+json">{}</script> | |
| 221 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-" hreflang="x-default"/> | |
| 222 | + <link rel="alternate" href="https://www.leshabitationssf.com/en/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-" hreflang="en-us"/> | |
| 223 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-" hreflang="fr-ca"/> | |
| 224 | + <meta name="google-site-verification" content="10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM"/> | |
| 225 | + <meta name="twitter:card" content="summary_large_image"/> | |
| 226 | + <meta name="twitter:title" content="LUXUEUX 5 1/2 À SAINT CHARLES BORROMEE"/> | |
| 227 | + <meta name="twitter:description" content="eb3e7ea4-c49e-4483-8513-012cdbf3f492"/> | |
| 228 | + <meta name="twitter:image" content="https://static.wixstatic.com/media/5ae170_53dc56e7e4dd47b7a01abb7ea1bdc238~mv2.png/v1/fill/w_5712,h_4284,al_c/IMG_7389.HEIC"/> | |
| 229 | +<script>;(function(){function isSamePageAnchor(e){let t=e.target,r=t&&t.closest&&t.closest("a[data-anchor]");if(!r||"_blank"===r.getAttribute("target"))return!1;let a=r.getAttribute("href");if(!a)return!1;try{let e=new URL(a,location.href);return e.origin===location.origin&&e.pathname===location.pathname}catch(e){return!1}};var guard=(function preventSamePageAnchorReloadBeforeHydration(e){e.metaKey||e.ctrlKey||isSamePageAnchor(e)&&e.preventDefault()});window.__tbAnchorGuard=guard;document.addEventListener('click',guard,true)})();</script> | |
| 230 | +<script type="speculationrules">{"prefetch":[{"tag":"mpa-prefetch-eager","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":"/copy-of-location/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-"}}]},"eagerness":"eager"}]}</script> | |
| 231 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidget.min.css">.sSAtY3z.ofOhStR--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.squ26My{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.stbqc1u.oJ8EvyQ--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.Q8TtId{padding:0;position:relative}.Q8TtId>svg{bottom:0;left:0;position:absolute!important;right:0;top:0}.aZhaoZ{opacity:0}.s1dvzA{display:block;outline:none;text-decoration:none;width:100%}.s1dvzA,.s1dvzA svg{overflow:visible}.js-focus-visible .s1dvzA:focus{box-shadow:none;position:relative}.js-focus-visible .s1dvzA:focus:after{box-shadow:inset 0 0 1px 1px #3899ec,inset 0 0 0 2px hsla(0,0%,100%,.9);content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.s1dvzA circle,.s1dvzA path,.s1dvzA polygon,.s1dvzA polyline,.s1dvzA rect{fill:rgb(var(--cartWidget_cartIcon,var(--wix-color-8)))}.s1dvzA text{fill:rgb(var(--cartWidget_cartIconText,var(--wix-color-8)));font:var(--cartWidget_cartIconTextFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-1)));font:var(--cartWidget_cartIconNumberFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx.M846Y_{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-8)))}.s1dvzA .ptVJi9{fill:rgba(var(--cartWidget_cartIconBubble,var(--wix-color-8)))}.tx4Jvn text.uxskpx{font-size:50px!important}.tx4Jvn.qZfbbY .uxskpx{font-size:45px!important}.tx4Jvn.fzGViX .uxskpx{font-size:37px!important}.DRb0Pe.qZfbbY .uxskpx{font-size:80px!important}.DRb0Pe.fzGViX .uxskpx{font-size:58px!important}.WWgVyT.qZfbbY .uxskpx{font-size:60px!important}.WWgVyT.fzGViX .uxskpx{font-size:45px!important}.XPTyZQ.qZfbbY .uxskpx{font-size:60px!important}.XPTyZQ.fzGViX .uxskpx{font-size:40px!important}.KpNISr.qZfbbY .uxskpx{font-size:70px!important}.KpNISr.fzGViX .uxskpx{font-size:60px!important}.l3royO.qZfbbY .uxskpx{font-size:80px!important}.l3royO.fzGViX .uxskpx{font-size:60px!important}.hAeODa.qZfbbY .uxskpx{font-size:75px}.hAeODa.fzGViX .uxskpx{font-size:55px}.spQjTI.qZfbbY .uxskpx{font-size:75px!important}.spQjTI.fzGViX .uxskpx{font-size:59px!important}.yA1DNe.qZfbbY .uxskpx{font-size:80px!important}.yA1DNe.fzGViX .uxskpx{font-size:65px!important}.Rl4inp.qZfbbY .uxskpx{font-size:75px!important}.Rl4inp.fzGViX .uxskpx{font-size:60px!important}.of9Ja5.qZfbbY .uxskpx{font-size:80px!important}.of9Ja5.fzGViX .uxskpx{font-size:60px!important}</style> | |
| 232 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidget.min.css">.sWmh0WA{position:relative;width:100%}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-6-center img{object-position:center center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-4-left img{object-position:left center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-5-right img{object-position:right center!important}.s__0oqQvY{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.sQHoZUY.orM9hcb--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.slGztSx{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}@media (forced-colors:active){.slGztSx{border:1px solid ButtonText!important}.slGztSx:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sMnC5St,.slGztSx:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sMnC5St{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}.sVmrY5m{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}@media (forced-colors:active){.sVmrY5m{border:1px solid ButtonText!important}.sVmrY5m:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sVmrY5m:not(:focus-visible):hover,.s__5lI9gM{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.s__5lI9gM{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}.sYP_tlR{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.sRwjrN7.och83_y--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.sA7jId1,.sQ47qqC{outline:0}.sf2MeN5 .snFVMUZ{font-size:14px}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-5-basic{background-color:#000;border-color:#000;color:#fff}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-14-basicSecondary{border-color:#000;color:#000}.sf2MeN5.otkPJbq---type-4-text:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-7-primary{color:#000}.s__3jxMoq{display:inline-block;position:relative}.s__3jxMoq.ouhSmpM--fluid{display:block;width:100%}.sONxQKD{background-color:#fff;border-color:#000;border-radius:initial;border-style:solid;border-width:1px;padding:initial}.soEFkgN{border-style:solid;height:0;margin:5px;position:absolute;width:0}.swpyXyw[data-placement*=right].sVK_8pY{padding-left:5px}.swpyXyw[data-placement*=right].sVK_8pY .soEFkgN{border-color:transparent #000 transparent transparent;border-width:5px 5px 5px 0;left:-5px;margin-left:5px;margin-right:0}.swpyXyw[data-placement*=left].sVK_8pY{padding-right:5px}.swpyXyw[data-placement*=left].sVK_8pY .soEFkgN{border-color:transparent transparent transparent #000;border-width:5px 0 5px 5px;margin-left:0;margin-right:5px;right:-5px}.swpyXyw[data-placement*=bottom].sVK_8pY{padding-top:5px}.swpyXyw[data-placement*=bottom].sVK_8pY .soEFkgN{border-color:transparent transparent #000 transparent;border-width:0 5px 5px 5px;margin-bottom:0;margin-top:5px;top:-5px}.swpyXyw[data-placement*=top].sVK_8pY{padding-bottom:5px}.swpyXyw[data-placement*=top].sVK_8pY .soEFkgN{border-color:#000 transparent transparent transparent;border-width:5px 5px 0 5px;bottom:-5px;margin-bottom:5px;margin-top:0}.s__72lfJk{position:relative}.sgKo7D0{--submitbuttonwut805068570-explicit-padding:11px;--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-padding-block-start:var(--submitbuttonwut805068570-explicit-padding);--wix-ui-tpa-button-padding-block-end:var(--submitbuttonwut805068570-explicit-padding);min-width:0!important;padding-inline:min(5%,15px)!important}.sgKo7D0 span{line-height:var(--submitbuttonwut805068570-submitButtonFont-line-height,1.2)!important}.sasFW9G{width:100%}.sEgWCPr{min-width:100px!important}.sCCUGm1{--wix-ui-tpa-text-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-text-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-text-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight)}.sCCUGm1:hover,.skxLJE4{color:rgb(var(--wix-forms-formSubmitButtonColorHover,var(--wix-color-5)))!important}.sqrHXDy{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity)}.s__637HSU{align-self:end;width:100%}.sYsuLUN{display:flex;height:100%;width:100%}.s__0wMXKP{display:flex;justify-content:space-between}.sAX9qX_{min-width:100px}.sCjRp4V{text-align:center}.sdvxq7V{height:15px!important;width:15px!important}.sCCUGm1 .sdvxq7V circle,.sgKo7D0 .sdvxq7V circle{stroke:rgb(var(--wix-forms-formSubmitButtonColor,var(--wix-color-1)))}.stkCIdj{height:0;visibility:hidden}.s__5wusy3{gap:var(--submitbuttonwut805068570-wix-forms-formRowSpacing,24px)}.sHBmGR5{pointer-events:none}@media (forced-colors:active){.sgKo7D0{border:1px solid ButtonText!important}.sCCUGm1:focus-visible,.sgKo7D0:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sgKo7D0.sqrHXDy,.sgKo7D0:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sFyI5ne .sONxQKD{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.s__3DOwO7{align-items:center;cursor:pointer;display:inline-flex}.sXyzDDh,.siwI922{flex-shrink:0}.s__3DOwO7.oX5PGLp--disabled{cursor:default}.s__3DOwO7[disabled]{pointer-events:none}.s__5mJsIL{--wut-error-color:rgb(var(--wix-ui-tpa-error-message-wrapper-error-color,223,49,49));--ErrorMessageWrapper329640366-transparent:0,0,0,0}.s__5mJsIL:not(.oKPjoIj--visible){margin-bottom:var(--wix-ui-tpa-error-message-wrapper-min-message-height)}.s__5mJsIL.oKPjoIj--visible{margin-bottom:calc(var(--wix-ui-tpa-error-message-wrapper-min-message-height, 28px) - 20px - 8px)}.sT4cyzB{align-items:flex-start;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-transparent)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-transparent)));border-radius:var(--wix-ui-tpa-error-message-wrapper-border-radius,4px);border-style:solid;border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,0);color:var(--wut-error-color);display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:1.4;margin-top:8px;min-height:20px}.sDw6n7W{flex-shrink:0;margin-inline-end:2px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sT4cyzB{--ErrorMessageWrapper329640366-border-color:223,49,49,0.2;--ErrorMessageWrapper329640366-background-color:253,243,243;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-background-color)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-border-color)));border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,1px);padding:8px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sDw6n7W{margin-inline-end:4px}.s__8wUiio{display:flex;justify-content:space-between;margin-top:8px}.s__8wUiio .sT4cyzB{margin-top:0;margin-inline-end:12px}.sigpKjl{--TextField2598911325-default-main-border-width:1px}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-ui-tpa-text-field-error-color,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-ui-tpa-text-field-error-color-rgb,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-ui-tpa-text-field-error-color-opacity);--wix-ui-tpa-error-message-wrapper-min-message-height:var(--wix-ui-tpa-text-field-error-message-min-height)}.smyXERm{align-items:center;background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-color:rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:0;box-sizing:border-box;display:flex;font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,var(--wix-font-Body-M-line-height));padding:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,var(--wix-font-Body-M-line-height));text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.stVd2iH{margin-bottom:8px}#SITE_CONTAINER.focus-ring-active .sigpKjl .smyXERm:focus-within,#SITE_CONTAINER.focus-ring-active .sigpKjl .sq3uuYJ:focus:not(:hover){box-shadow:0 0 0 1px #fff,0 0 0 3px #116dff!important;z-index:999}.smyXERm input:-webkit-autofill{-webkit-text-fill-color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));-webkit-box-shadow:0 0 0 1.5em rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1))) inset!important}.smyXERm.oYEaGDN---theme-3-box{border:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.oYEaGDN---theme-4-line{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-4-line{--TextField2598911325-transparent:0,0,0,0;background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--TextField2598911325-transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.o__6t2qui--focus,.smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-hover-border-color,var(--wix-ui-tpa-text-field-main-border-color,var(--wix-color-5))));border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px);border-width:var(--wix-ui-tpa-text-field-hover-border-width,var(--TextField2598911325-default-main-border-width,1px))}.smyXERm.oYEaGDN---theme-3-box.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-3-box:hover,.smyXERm.oYEaGDN---theme-4-line.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-4-line:hover{background-color:rgb(var(--wix-ui-tpa-text-field-hover-background-color-rgb,var(--wix-ui-tpa-text-field-main-background-color-rgb,transparent)),calc(var(--wix-ui-tpa-text-field-hover-background-color-opacity, var(--wix-ui-tpa-text-field-main-background-color-opacity, 1))*var(--wix-ui-tpa-text-field-hover-background-opacity, 1)))}.sigpKjl.oYEaGDN--disabled .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-disabled-border-color-rgb,var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-disabled-border-color-opacity, var(--wix-ui-tpa-text-field-main-border-color-opacity, 1))*.6))}.sigpKjl.oYEaGDN--disabled .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1)))}.sigpKjl.oYEaGDN--success .smyXERm{border-color:rgb(var(--wst-system-success-color-rgb,0,130,80),.6)}.sigpKjl.oYEaGDN--success .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--success .smyXERm:hover{border-color:#008250}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb,223,49,49)),.6)}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage .smyXERm{--TextField2598911325-wix-ui-tpa-text-field-border-color-internal:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb)));border-color:var(--TextField2598911325-wix-ui-tpa-text-field-border-color-internal,var(--wut-error-color,#df3131))!important}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,223,49,49))}.sigpKjl.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-prefix-padding-inline-end,4px)}.smyXERm .sjImZoO{background-color:transparent;border:0;box-sizing:border-box;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,24px);margin:0;min-width:0;padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-start:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,12px);vertical-align:middle;width:100%}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-readonly-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,24px);text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,0);padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,0)}.smyXERm.o__6t2qui--focus .sjImZoO,.smyXERm:hover .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-hover-text-color,var(--wix-ui-tpa-text-field-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sigpKjl.oYEaGDN--disabled .sfgvi8T svg,.smyXERm.o__6t2qui--disabled .sjImZoO{fill:rgb(var(--wix-ui-tpa-text-field-suffix-disabled-color,var(--wst-system-disabled-color-rgb)));color:rgb(var(--wix-ui-tpa-text-field-main-text-disabled-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.smyXERm.o__6t2qui--focus .sjImZoO{outline:0}.smyXERm .sjImZoO::selection{background:rgb(var(--wix-ui-tpa-text-field-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-field-main-text-color-opacity, 1)*.2))}.sisjT9x{align-items:center;display:flex;justify-content:flex-end;margin:0 -4px;padding:0;padding-inline-start:var(--wix-ui-tpa-text-field-suffix-padding-inline-start,8px);white-space:nowrap}.sisjT9x.oYEaGDN--arrows{height:100%}.smyXERm.oYEaGDN---theme-3-box{padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,12px)}.sYMteoM{align-items:center;display:flex;height:100%}.saZlyzg{display:inline-block;height:100%;width:4px}.sigpKjl .sxYAMB9{--wix-ui-tpa-icon-button-icon-color:var(--wix-ui-tpa-text-field-main-text-color,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-rgb:var(--wix-ui-tpa-text-field-main-text-color-rgb,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-opacity:var(--wix-ui-tpa-text-field-main-text-color-opacity);border-radius:20px;display:block;outline:0}.sigpKjl .sxYAMB9:focus,.sigpKjl .sxYAMB9:hover{background-color:transparent;opacity:1}.sfgvi8T{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));display:flex;height:100%}.smyXERm .sjImZoO::-webkit-input-placeholder,.smyXERm .sjImZoO::placeholder{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:var(--wst-paragraph-2-line-height);--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:var(--wst-paragraph-2-font-size);--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-placeholder-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));font-family:var(--wix-ui-tpa-text-field-placeholder-font-family,var(--wst-paragraph-2-overriden-font-family));font-size:var(--wix-ui-tpa-text-field-placeholder-font-size,var(--wst-paragraph-2-overriden-font-size));font-style:var(--wix-ui-tpa-text-field-placeholder-font-style,var(--wst-paragraph-2-overriden-font-style));font-variant:var(--wix-ui-tpa-text-field-placeholder-font-variant,var(--wst-paragraph-2-overriden-font-variant));font-weight:var(--wix-ui-tpa-text-field-placeholder-font-weight,var(--wst-paragraph-2-overriden-font-weight));line-height:var(--wix-ui-tpa-text-field-placeholder-font-line-height,var(--wst-paragraph-2-overriden-font-line-height));text-decoration:var(--wix-ui-tpa-text-field-placeholder-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration))}.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::-webkit-input-placeholder,.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::placeholder{color:rgb(var(--wix-ui-tpa-text-field-disabled-placeholder-color,var(--wix-color-29)))}.sdcwRYb{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.4;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));display:inline-block;font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));margin-bottom:8px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sigpKjl.oYEaGDN--disabled .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-disabled-label-color,var(--wix-color-29)))}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-label-font-size,14px);font-style:var(--wix-ui-tpa-text-field-readonly-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-label-font-line-height,1.4);text-decoration:var(--wix-ui-tpa-text-field-readonly-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sn_gi7t{color:rgb(var(--wix-ui-tpa-text-field-char-count-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));display:flex;font-family:var(--wix-ui-tpa-text-field-char-count-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-char-count-font-size,14px);font-style:var(--wix-ui-tpa-text-field-char-count-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-char-count-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-char-count-font-weight,var(--wix-font-Body-M-weight));justify-content:flex-end;line-height:var(--wix-ui-tpa-text-field-char-count-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-char-count-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage.oYEaGDN--hasErrorMessage .sn_gi7t{margin-top:0}.sXIeGiQ{display:none}.shfTOvJ{color:#df3131!important}.sW0lLQo{color:rgb(var(--wst-system-success-color-rgb,0,130,80))}.s__4zN_uk{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-4)));display:flex;margin-inline-start:var(--wix-ui-tpa-text-field-padding-inline-start,12px)}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-4)))}.s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-5)))}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-5)))}.smyXERm.oYEaGDN---theme-4-line .s__4zN_uk{margin-inline-start:0}.sSoKqc1{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.smyXERm input[type=number]::-webkit-inner-spin-button,.smyXERm input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.smyXERm input[type=number]{appearance:textfield}.smyXERm input{border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0)}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm input{border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0)}.smyXERm.o__6t2qui--focus input,.smyXERm:hover input{border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px)}.s__1MuoJD{display:flex;flex-direction:column;padding-bottom:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px);padding-top:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px)}.sFd_hFT{all:unset;cursor:pointer;height:16px;line-height:16px}.sigpKjl .sHJyM6t{color:rgb(var(--wix-ui-tpa-text-field-helper-text-color,var(--wix-color-4)));display:block;font-family:var(--wix-ui-tpa-text-field-helper-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-helper-text-font-size,14px);font-style:var(--wix-ui-tpa-text-field-helper-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-helper-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-helper-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-helper-text-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-helper-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sq3uuYJ{cursor:pointer;display:block;height:calc(max(24px,1em));width:calc(max(24px,1em))}.sq3uuYJ.oYEaGDN--disabled{cursor:default}.sE2SOPk{position:relative;width:100%}.sfXnMJy{font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,1.4);padding-top:3.6px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wix-color-4)));font:inherit;margin-bottom:0;overflow:hidden;padding-top:0;position:absolute;text-overflow:ellipsis;top:50%;transform:translateY(-50%);transition:all .1s ease-out;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;-ms-transition:all .1s ease-out;white-space:nowrap;width:calc(100% - 20px)}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-4)));font:inherit}.sigpKjl.oYEaGDN--hasFloatingLabelActive .sdcwRYb.oYEaGDN---style-8-floating{font-size:.875em;padding-top:2px;top:6px;transform:translateY(0)}.sigpKjl.oYEaGDN--hasFloatingLabel .sdcwRYb.oYEaGDN---theme-3-box{padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .sjImZoO{padding:0 0 6px;padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding:0 0 4px;padding-inline-start:0;text-indent:0}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:4px}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .smyXERm .sjImZoO{padding-inline-end:4px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box{padding-inline-end:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .s__4zN_uk{margin-inline-start:20px}.sjSK_mi{--Text1662509933-primary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-5)));--Text1662509933-secondary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-4)))}.sjSK_mi.ot7R_W1---priority-7-primary{color:var(--wut-text-color,var(--Text1662509933-primary-color))}.sjSK_mi.ot7R_W1---priority-9-secondary{color:var(--wut-placeholder-color,var(--Text1662509933-secondary-color))}.sjSK_mi.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.5em)}.sjSK_mi.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,2em)}.sjSK_mi.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,32px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.25em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,20px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.4em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.42em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,14px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.72em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.s__96XWLA{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sGQhrdY{--Spinner2369530196-diameter:var(--wix-ui-tpa-spinner-diameter,50px);animation:Spinner2369530196__rotate 2s linear infinite;height:var(--Spinner2369530196-diameter);left:auto;top:auto;width:var(--Spinner2369530196-diameter)}.sIOh1bP{stroke:rgb(var(--wix-ui-tpa-spinner-path-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,4px),10px);animation:Spinner2369530196__dash 1.5s ease-in-out infinite}.sGQhrdY.okHrCLG--slim .sIOh1bP{stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,1px),10px)}.sGQhrdY.okHrCLG--centered{left:calc(50% - var(--Spinner2369530196-diameter)/2);position:absolute;top:calc(50% - var(--Spinner2369530196-diameter)/2)}.sGQhrdY.okHrCLG--static,.sGQhrdY.okHrCLG--static .sIOh1bP{animation:none}@keyframes Spinner2369530196__rotate{to{transform:rotate(1turn)}}@keyframes Spinner2369530196__dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.sCptFO_{--SectionNotification1619105799-border-radius:2px;--SectionNotification1619105799-main-vertical-padding:9px;--SectionNotification1619105799-main-compact-vertical-padding:5px;--SectionNotification1619105799-main-left-padding:12px;--SectionNotification1619105799-main-right-padding:16px;--SectionNotification1619105799-content-padding:8px;--SectionNotification1619105799-line-height:20px;--SectionNotification1619105799-default-text-color:0,0,0;--SectionNotification1619105799-default-background-color:0,0,0;--SectionNotification1619105799-success-color:0,130,80;--SectionNotification1619105799-success-icon-color:rgb(var(--SectionNotification1619105799-success-color));--SectionNotification1619105799-wst-background-color:var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-background-color));--SectionNotification1619105799-wired-text-color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));--SectionNotification1619105799-wired-background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),0.05));background-color:#fff;border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));display:flex;height:100%;width:100%}.s_dGes_{background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),.05));border:1px solid hsla(0,0%,100%,.4);border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color))));display:flex;flex:1;flex-wrap:wrap;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;justify-content:center;padding:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-right-padding) var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-left-padding)}.syaQqqO{flex:1;flex-direction:row;padding:6px 0}.sW6Rvh9,.syaQqqO{align-items:center;display:flex}.sW6Rvh9{flex-direction:row;justify-content:center;margin:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-content-padding)}.sW6Rvh9:empty{display:none}.sCWNyRW{height:20px;transform:translateX(calc(-1*(var(--SectionNotification1619105799-content-padding)/2)))}.sCptFO_.oea4HGw--rtl .sCWNyRW{transform:translateX(calc((var(--SectionNotification1619105799-content-padding)/2)))}.sCWNyRW svg{fill:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));color:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));height:var(--SectionNotification1619105799-line-height)}.seJHu5h{flex:1;line-height:var(--SectionNotification1619105799-line-height);margin:0;min-width:200px}.seJHu5h:first-child{margin:0}.sRbY2lp{margin:0 calc(var(--SectionNotification1619105799-content-padding)/2)}.sCptFO_.oea4HGw--error .s_dGes_{background-color:rgb(223,49,49,.1)}.sCptFO_.oea4HGw--alert .s_dGes_{background-color:rgb(255,182,0,.1)}.sCptFO_.oea4HGw--wired{background-color:transparent}.sCptFO_.oea4HGw--wired .s_dGes_{background-color:var(--SectionNotification1619105799-wired-background-color);color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--success .s_dGes_{background-color:rgb(var(--SectionNotification1619105799-success-color),.1)}.sCptFO_.oea4HGw--success .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--error .sCWNyRW svg[fill=currentColor]{color:#df3131}.sCptFO_.oea4HGw--success .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw---size-7-compact .s_dGes_{padding-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);padding-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.sCptFO_.oea4HGw---size-7-compact .sW6Rvh9{margin-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);margin-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.svkvpiH{--WowImage1942816733-transparent:0,0,0,0;--WowImage1942816733-errorTextColor:255,255,255;display:flex;height:100%;position:relative}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain{width:100%}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain>*{align-items:center;border:inherit;border-radius:inherit;display:flex;justify-content:center}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain img{border:inherit;border-radius:inherit;height:unset!important;max-height:100%;max-width:100%;width:unset!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--verticalContainer img{width:min(var(--wut-source-width,100%),100%)!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--horizontalContainer img{height:min(var(--wut-source-height,100%),100%)!important}.svkvpiH.oTSGO_X--noImage{background-color:rgb(var(--wix-color-5),.2)}.svkvpiH img{vertical-align:middle}.svkvpiH.oTSGO_X--focalPoint img{object-position:var(--WowImage1942816733-focalPointX,0) var(--WowImage1942816733-focalPointY,0)}.svkvpiH.oTSGO_X---resize-7-contain .sALFxTu{object-fit:contain}.svkvpiH.oTSGO_X---resize-5-cover .sALFxTu{object-fit:cover}.svkvpiH.oTSGO_X--fluid .sALFxTu{height:100%;overflow:hidden;width:100%}.svkvpiH:not(.oTSGO_X--stretchImage){align-items:center}.svkvpiH.oTSGO_X--fluid:not(.oTSGO_X--stretchImage) .sALFxTu,.svkvpiH:not(.oTSGO_X--stretchImage) .sALFxTu{height:min(var(--wut-source-height,100%),100%);margin:0 auto;width:min(var(--wut-source-width,100%),100%)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom{overflow:hidden}.svkvpiH.oTSGO_X---hoverEffect-4-zoom .sALFxTu{overflow:initial;transform:scale(calc(100/107)) translate(-3.5%,-3.5%);transition:all .5s cubic-bezier(.18,.73,.63,1)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom:hover .sALFxTu{transform:scale(1) translate(-3.5%,-3.5%)}.svkvpiH.oTSGO_X---hoverEffect-6-darken:hover .sALFxTu{filter:brightness(85%) contrast(115%)}.svkvpiH:not(.oTSGO_X--isError){background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--WowImage1942816733-transparent)));border:var(--wix-ui-tpa-wow-image-border-width,0) solid rgb(var(--wix-ui-tpa-wow-image-border-color,var(--WowImage1942816733-transparent)));border-radius:var(--wix-ui-tpa-wow-image-border-radius,0);overflow:hidden}.svkvpiH:not(.oTSGO_X--isError).oTSGO_X--noImage{background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--wix-color-5),.2))}.svkvpiH .sALFxTu{opacity:var(--wix-ui-tpa-wow-image-image-opacity,1)}.svkvpiH.oTSGO_X--isError{background-color:rgb(var(--wix-color-2));position:relative}.svkvpiH.oTSGO_X--isError img{display:none}.svkvpiH .s__6u_3KK{align-items:center;background:rgb(0,0,0,.6);display:flex;flex-direction:column;height:100%;justify-content:center;position:absolute;width:100%;z-index:1}.sCRLHt8{--wix-ui-tpa-text-main-text-color:var(--WowImage1942816733-errorTextColor),1;--wix-ui-tpa-text-main-text-color-rgb:var(--WowImage1942816733-errorTextColor);--wix-ui-tpa-text-main-text-color-opacity:1;--wix-ui-tpa-text-main-text-font-text-decoration:var(--wix-ui-tpa-picker-font-style-text-decoration,var(--wix-font-Body-M-text-decoration));--wix-ui-tpa-text-main-text-font-line-height:var(--wix-ui-tpa-picker-font-style-line-height,1.5em);--wix-ui-tpa-text-main-text-font-family:var(--wix-ui-tpa-picker-font-style-family,var(--wix-font-Body-M-family));--wix-ui-tpa-text-main-text-font-size:var(--wix-ui-tpa-picker-font-style-size,14px);--wix-ui-tpa-text-main-text-font-style:var(--wix-ui-tpa-picker-font-style-style,var(--wix-font-Body-M-style));--wix-ui-tpa-text-main-text-font-variant:var(--wix-ui-tpa-picker-font-style-variant,var(--wix-font-Body-M-variant));--wix-ui-tpa-text-main-text-font-weight:var(--wix-ui-tpa-picker-font-style-weight,var(--wix-font-Body-M-weight))}.sPlOVIi{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sqE7FxN{color:rgb(var(--WowImage1942816733-errorTextColor))}.s__0hdo8Y{background-color:rgb(0,0,0,.6);display:none;height:100%;left:0;position:absolute;top:0;width:100%}.svkvpiH.oTSGO_X--loadSpinner:not(.oTSGO_X--loaded) .s__0hdo8Y{display:block}.s__3_30GG .sIOh1bP{stroke:#fff}.sFouHv5[data-hook=popover-portal]{display:initial}.sFouHv5 .sONxQKD{-webkit-font-smoothing:auto;background-color:#212121;border:1px solid #757575;border-radius:3px;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.1);color:#fff;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:20px;padding:4px 12px}.sFF_I56{margin:0;position:absolute}.sFF_I56,.sFF_I56 svg{display:block}.sFouHv5 .swpyXyw[data-placement*=top].suCSlDU{padding-bottom:6px}.sFouHv5 .swpyXyw[data-placement*=bottom].suCSlDU{padding-top:6px}.sFouHv5 .swpyXyw[data-placement*=left].suCSlDU{padding-right:6px}.sFouHv5 .swpyXyw[data-placement*=right].suCSlDU{padding-left:6px}.sFouHv5 .swpyXyw[data-placement*=top] .sFF_I56{bottom:-1px;height:7px;width:12px}.sFouHv5 .swpyXyw[data-placement*=bottom] .sFF_I56{height:7px;top:-1px;width:12px}.sFouHv5 .swpyXyw[data-placement*=left] .sFF_I56{height:12px;right:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=right] .sFF_I56{height:12px;left:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=top].sneWtR8{opacity:0;transform:scale(.9) translateY(3px)}.sFouHv5 .swpyXyw[data-placement*=bottom].sneWtR8{opacity:0;transform:scale(.9) translateY(-3px)}.sFouHv5 .swpyXyw[data-placement*=left].sneWtR8{opacity:0;transform:scale(.9) translateX(10px)}.sFouHv5 .swpyXyw[data-placement*=right].sneWtR8{opacity:0;transform:scale(.9) translateX(-10px)}.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{transition:transform .12s cubic-bezier(.25,.46,.45,.94),applyOpacity .12s cubic-bezier(.25,.46,.45,.94)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk,.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{opacity:1;transform:scale(1) translateY(0) translateX(0)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk.s__8Gqg5Z{opacity:0;transition:transform 80ms linear,applyOpacity 80ms linear}.sFouHv5.oFo_c_7---skin-5-error .sONxQKD{background-color:#df3131;border:1px solid hsla(0,0%,100%,.25)}.sFouHv5.oFo_c_7---skin-5-wired .sONxQKD{background-color:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-color:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wst-primary-background-color-rgb, var(--wix-color-1))));color:rgb(var(--wix-ui-tpa-tooltip-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path{fill:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wix-color-5)));stroke:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wix-color-5)))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:first-child{stroke:none}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:last-child{stroke-dasharray:0 17 17}.sFouHv5.oFo_c_7---skin-5-error .sFF_I56 path{fill:#df3131}.sSMZABS{--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal:rgb(var(--wix-ui-tpa-text-button-background-color));--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);background-color:var(--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal,transparent);border:0;font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));padding:0;text-decoration:none;text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV---priority-7-primary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))))}.sSMZABS.o__9L4TsV---priority-7-primary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV---priority-9-secondary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.sSMZABS.o__9L4TsV---priority-9-secondary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-7-primary.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-9-secondary.oX5PGLp--disabled{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.sNefrcN svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.sNefrcN svg:not([fill=currentColor]) path{stroke:currentColor;fill:none}.sL_FHv6:after,.sekO3oo:before{content:"";display:inline-block;height:1px;width:4px}.sjqP4Mv{--wix-ui-tpa-wow-image-background-color:var(--wix-ui-tpa-image-background-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-rgb:var(--wix-ui-tpa-image-background-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-opacity:var(--wix-ui-tpa-image-background-color-opacity);--wix-ui-tpa-wow-image-border-color:var(--wix-ui-tpa-image-border-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-rgb:var(--wix-ui-tpa-image-border-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-opacity:var(--wix-ui-tpa-image-border-color-opacity);--wix-ui-tpa-wow-image-border-width:var(--wix-ui-tpa-image-border-width);--wix-ui-tpa-wow-image-border-radius:var(--wix-ui-tpa-image-border-radius);--wix-ui-tpa-wow-image-image-opacity:var(--wix-ui-tpa-image-image-opacity)}.sjoXYIP{align-items:center;display:flex;justify-content:center}.sYygboQ{background-color:transparent;border:0;padding:0}.sYygboQ,.sjoXYIP{line-height:0}.sCD6_14 svg,.sjoXYIP{height:24px;width:24px}.sZstSKX{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.s__1NTrOu{border:0;display:inline-block;line-height:0;margin:0;padding:0;text-decoration:none}.s__1NTrOu.o__1Y_w3J--focus,.s__1NTrOu:hover{opacity:var(--wix-ui-tpa-icon-button-hover-opacity,.7)}.s__1NTrOu.o__0LZdzr--disabled{cursor:default}.s__1NTrOu.o__0LZdzr--disabled:hover{opacity:1}.sVnJn5y svg{display:block}.s__1NTrOu.o__0LZdzr--disabled.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));fill:none}.s__1NTrOu.o__0LZdzr--disabled.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---skin-4-line .sVnJn5y svg:not([fill=currentColor]) path,.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));fill:none}.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path,.s__1NTrOu.o__0LZdzr---skin-4-full .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu.o__0LZdzr--disabled .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---theme-4-none{background-color:transparent}.s__1NTrOu.o__0LZdzr---theme-3-box{align-items:center;background-color:rgb(var(--wix-ui-tpa-icon-button-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-radius:50%;display:inline-flex;height:32px;justify-content:center;width:32px}.sWHTiwe{--Button4291672415-primaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));--Button4291672415-primaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-primaryBorderColor));--Button4291672415-primaryHoverLegacyBorderColor:var(--Button4291672415-primaryHoverBorderColor),0.7;--Button4291672415-primaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-45))));--Button4291672415-secondaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--wix-color-48)));--Button4291672415-secondaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-secondaryBorderColor));--Button4291672415-secondaryHoverLegacyBorderColor:var(--Button4291672415-secondaryHoverBorderColor),0.7;--Button4291672415-secondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-54)));--Button4291672415-basicBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)));--Button4291672415-basicHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-basicBorderColor));--Button4291672415-basicHoverLegacyBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));--Button4291672415-basicSecondaryBorderColor:var(--Button4291672415-basicBorderColor);--Button4291672415-basicSecondaryHoverBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicSecondaryHoverLegacyBorderColor:var(--Button4291672415-basicSecondaryHoverBorderColor),0.7;--Button4291672415-basicSecondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29)));--Button4291672415-basicBorderWidth:0px;--Button4291672415-basicBorderExPaddingWidth:1px;--Button4291672415-basicSecondaryBorderWidth:1px;--Button4291672415-primaryBorderWidth:0px;--Button4291672415-primaryBorderExPaddingWidth:1px;--Button4291672415-secondaryBorderWidth:1px;--Button4291672415-borderStyle:solid;border-color:rgb(var(--wix-ui-tpa-button-main-border-color,var(--wix-color-39)));border-radius:var(--wix-ui-tpa-button-main-border-radius,0);border-style:solid;box-shadow:var(--wix-ui-tpa-button-main-box-shadow,0 0);box-sizing:content-box;font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing);line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));min-width:var(--wix-ui-tpa-button-min-width,100px);text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,0 0 transparent),var(--wix-ui-tpa-button-main-text-outline,0 0 transparent);text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out,border-width .2s ease-in-out}.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,underline)!important}.sWHTiwe .sezcxt9{margin:0 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_--fullWidth{box-sizing:border-box;width:100%}.sWHTiwe,.sWHTiwe.ojChOw_---priority-5-basic{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5),.7))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1),.7))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-color-1),0));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-primary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-primary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-primary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-primary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-primary-text-transform))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40)))))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-41))),calc(var(--wix-ui-tpa-button-main-background-color-opacity, 1) * .7)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-primary-color-rgb,var(--wix-color-43))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary .sewooAr{background-color:var(--wst-button-primary-text-highlight)}.sWHTiwe.ojChOw_---priority-9-secondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-secondary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-secondary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-secondary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-secondary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-secondary-text-transform))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-50),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-secondary-color-rgb,var(--wix-color-52))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sewooAr{background-color:var(--wst-button-secondary-text-highlight)}.sWHTiwe.oX5PGLp--disabled,.sWHTiwe.ojChOw_---priority-5-basic.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));border-color:rgb(var(--Button4291672415-basicDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-7-primary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-44))));border-color:rgb(var(--Button4291672415-primaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-46)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-disabled-background-color-opacity, 1)*0));border-color:rgb(var(--Button4291672415-basicSecondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.sWHTiwe.ojChOw_---priority-9-secondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-53))));border-color:rgb(var(--Button4291672415-secondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-secondary-background-color-rgb,var(--wix-color-55))))}.sWHTiwe.ojChOw_---size-4-tiny{padding:6px 16px}.sWHTiwe.ojChOw_---size-4-tiny.shzMJp6{padding:5.5px 16px}.sWHTiwe.ojChOw_---size-5-small{padding:7px 16px}.sWHTiwe,.sWHTiwe.ojChOw_---size-6-medium{padding:8px 16px}.sWHTiwe.ojChOw_---size-5-large,.sWHTiwe.ojChOw_--mobile,.sWHTiwe.ojChOw_--mobile.ojChOw_---size-6-medium{padding:10px 16px}.sbyYhb2 svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.s__19X6Eo:before,.segOfcF:after{content:"";display:inline-block;height:1px;width:var(--wix-ui-tpa-button-column-gap,4px)}.sWHTiwe .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-1)));transition:color .2s ease-in-out}.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-49)))}.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-52)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-5)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings{box-sizing:border-box;display:inline-flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings .sezcxt9,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings .sezcxt9{overflow:visible;text-overflow:unset;white-space:unset}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_--wrapContent{line-height:1.3!important;white-space:normal}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large:not(.ojChOw_--mobile),.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small:not(.ojChOw_--mobile){line-height:1}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_---size-4-tiny{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--mobile{padding:calc(17px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(14.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{border-width:var(--wix-ui-tpa-button-main-border-width,1px);padding-inline-end:var(--wix-ui-tpa-button-padding-inline-end,15px);padding-inline-start:var(--wix-ui-tpa-button-padding-inline-start,15px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:not(.ojChOw_---hoverStyle-9-underline):hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.oX5PGLp--disabled,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-small{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,5px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,5px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,7px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,7px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-large{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,11px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,11px)}.spPayPE{border-style:solid;box-sizing:border-box;cursor:pointer;display:block;overflow:hidden;position:relative;text-align:center;text-overflow:ellipsis;white-space:nowrap}.spPayPE .sewooAr{display:block;line-height:1.5}.spPayPE.ohrgDww--upgrade .sewooAr{display:inline-block;line-height:1}.syQvNy_{animation:StatesButton4232694921__bounce-in .5s ease 0s 1 normal;height:1.5em;top:.15em}.scujjIz{height:1.5em;width:1.5em}@keyframes StatesButton4232694921__bounce-in{0%{opacity:0;transform:translateY(30px)}32%{opacity:1;transform:translateY(-5px)}68%{opacity:1;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}.shszO9W{--wix-ui-tpa-text-field-main-label-font-text-decoration:var(--wix-forms-formInputLabelFont-text-decoration);--wix-ui-tpa-text-field-main-label-font-line-height:var(--wix-forms-formInputLabelFont-line-height);--wix-ui-tpa-text-field-main-label-font-family:var(--wix-forms-formInputLabelFont-family);--wix-ui-tpa-text-field-main-label-font-size:var(--wix-forms-formInputLabelFont-size);--wix-ui-tpa-text-field-main-label-font-style:var(--wix-forms-formInputLabelFont-style);--wix-ui-tpa-text-field-main-label-font-variant:var(--wix-forms-formInputLabelFont-variant);--wix-ui-tpa-text-field-main-label-font-weight:var(--wix-forms-formInputLabelFont-weight);--wix-ui-tpa-text-field-main-label-text-color:var(--wix-forms-formInputLabelColor);--wix-ui-tpa-text-field-main-label-text-color-rgb:var(--wix-forms-formInputLabelColor-rgb);--wix-ui-tpa-text-field-main-label-text-color-opacity:var(--wix-forms-formInputLabelColor-opacity);word-break:break-word}.shszO9W:empty:before{content:"\200B"}.shszO9W.sE7EeYv{display:block;height:0;margin:0;padding:0;visibility:hidden}.sHbjjkq{margin-inline-start:4px}.sHbjjkq,.smK0B6B{display:inline-block}.smK0B6B{margin-inline-end:4px}.sJ4C9d2{display:flex;flex-direction:column}.s__94TG4h{border-radius:8px;margin-bottom:8px;overflow:hidden;width:100%}.snZ_6f6{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-main-border-opacity:1;--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-disabled-color:var(--wix-forms-formInputDisabledValueColor);--wix-ui-tpa-text-field-main-text-disabled-color-rgb:var(--wix-forms-formInputDisabledValueColor-rgb);--wix-ui-tpa-text-field-main-text-disabled-color-opacity:var(--wix-forms-formInputDisabledValueColor-opacity);--wix-ui-tpa-text-field-readonly-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-readonly-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-readonly-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-readonly-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-readonly-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-readonly-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-readonly-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-readonly-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-readonly-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-readonly-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);--wix-ui-tpa-text-field-readonly-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-readonly-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-readonly-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-readonly-border-color:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)));--wix-ui-tpa-text-field-readonly-border-color-rgb:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -rgb);--wix-ui-tpa-text-field-readonly-border-color-opacity:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -opacity);--wix-ui-tpa-text-field-readonly-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-readonly-border-radius:var(--wix-forms-formInputBorderRadius);display:flex;flex-direction:column}.snZ_6f6 [placeholder]{text-overflow:ellipsis}.snZ_6f6 input::placeholder{color:rgb(var(--wix-forms-formInputPlaceholderColor,var(--wix-color-4)))!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{border-radius:var(--wix-forms-formInputBorderRadius,0)!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColor-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColor-opacity, 1)*--wix-forms-formInputBackgroundColor-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColorHover-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColorHover-opacity, 1)*--wix-forms-formInputBackgroundColorHover-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.sWgi58w{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);display:flex;flex-direction:column}.sy1z4yI{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:0px;--wix-ui-tpa-text-field-hover-border-width:0px;--wix-ui-tpa-text-field-readonly-border-width:0px;--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.s_wEX56{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity)}.snZ_6f6 div[data-theme=line]{padding-inline-start:12px}.sL5d0Ld div:has(>input){border-bottom-width:var(--wix-forms-formInputBorderBottomWidth,1px)!important;border-left-width:var(--wix-forms-formInputBorderLeftWidth,1px)!important;border-right-width:var(--wix-forms-formInputBorderRightWidth,1px)!important;border-top-width:var(--wix-forms-formInputBorderTopWidth,1px)!important}@media (forced-colors:active){.sL5d0Ld div:has(>input){border:1px solid CanvasText!important}.snZ_6f6:focus-within div:has(>input){outline:2px solid Highlight!important;outline-offset:2px!important}.sL5d0Ld div:has(>input):hover:not(:focus-within){outline:1px dashed CanvasText!important;outline-offset:1px!important}}.sN4uTVR,.s__5kY7XA{--wix-forms-formHeaderOneFont-text-decoration:var(--headerOneFont-text-decoration);--wix-forms-formHeaderOneFont-line-height:var(--headerOneFont-line-height);--wix-forms-formHeaderOneFont-family:var(--headerOneFont-family);--wix-forms-formHeaderOneFont-size:var(--headerOneFont-size);--wix-forms-formHeaderOneFont-style:var(--headerOneFont-style);--wix-forms-formHeaderOneFont-variant:var(--headerOneFont-variant);--wix-forms-formHeaderOneFont-weight:var(--headerOneFont-weight);--wix-forms-formHeaderOneColor:var(--headerOneColor);--wix-forms-formHeaderOneColor-rgb:var(--headerOneColor-rgb);--wix-forms-formHeaderOneColor-opacity:var(--headerOneColor-opacity);--wix-forms-formHeaderTwoFont-text-decoration:var(--headerTwoFont-text-decoration);--wix-forms-formHeaderTwoFont-line-height:var(--headerTwoFont-line-height);--wix-forms-formHeaderTwoFont-family:var(--headerTwoFont-family);--wix-forms-formHeaderTwoFont-size:var(--headerTwoFont-size);--wix-forms-formHeaderTwoFont-style:var(--headerTwoFont-style);--wix-forms-formHeaderTwoFont-variant:var(--headerTwoFont-variant);--wix-forms-formHeaderTwoFont-weight:var(--headerTwoFont-weight);--wix-forms-formHeaderTwoColor:var(--headerTwoColor);--wix-forms-formHeaderTwoColor-rgb:var(--headerTwoColor-rgb);--wix-forms-formHeaderTwoColor-opacity:var(--headerTwoColor-opacity);--wix-forms-formHeaderOneFontH1-text-decoration:var(--headerOneFontH1-text-decoration);--wix-forms-formHeaderOneFontH1-line-height:var(--headerOneFontH1-line-height);--wix-forms-formHeaderOneFontH1-family:var(--headerOneFontH1-family);--wix-forms-formHeaderOneFontH1-size:var(--headerOneFontH1-size);--wix-forms-formHeaderOneFontH1-style:var(--headerOneFontH1-style);--wix-forms-formHeaderOneFontH1-variant:var(--headerOneFontH1-variant);--wix-forms-formHeaderOneFontH1-weight:var(--headerOneFontH1-weight);--wix-forms-formHeaderTwoFontH2-text-decoration:var(--headerTwoFontH2-text-decoration);--wix-forms-formHeaderTwoFontH2-line-height:var(--headerTwoFontH2-line-height);--wix-forms-formHeaderTwoFontH2-family:var(--headerTwoFontH2-family);--wix-forms-formHeaderTwoFontH2-size:var(--headerTwoFontH2-size);--wix-forms-formHeaderTwoFontH2-style:var(--headerTwoFontH2-style);--wix-forms-formHeaderTwoFontH2-variant:var(--headerTwoFontH2-variant);--wix-forms-formHeaderTwoFontH2-weight:var(--headerTwoFontH2-weight);--wix-forms-formHeaderThreeFont-text-decoration:var(--headerThreeFont-text-decoration);--wix-forms-formHeaderThreeFont-line-height:var(--headerThreeFont-line-height);--wix-forms-formHeaderThreeFont-family:var(--headerThreeFont-family);--wix-forms-formHeaderThreeFont-size:var(--headerThreeFont-size);--wix-forms-formHeaderThreeFont-style:var(--headerThreeFont-style);--wix-forms-formHeaderThreeFont-variant:var(--headerThreeFont-variant);--wix-forms-formHeaderThreeFont-weight:var(--headerThreeFont-weight);--wix-forms-formHeaderThreeColor:var(--headerThreeColor);--wix-forms-formHeaderThreeColor-rgb:var(--headerThreeColor-rgb);--wix-forms-formHeaderThreeColor-opacity:var(--headerThreeColor-opacity);--wix-forms-formHeaderFourFont-text-decoration:var(--headerFourFont-text-decoration);--wix-forms-formHeaderFourFont-line-height:var(--headerFourFont-line-height);--wix-forms-formHeaderFourFont-family:var(--headerFourFont-family);--wix-forms-formHeaderFourFont-size:var(--headerFourFont-size);--wix-forms-formHeaderFourFont-style:var(--headerFourFont-style);--wix-forms-formHeaderFourFont-variant:var(--headerFourFont-variant);--wix-forms-formHeaderFourFont-weight:var(--headerFourFont-weight);--wix-forms-formHeaderFourColor:var(--headerFourColor);--wix-forms-formHeaderFourColor-rgb:var(--headerFourColor-rgb);--wix-forms-formHeaderFourColor-opacity:var(--headerFourColor-opacity);--wix-forms-formHeaderFiveFont-text-decoration:var(--headerFiveFont-text-decoration);--wix-forms-formHeaderFiveFont-line-height:var(--headerFiveFont-line-height);--wix-forms-formHeaderFiveFont-family:var(--headerFiveFont-family);--wix-forms-formHeaderFiveFont-size:var(--headerFiveFont-size);--wix-forms-formHeaderFiveFont-style:var(--headerFiveFont-style);--wix-forms-formHeaderFiveFont-variant:var(--headerFiveFont-variant);--wix-forms-formHeaderFiveFont-weight:var(--headerFiveFont-weight);--wix-forms-formHeaderFiveColor:var(--headerFiveColor);--wix-forms-formHeaderFiveColor-rgb:var(--headerFiveColor-rgb);--wix-forms-formHeaderFiveColor-opacity:var(--headerFiveColor-opacity);--wix-forms-formHeaderSixFont-text-decoration:var(--headerSixFont-text-decoration);--wix-forms-formHeaderSixFont-line-height:var(--headerSixFont-line-height);--wix-forms-formHeaderSixFont-family:var(--headerSixFont-family);--wix-forms-formHeaderSixFont-size:var(--headerSixFont-size);--wix-forms-formHeaderSixFont-style:var(--headerSixFont-style);--wix-forms-formHeaderSixFont-variant:var(--headerSixFont-variant);--wix-forms-formHeaderSixFont-weight:var(--headerSixFont-weight);--wix-forms-formHeaderSixColor:var(--headerSixColor);--wix-forms-formHeaderSixColor-rgb:var(--headerSixColor-rgb);--wix-forms-formHeaderSixColor-opacity:var(--headerSixColor-opacity);--wix-forms-formParagraphFont-text-decoration:var(--paragraphFont-text-decoration);--wix-forms-formParagraphFont-line-height:var(--paragraphFont-line-height);--wix-forms-formParagraphFont-family:var(--paragraphFont-family);--wix-forms-formParagraphFont-size:var(--paragraphFont-size);--wix-forms-formParagraphFont-style:var(--paragraphFont-style);--wix-forms-formParagraphFont-variant:var(--paragraphFont-variant);--wix-forms-formParagraphFont-weight:var(--paragraphFont-weight);--wix-forms-formParagraphColor:var(--paragraphColor);--wix-forms-formParagraphColor-rgb:var(--paragraphColor-rgb);--wix-forms-formParagraphColor-opacity:var(--paragraphColor-opacity);--wix-forms-formInputBackgroundColor:var(--inputBackgroundColor);--wix-forms-formInputBackgroundColor-rgb:var(--inputBackgroundColor-rgb);--wix-forms-formInputBackgroundColor-opacity:var(--inputBackgroundColor-opacity);--wix-forms-formInputBackgroundColorHover:var(--inputBackgroundColorHover);--wix-forms-formInputBackgroundColorHover-rgb:var(--inputBackgroundColorHover-rgb);--wix-forms-formInputBackgroundColorHover-opacity:var(--inputBackgroundColorHover-opacity);--wix-forms-formInputBorderColor:var(--inputBorderColor);--wix-forms-formInputBorderColor-rgb:var(--inputBorderColor-rgb);--wix-forms-formInputBorderColor-opacity:var(--inputBorderColor-opacity);--wix-forms-formInputBorderColorHover:var(--inputBorderColorHover);--wix-forms-formInputBorderColorHover-rgb:var(--inputBorderColorHover-rgb);--wix-forms-formInputBorderColorHover-opacity:var(--inputBorderColorHover-opacity);--wix-forms-formInputBorderWidth:calc(var(--inputBorderWidth) * 1px);--wix-forms-formInputBorderWidthHover:calc(var(--inputBorderWidthHover) * 1px);--wix-forms-formInputLabelFont-text-decoration:var(--inputLabelFont-text-decoration);--wix-forms-formInputLabelFont-line-height:var(--inputLabelFont-line-height);--wix-forms-formInputLabelFont-family:var(--inputLabelFont-family);--wix-forms-formInputLabelFont-size:var(--inputLabelFont-size);--wix-forms-formInputLabelFont-style:var(--inputLabelFont-style);--wix-forms-formInputLabelFont-variant:var(--inputLabelFont-variant);--wix-forms-formInputLabelFont-weight:var(--inputLabelFont-weight);--wix-forms-formInputLabelColor:var(--inputLabelColor);--wix-forms-formInputLabelColor-rgb:var(--inputLabelColor-rgb);--wix-forms-formInputLabelColor-opacity:var(--inputLabelColor-opacity);--wix-forms-formInputValueFont-text-decoration:var(--inputValueFont-text-decoration);--wix-forms-formInputValueFont-line-height:var(--inputValueFont-line-height);--wix-forms-formInputValueFont-family:var(--inputValueFont-family);--wix-forms-formInputValueFont-size:var(--inputValueFont-size);--wix-forms-formInputValueFont-style:var(--inputValueFont-style);--wix-forms-formInputValueFont-variant:var(--inputValueFont-variant);--wix-forms-formInputValueFont-weight:var(--inputValueFont-weight);--wix-forms-formInputValueColor:var(--inputValueColor);--wix-forms-formInputValueColor-rgb:var(--inputValueColor-rgb);--wix-forms-formInputValueColor-opacity:var(--inputValueColor-opacity);--wix-forms-formInputOptionColor:var(--inputOptionColor);--wix-forms-formInputOptionColor-rgb:var(--inputOptionColor-rgb);--wix-forms-formInputOptionColor-opacity:var(--inputOptionColor-opacity);--wix-forms-formInputPlaceholderColor:var(--inputPlaceholderColor);--wix-forms-formInputPlaceholderColor-rgb:var(--inputPlaceholderColor-rgb);--wix-forms-formInputPlaceholderColor-opacity:var(--inputPlaceholderColor-opacity);--wix-forms-formInputErrorColor:var(--inputErrorColor);--wix-forms-formInputErrorColor-rgb:var(--inputErrorColor-rgb);--wix-forms-formInputErrorColor-opacity:var(--inputErrorColor-opacity);--wix-forms-formInputBorderRadius:calc(var(--inputBorderRadius) * 1px);--wix-forms-formLinkColor:var(--linkColor);--wix-forms-formLinkColor-rgb:var(--linkColor-rgb);--wix-forms-formLinkColor-opacity:var(--linkColor-opacity);--wix-forms-formThankYouMessageFont-text-decoration:var(--thankYouMessageFont-text-decoration);--wix-forms-formThankYouMessageFont-line-height:var(--thankYouMessageFont-line-height);--wix-forms-formThankYouMessageFont-family:var(--thankYouMessageFont-family);--wix-forms-formThankYouMessageFont-size:var(--thankYouMessageFont-size);--wix-forms-formThankYouMessageFont-style:var(--thankYouMessageFont-style);--wix-forms-formThankYouMessageFont-variant:var(--thankYouMessageFont-variant);--wix-forms-formThankYouMessageFont-weight:var(--thankYouMessageFont-weight);--wix-forms-formThankYouMessageColor:var(--thankYouMessageColor);--wix-forms-formThankYouMessageColor-rgb:var(--thankYouMessageColor-rgb);--wix-forms-formThankYouMessageColor-opacity:var(--thankYouMessageColor-opacity);--wix-forms-formInputBorderStyle:var(--inputBorderStyle);--wix-forms-formInputSelectionColor:var(--inputSelectionColor);--wix-forms-formInputSelectionColor-rgb:var(--inputSelectionColor-rgb);--wix-forms-formInputSelectionColor-opacity:var(--inputSelectionColor-opacity);--wix-forms-formDropdownBackgroundColor:var(--dropdownBackgroundColor);--wix-forms-formDropdownBackgroundColor-rgb:var(--dropdownBackgroundColor-rgb);--wix-forms-formDropdownBackgroundColor-opacity:var(--dropdownBackgroundColor-opacity);--wix-forms-formDropdownOptionTextColor:var(--dropdownOptionTextColor);--wix-forms-formDropdownOptionTextColor-rgb:var(--dropdownOptionTextColor-rgb);--wix-forms-formDropdownOptionTextColor-opacity:var(--dropdownOptionTextColor-opacity);--wix-forms-formInputNoteFont-text-decoration:var(--inputNoteFont-text-decoration);--wix-forms-formInputNoteFont-line-height:var(--inputNoteFont-line-height);--wix-forms-formInputNoteFont-family:var(--inputNoteFont-family);--wix-forms-formInputNoteFont-size:var(--inputNoteFont-size);--wix-forms-formInputNoteFont-style:var(--inputNoteFont-style);--wix-forms-formInputNoteFont-variant:var(--inputNoteFont-variant);--wix-forms-formInputNoteFont-weight:var(--inputNoteFont-weight);--wix-forms-formInputNoteColor:var(--inputNoteColor);--wix-forms-formInputNoteColor-rgb:var(--inputNoteColor-rgb);--wix-forms-formInputNoteColor-opacity:var(--inputNoteColor-opacity);--wix-forms-formButtonsColor:var(--buttonsColor);--wix-forms-formButtonsColor-rgb:var(--buttonsColor-rgb);--wix-forms-formButtonsColor-opacity:var(--buttonsColor-opacity);--wix-forms-formButtonsColorHover:var(--buttonsColorHover);--wix-forms-formButtonsColorHover-rgb:var(--buttonsColorHover-rgb);--wix-forms-formButtonsColorHover-opacity:var(--buttonsColorHover-opacity);--wix-forms-formButtonsBackgroundColor:var(--buttonsBackgroundColor);--wix-forms-formButtonsBackgroundColor-rgb:var(--buttonsBackgroundColor-rgb);--wix-forms-formButtonsBackgroundColor-opacity:var(--buttonsBackgroundColor-opacity);--wix-forms-formButtonsBackgroundColorHover:var(--buttonsBackgroundColorHover);--wix-forms-formButtonsBackgroundColorHover-rgb:var(--buttonsBackgroundColorHover-rgb);--wix-forms-formButtonsBackgroundColorHover-opacity:var(--buttonsBackgroundColorHover-opacity);--wix-forms-formButtonsBorderColor:var(--buttonsBorderColor);--wix-forms-formButtonsBorderColor-rgb:var(--buttonsBorderColor-rgb);--wix-forms-formButtonsBorderColor-opacity:var(--buttonsBorderColor-opacity);--wix-forms-formButtonsBorderWidth:calc(var(--buttonsBorderWidth) * 1px);--wix-forms-formButtonsBorderRadius:calc(var(--buttonsBorderRadius) * 1px);--wix-forms-formButtonsFont-text-decoration:var(--buttonsFont-text-decoration);--wix-forms-formButtonsFont-line-height:var(--buttonsFont-line-height);--wix-forms-formButtonsFont-family:var(--buttonsFont-family);--wix-forms-formButtonsFont-size:var(--buttonsFont-size);--wix-forms-formButtonsFont-style:var(--buttonsFont-style);--wix-forms-formButtonsFont-variant:var(--buttonsFont-variant);--wix-forms-formButtonsFont-weight:var(--buttonsFont-weight);--wix-forms-formButtonsFontHover-text-decoration:var(--buttonsFontHover-text-decoration);--wix-forms-formButtonsFontHover-line-height:var(--buttonsFontHover-line-height);--wix-forms-formButtonsFontHover-family:var(--buttonsFontHover-family);--wix-forms-formButtonsFontHover-size:var(--buttonsFontHover-size);--wix-forms-formButtonsFontHover-style:var(--buttonsFontHover-style);--wix-forms-formButtonsFontHover-variant:var(--buttonsFontHover-variant);--wix-forms-formButtonsFontHover-weight:var(--buttonsFontHover-weight);--wix-forms-formNextButtonFont-text-decoration:var(--nextButtonFont-text-decoration);--wix-forms-formNextButtonFont-line-height:var(--nextButtonFont-line-height);--wix-forms-formNextButtonFont-family:var(--nextButtonFont-family);--wix-forms-formNextButtonFont-size:var(--nextButtonFont-size);--wix-forms-formNextButtonFont-style:var(--nextButtonFont-style);--wix-forms-formNextButtonFont-variant:var(--nextButtonFont-variant);--wix-forms-formNextButtonFont-weight:var(--nextButtonFont-weight);--wix-forms-formNextButtonFontHover-text-decoration:var(--nextButtonFontHover-text-decoration);--wix-forms-formNextButtonFontHover-line-height:var(--nextButtonFontHover-line-height);--wix-forms-formNextButtonFontHover-family:var(--nextButtonFontHover-family);--wix-forms-formNextButtonFontHover-size:var(--nextButtonFontHover-size);--wix-forms-formNextButtonFontHover-style:var(--nextButtonFontHover-style);--wix-forms-formNextButtonFontHover-variant:var(--nextButtonFontHover-variant);--wix-forms-formNextButtonFontHover-weight:var(--nextButtonFontHover-weight);--wix-forms-formNextButtonColor:var(--nextButtonColor);--wix-forms-formNextButtonColor-rgb:var(--nextButtonColor-rgb);--wix-forms-formNextButtonColor-opacity:var(--nextButtonColor-opacity);--wix-forms-formNextButtonColorHover:var(--nextButtonColorHover);--wix-forms-formNextButtonColorHover-rgb:var(--nextButtonColorHover-rgb);--wix-forms-formNextButtonColorHover-opacity:var(--nextButtonColorHover-opacity);--wix-forms-formNextButtonBackgroundColor:var(--nextButtonBackgroundColor);--wix-forms-formNextButtonBackgroundColor-rgb:var(--nextButtonBackgroundColor-rgb);--wix-forms-formNextButtonBackgroundColor-opacity:var(--nextButtonBackgroundColor-opacity);--wix-forms-formNextButtonBackgroundColorHover:var(--nextButtonBackgroundColorHover);--wix-forms-formNextButtonBackgroundColorHover-rgb:var(--nextButtonBackgroundColorHover-rgb);--wix-forms-formNextButtonBackgroundColorHover-opacity:var(--nextButtonBackgroundColorHover-opacity);--wix-forms-formNextButtonBorderColor:var(--nextButtonBorderColor);--wix-forms-formNextButtonBorderColor-rgb:var(--nextButtonBorderColor-rgb);--wix-forms-formNextButtonBorderColor-opacity:var(--nextButtonBorderColor-opacity);--wix-forms-formNextButtonBorderColorHover:var(--nextButtonBorderColorHover);--wix-forms-formNextButtonBorderColorHover-rgb:var(--nextButtonBorderColorHover-rgb);--wix-forms-formNextButtonBorderColorHover-opacity:var(--nextButtonBorderColorHover-opacity);--wix-forms-formNextButtonBorderWidth:calc(var(--nextButtonBorderWidth) * 1px);--wix-forms-formNextButtonBorderRadius:calc(var(--nextButtonBorderRadius) * 1px);--wix-forms-formPreviousButtonFont-text-decoration:var(--previousButtonFont-text-decoration);--wix-forms-formPreviousButtonFont-line-height:var(--previousButtonFont-line-height);--wix-forms-formPreviousButtonFont-family:var(--previousButtonFont-family);--wix-forms-formPreviousButtonFont-size:var(--previousButtonFont-size);--wix-forms-formPreviousButtonFont-style:var(--previousButtonFont-style);--wix-forms-formPreviousButtonFont-variant:var(--previousButtonFont-variant);--wix-forms-formPreviousButtonFont-weight:var(--previousButtonFont-weight);--wix-forms-formPreviousButtonFontHover-text-decoration:var(--previousButtonFontHover-text-decoration);--wix-forms-formPreviousButtonFontHover-line-height:var(--previousButtonFontHover-line-height);--wix-forms-formPreviousButtonFontHover-family:var(--previousButtonFontHover-family);--wix-forms-formPreviousButtonFontHover-size:var(--previousButtonFontHover-size);--wix-forms-formPreviousButtonFontHover-style:var(--previousButtonFontHover-style);--wix-forms-formPreviousButtonFontHover-variant:var(--previousButtonFontHover-variant);--wix-forms-formPreviousButtonFontHover-weight:var(--previousButtonFontHover-weight);--wix-forms-formPreviousButtonColor:var(--previousButtonColor);--wix-forms-formPreviousButtonColor-rgb:var(--previousButtonColor-rgb);--wix-forms-formPreviousButtonColor-opacity:var(--previousButtonColor-opacity);--wix-forms-formPreviousButtonColorHover:var(--previousButtonColorHover);--wix-forms-formPreviousButtonColorHover-rgb:var(--previousButtonColorHover-rgb);--wix-forms-formPreviousButtonColorHover-opacity:var(--previousButtonColorHover-opacity);--wix-forms-formPreviousButtonBackgroundColor:var(--previousButtonBackgroundColor);--wix-forms-formPreviousButtonBackgroundColor-rgb:var(--previousButtonBackgroundColor-rgb);--wix-forms-formPreviousButtonBackgroundColor-opacity:var(--previousButtonBackgroundColor-opacity);--wix-forms-formPreviousButtonBackgroundColorHover:var(--previousButtonBackgroundColorHover);--wix-forms-formPreviousButtonBackgroundColorHover-rgb:var(--previousButtonBackgroundColorHover-rgb);--wix-forms-formPreviousButtonBackgroundColorHover-opacity:var(--previousButtonBackgroundColorHover-opacity);--wix-forms-formPreviousButtonBorderColor:var(--previousButtonBorderColor);--wix-forms-formPreviousButtonBorderColor-rgb:var(--previousButtonBorderColor-rgb);--wix-forms-formPreviousButtonBorderColor-opacity:var(--previousButtonBorderColor-opacity);--wix-forms-formPreviousButtonBorderColorHover:var(--previousButtonBorderColorHover);--wix-forms-formPreviousButtonBorderColorHover-rgb:var(--previousButtonBorderColorHover-rgb);--wix-forms-formPreviousButtonBorderColorHover-opacity:var(--previousButtonBorderColorHover-opacity);--wix-forms-formPreviousButtonBorderWidth:calc(var(--previousButtonBorderWidth) * 1px);--wix-forms-formPreviousButtonBorderRadius:calc(var(--previousButtonBorderRadius) * 1px);--wix-forms-formSubmitButtonFont-text-decoration:var(--submitButtonFont-text-decoration);--wix-forms-formSubmitButtonFont-line-height:var(--submitButtonFont-line-height);--wix-forms-formSubmitButtonFont-family:var(--submitButtonFont-family);--wix-forms-formSubmitButtonFont-size:var(--submitButtonFont-size);--wix-forms-formSubmitButtonFont-style:var(--submitButtonFont-style);--wix-forms-formSubmitButtonFont-variant:var(--submitButtonFont-variant);--wix-forms-formSubmitButtonFont-weight:var(--submitButtonFont-weight);--wix-forms-formSubmitButtonFontHover-text-decoration:var(--submitButtonFontHover-text-decoration);--wix-forms-formSubmitButtonFontHover-line-height:var(--submitButtonFontHover-line-height);--wix-forms-formSubmitButtonFontHover-family:var(--submitButtonFontHover-family);--wix-forms-formSubmitButtonFontHover-size:var(--submitButtonFontHover-size);--wix-forms-formSubmitButtonFontHover-style:var(--submitButtonFontHover-style);--wix-forms-formSubmitButtonFontHover-variant:var(--submitButtonFontHover-variant);--wix-forms-formSubmitButtonFontHover-weight:var(--submitButtonFontHover-weight);--wix-forms-formSubmitButtonColor:var(--submitButtonColor);--wix-forms-formSubmitButtonColor-rgb:var(--submitButtonColor-rgb);--wix-forms-formSubmitButtonColor-opacity:var(--submitButtonColor-opacity);--wix-forms-formSubmitButtonColorHover:var(--submitButtonColorHover);--wix-forms-formSubmitButtonColorHover-rgb:var(--submitButtonColorHover-rgb);--wix-forms-formSubmitButtonColorHover-opacity:var(--submitButtonColorHover-opacity);--wix-forms-formSubmitButtonBackgroundColor:var(--submitButtonBackgroundColor);--wix-forms-formSubmitButtonBackgroundColor-rgb:var(--submitButtonBackgroundColor-rgb);--wix-forms-formSubmitButtonBackgroundColor-opacity:var(--submitButtonBackgroundColor-opacity);--wix-forms-formSubmitButtonBackgroundColorHover:var(--submitButtonBackgroundColorHover);--wix-forms-formSubmitButtonBackgroundColorHover-rgb:var(--submitButtonBackgroundColorHover-rgb);--wix-forms-formSubmitButtonBackgroundColorHover-opacity:var(--submitButtonBackgroundColorHover-opacity);--wix-forms-formSubmitButtonBorderColor:var(--submitButtonBorderColor);--wix-forms-formSubmitButtonBorderColor-rgb:var(--submitButtonBorderColor-rgb);--wix-forms-formSubmitButtonBorderColor-opacity:var(--submitButtonBorderColor-opacity);--wix-forms-formSubmitButtonBorderColorHover:var(--submitButtonBorderColorHover);--wix-forms-formSubmitButtonBorderColorHover-rgb:var(--submitButtonBorderColorHover-rgb);--wix-forms-formSubmitButtonBorderColorHover-opacity:var(--submitButtonBorderColorHover-opacity);--wix-forms-formSubmitButtonBorderWidth:calc(var(--submitButtonBorderWidth) * 1px);--wix-forms-formSubmitButtonBorderRadius:calc(var(--submitButtonBorderRadius) * 1px);--wix-forms-formColumnSpacing:calc(var(--columnSpacing) * 1px);--wix-forms-formRowSpacing:calc(var(--rowSpacing) * 1px);--wix-forms-formBackground:var(--formBackground);--wix-forms-formBackground-rgb:var(--formBackground-rgb);--wix-forms-formBackground-opacity:var(--formBackground-opacity);--wix-forms-formInputBorderLeftWidth:calc(var(--inputBorderLeftWidth) * 1px);--wix-forms-formInputBorderRightWidth:calc(var(--inputBorderRightWidth) * 1px);--wix-forms-formInputBorderTopWidth:calc(var(--inputBorderTopWidth) * 1px);--wix-forms-formInputBorderBottomWidth:calc(var(--inputBorderBottomWidth) * 1px)}.sN4uTVR{background:rgba(var(--formBackground));border-color:rgba(var(--borderColor));border-radius:calc(var(--borderRadius)*1px);border-style:solid;border-width:calc(var(--borderWidth)*1px);box-sizing:border-box;padding-bottom:calc(var(--verticalPadding)*1px);padding-left:calc(var(--horizontalPadding)*1px);padding-right:calc(var(--horizontalPadding)*1px);padding-top:calc(var(--verticalPadding)*1px)}.sHoCdRI{box-shadow:var(--index2490108247-shadowXOffset) var(--index2490108247-shadowYOffset) calc(var(--shadowBlur)*1px) calc(var(--shadowSize)*1px) rgba(var(--shadowColor))}@container (max-width: 288px){.sN4uTVR form fieldset>div{column-gap:0!important}}.CvQpuc{align-items:center;background:rgba(var(--formBackground));box-sizing:border-box;display:flex;flex-direction:column;height:100%;justify-content:center;padding:20px;text-align:center;width:100%}._Kekmv{font-size:18px!important;font-weight:700!important;line-height:24px!important;margin:24px 0 8px 0}.yriMaM{font-size:14px!important;font-weight:400!important;line-height:18px!important}._Kekmv,.yriMaM{font-family:Madefor,Helvetica Neue,Helvetica,Arial,sans-serif!important}.Qq9p0F{align-items:center;display:flex;flex-direction:column;text-align:center}.Qq9p0F .tQFwnj{margin-bottom:12px}.Qq9p0F .IqzMYA{margin-top:12px}.YSDaGO{animation:lWfcIs .4s ease}@keyframes lWfcIs{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.ckHV4G{display:flex;flex-direction:column;gap:var(--wix-forms-formRowSpacing,24px);width:100%}.GLWhGq{-moz-column-gap:var(--wix-forms-formColumnSpacing,24px);column-gap:var(--wix-forms-formColumnSpacing,24px)}.DXT5mJ{row-gap:var(--wix-forms-formRowSpacing,0)}.WLnTYL,.rSNHo6{margin-top:24px}.rSNHo6{align-items:center;color:rgb(var(--wix-forms-formInputErrorColor,223,49,49))!important;display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:16px;justify-content:center;line-height:1.4;min-height:20px}.PzL7AI{margin-right:2px}.pdfCm{direction:ltr}.jToQW{direction:rtl}.HosD-{background:transparent;border:none;cursor:pointer;display:flex;outline:none;padding-inline-end:14px;padding-inline-start:10px}.HosD-:hover{opacity:.7}.jToQW .HosD-{transform:scaleX(-1)}.HosD-:focus-visible .UM01p{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}.HosD- .UM01p{fill:#646464;color:#646464;outline:none;transition:transform .15s linear}.HosD- .UM01p.mTw6G{transform:rotate(90deg)}.ScyVy{overflow-wrap:break-word;width:100%;word-break:break-word}@media print{.HosD- .UM01p{transform:rotate(90deg)!important}}.l0N8d{align-items:center;cursor:auto;display:flex;margin:12px 0}.l0N8d .aXjZR{flex:1}.l0N8d p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.l0N8d p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}._3RkWr{margin:10px 0 12px}.ZvAeV{margin:0;min-height:48px}.ZvAeV._3RkWr{cursor:pointer;margin:2px 0}._2DBY0{align-self:start;display:flex;outline:none}._2DBY0,.eBhx-{padding-top:12px}.eBhx-{cursor:grab;position:absolute}.eBhx-:hover{opacity:.7}.eBhx- svg{fill:#646464;color:#646464}.NP-6A{right:-23px}.F6ia-{left:-23px}.QxwkN{display:flex;flex-direction:row;position:relative}.QxwkN p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.QxwkN p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}.ImTU9{margin:2px 0}.zTHZ5{cursor:pointer;display:flex;flex-direction:row;outline:none;width:100%}.zTHZ5:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.wCts7{display:flex;flex-direction:row}.aEBup{flex:0 0 48px}._3Sfx1{cursor:grabbing}.VqL-4,.hrdcY{min-width:0;width:100%}.hrdcY{display:flex;flex-direction:column}.VSINL{--ricos-custom-editor-add-plugin-button-position-inline-start:-36px}.bCXc8{display:none}@media print{.bCXc8{display:block!important}}.glob_fontElementMap,.zPN84{font-family:var(--ricos-font-family,unset)}.LRZrT{color:var(--ricos-custom-link-color,var(--ricos-action-color,#116dff));font-family:var(--ricos-custom-link-font-family,unset);font-size:var(--ricos-custom-link-font-size,unset);font-style:var(--ricos-custom-link-font-style,unset);font-weight:var(--ricos-custom-link-font-weight,unset);letter-spacing:var(--ricos-custom-link-letter-spacing,unset);line-height:var(--ricos-custom-link-line-height,unset);min-height:var(--ricos-custom-link-min-height,unset);-webkit-text-decoration:var(--ricos-custom-link-text-decoration,none);text-decoration:var(--ricos-custom-link-text-decoration,none)}._4dOZS:hover{cursor:text}.z7mqB:hover{cursor:pointer}.NI44M{display:flex;margin-right:5px}.md0f2{color:var(--ricos-settings-action-color,var(--ricos-action-color-fallback,#116dff));max-width:270px;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}@supports (color:rgb(from #000 r g b/0.1)){.md0f2{color:var(--ricos-settings-action-color,rgb(from var(--ricos-action-color,#116dff) min(r,150) min(g,150) min(b,150)))}}.md0f2:hover{text-decoration:underline}._2Wt3P:hover{cursor:pointer}@supports not (contain:inline-size){@media only screen and (max-width:480px){.md0f2{max-width:160px}}}@container (width < 480px){.md0f2{max-width:160px}}.ElBhne{width:100%}.dF3Dv0{align-items:center;background:rgba(var(--wix-forms-formBackground));display:flex;inset:0;justify-content:center;position:absolute;z-index:1}.dF3Dv0>div{height:auto;width:100%}.kLNiUo{border:none;margin:0;padding:0}.D8AT5x>fieldset,.zeyg5V{pointer-events:none}.D8AT5x>fieldset{visibility:hidden}.D8AT5x{position:relative}.M94ODH{align-items:center;display:flex;flex-direction:column;gap:12px}.M94ODH .QBpKk2{border-radius:4px!important}.eiknuc{display:block;height:100%;width:100%}.eiknuc img{max-width:var(--wix-img-max-width,100%)}.eiknuc[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.eiknuc[data-animate-blur] img[data-load-done]{filter:none}.CKafKt{font-size:12px!important;margin-top:8px}.mKhPRp{display:inline-flex}.A3sImb{cursor:default}</style> | |
| 233 | +<!-- Loadable Component comp-m8omf94t --> | |
| 234 | + | |
| 235 | +<!-- Loadable Component comp-m8omf94t --> | |
| 236 | +<script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[]</script><script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":[]}</script> | |
| 237 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 238 | +<style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.css">.sk_ESYz{--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formParagraphFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formParagraphFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formParagraphFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formParagraphFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formParagraphFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formParagraphFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formParagraphFont-weight)}.sk_ESYz,.sk_ESYz:hover{color:var(--ricosviewer2135568863-wix-forms-formLinkColor,rgba(var(--wix-color-8),1))!important}</style><style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/1277.chunk.min.css">.WdrX8{direction:rtl}.xWJx0{direction:ltr}.Y0khg{margin-left:0;margin-right:auto;z-index:1}.Y0khg:not(.g3kHM){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}}@container (width < 480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}.BzQKU{margin-left:auto;margin-right:0;z-index:1}.BzQKU:not(.g3kHM){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}}@container (width < 480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}.NY-QD{clear:both;display:block}.NY-QD:not(._0Z9DY){margin-left:auto;margin-right:auto;max-width:100%}._0Z9DY,.g3kHM{width:100%}.fwEUh ._0Z9DY,.fwEUh .g3kHM{margin:0 -8px;width:auto}.NwCLa{width:-moz-fit-content;width:fit-content}._50Ywj{margin-left:auto;margin-right:auto;max-width:100%}.eX7c9{width:min(350px,100%)!important}.fwEUh .eX7c9{width:50%}._0a1LY{margin-left:auto;margin-right:auto}.fwEUh ._0a1LY{width:150px}.sFMd1{display:flex}._6lkns,._6lkns>*{text-align:left}.Vbf1a,.Vbf1a>*{text-align:center}.NcJLH,.NcJLH>*{text-align:right}._0uG9a,._0uG9a>*{text-align:initial}.jswSl{text-align:justify!important;white-space:pre-wrap!important}.ZnMEC,.glob_fontElementMap,.zrLtk{font-family:var(--ricos-font-family,unset)}.pY8WU{max-width:100%}.zrLtk{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-content:start;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);height:100%;padding-block-end:var(--ricos-custom-container-padding-block-end,0);padding-block-start:var(--ricos-custom-container-padding-block-start,0);position:relative}.zrLtk:has([data-layout-banner=top]){padding-block-start:0}.zrLtk:has([data-layout-banner=bottom]){padding-block-end:0}.zrLtk *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.zrLtk .tlZw8{box-sizing:border-box;-moz-tab-size:40px;-o-tab-size:40px;tab-size:40px}.zrLtk .tlZw8 *,.zrLtk .tlZw8 :after,.zrLtk .tlZw8 :before{box-sizing:inherit}.zrLtk .tlZw8 input{box-sizing:border-box}.zrLtk.YHur4{padding-top:50px}.tlZw8{word-wrap:break-word;background-color:var(--ricos-bg-color-container,unset);color:var(--ricos-text-color,#212121);container-type:inline-size;font-size:16px;height:100%;line-height:1.5;overflow-wrap:break-word;white-space:pre-wrap;white-space:break-spaces;width:100%}.tlZw8:after{clear:both;content:"";display:table;line-height:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.tlZw8{font-size:14px}}}@container (width < 480px){.tlZw8{font-size:14px}}._7UvJA{width:100%}._7UvJA [data-breakout=normal]{padding-inline-end:var(--ricos-breakout-normal-padding-end,0);padding-inline-start:var(--ricos-breakout-normal-padding-start,0)}._7UvJA [data-breakout=fullWidth]{padding-inline-end:var(--ricos-breakout-full-width-padding-end,0);padding-inline-start:var(--ricos-breakout-full-width-padding-start,0)}._7UvJA [data-gap-spacer-top-margin]{margin-top:14px}._8B4zb{margin:2px 0}.DjL2Y,.b8HqH+.b8HqH{margin-top:20px}@media print{.tlZw8{height:auto}body{background-color:var(--rt-design-background-color,var(--rt-design-background-image-bg-color,var(--ricos-background-color,#fff)))}}._41BxQ{margin-inline-start:0!important}.wlxXY{margin-inline-start:40px!important}.uXCyf{margin-inline-start:80px!important}._746dJ{margin-inline-start:120px!important}.QC6Qc{margin-inline-start:160px!important}.sLvSN{margin-inline-start:200px!important}.WSqt-{margin-inline-start:240px!important}.Ik8pK{margin-left:0;margin-right:auto;z-index:1}.Ik8pK:not(.NtNUw){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}}@container (width < 480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}.U1e7f{margin-left:auto;margin-right:0;z-index:1}.U1e7f:not(.NtNUw){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}}@container (width < 480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}.odAbW{clear:both;display:block}.odAbW:not(._3XT4E){margin-left:auto;margin-right:auto;max-width:100%}.NtNUw,._3XT4E{width:100%}.A4ID1 .NtNUw,.A4ID1 ._3XT4E{margin:0 -8px;width:auto}.v36De{width:-moz-fit-content;width:fit-content}._0P5jU{margin-left:auto;margin-right:auto;max-width:100%}.Xq3fZ{width:min(350px,100%)!important}.A4ID1 .Xq3fZ{width:50%}.w6QFZ{margin-left:auto;margin-right:auto}.A4ID1 .w6QFZ{width:150px}.NrnwV{display:flex}._72eGU{margin:0}._18vC-{border:none;width:-moz-max-content;width:max-content}.EwjhL{overflow-x:auto}.EwjhL::-webkit-scrollbar{-webkit-appearance:none}.EwjhL::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:8px}.EwjhL::-webkit-scrollbar:horizontal{height:10px}.Ce-P5{max-width:100%}._9k8cw{text-decoration:none}.nWC1s:focus-visible{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}._4X3JV,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}._1XbUl,.v6mQw{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);list-style-position:outside;margin:0;min-height:var(--ricos-custom-p-min-height,unset);padding:0;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}._1XbUl>*,.v6mQw>*{background-color:var(--ricos-custom-p-background-color,unset)}._1XbUl>.frioR,.v6mQw>.frioR{list-style-type:inherit;margin-inline-start:1.5em;padding-inline-start:.5em}._1XbUl>.frioR[data-heading-level=headerOne],.v6mQw>.frioR[data-heading-level=headerOne]{font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerTwo],.v6mQw>.frioR[data-heading-level=headerTwo]{font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerThree],.v6mQw>.frioR[data-heading-level=headerThree]{font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFour],.v6mQw>.frioR[data-heading-level=headerFour]{font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFive],.v6mQw>.frioR[data-heading-level=headerFive]{font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerSix],.v6mQw>.frioR[data-heading-level=headerSix]{font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.VU1nK,.VU1nK>.frioR{list-style-type:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6){text-decoration:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6) :is([data-font-size],span[style*=font-size]){text-decoration:line-through}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6):not(:has([data-font-size],span[style*=font-size])){text-decoration:line-through}.frioR{position:relative;text-align:initial}.frioR[data-child-font-fit]>:is(p,h1,h2,h3,h4,h5,h6){font-size:inherit}[data-list-style-position=inside].frioR{list-style-position:inside;padding-inline-start:0}[data-list-style-position=inside].frioR>:first-child:not([aria-checked]),[data-list-style-position=inside].frioR>:first-child:not([aria-checked])>:first-child{display:inline}[data-list-style-position=inside].frioR[data-list-style=checkbox]>[aria-checked]{display:inline-grid;inset-inline-start:unset;margin-inline-end:.35em;position:relative;top:auto;transform:none;vertical-align:middle}[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span{display:inline}.v6mQw>[data-list-style-position=inside].frioR h2>span,.v6mQw>[data-list-style-position=inside].frioR h3>span,.v6mQw>[data-list-style-position=inside].frioR h4>span,.v6mQw>[data-list-style-position=inside].frioR h5>span,.v6mQw>[data-list-style-position=inside].frioR h6>span,.v6mQw>[data-list-style-position=inside].frioR>h1>span,.v6mQw>[data-list-style-position=inside].frioR>p>span>:first-child,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span>:first-child{margin-inline-start:.5em}ol .frioR{position:relative}ol .frioR>div>:not(ul)>span{margin-inline-start:.35em}.mqFOv{background-color:var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border:max(1px,1em/18) solid rgba(var(--ricos-theme-color-3-tuple,var(--ricos-action-color-tuple,var(--ricos-action-color-fallback-tuple,17,109,255))),.35);border-radius:.25em;box-sizing:border-box;display:inline-grid;font-size:inherit;height:1em;inset-inline-start:-1.25em;line-height:inherit;margin:0;padding:0;place-items:center;pointer-events:none;position:absolute;top:calc(.5lh - 1em / 2);width:1em}.mqFOv:after{border-bottom:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border-right:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));content:"";height:.5em;transform:translateY(-.0625em) rotate(45deg) scale(0);width:.25em}.mqFOv[aria-checked=true]{background-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)));border-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)))}.mqFOv[aria-checked=true]:after{transform:translateY(-.0625em) rotate(45deg) scale(1)}.eMsNb,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.eUxPq{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eUxPq{clear:both;margin:0}}}@container (width < 480px){.eUxPq{clear:both;margin:0}}.eBpC0{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);min-height:var(--ricos-custom-p-min-height,unset);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}.eBpC0>span>a,.eBpC0>span>span{background-color:var(--ricos-custom-p-background-color,unset)}.eBpC0:empty{height:24px}.zm9nI{display:block}.LRIFJ{background:var(--ricos-internal-layout-backdrop-gradient,var(--ricos-internal-layout-backdrop-color,transparent));clear:both;padding-bottom:var(--ricos-internal-layout-backdrop-padding-bottom,0);padding-top:var(--ricos-internal-layout-backdrop-padding-top,0);position:relative}.LRIFJ:before{background-image:var(--ricos-internal-layout-backdrop-image-src);background-position:var(--ricos-internal-layout-backdrop-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-backdrop-image-scaling);filter:var(--ricos-internal-layout-backdrop-image-blur,none);z-index:0}.LRIFJ:after,.LRIFJ:before{bottom:0;clip-path:inset(0);content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LRIFJ:after{background:var(--ricos-internal-layout-backdrop-overlay,transparent);z-index:1}.LmXEw{--ricos-internal-layout-display:grid;--ricos-internal-layout-horizontal-padding:0;display:var(--ricos-internal-layout-display,grid);flex-wrap:wrap;gap:var(--ricos-internal-layout-gap,20px);grid-template-columns:var(--ricos-internal-layout-grid-template,var(--ricos-internal-layout-column-template));justify-content:var(--ricos-internal-layout-justify-content,auto);margin:0 auto;position:relative;width:min(100%,var(--ricos-internal-layout-width,initial));z-index:2}.LmXEw.CvxCp ._8Xb4l,.LmXEw.P-WYy{background:var(--ricos-internal-layout-background-gradient,var(--ricos-internal-layout-background-color,transparent));border:var(--ricos-internal-layout-border-width,0) solid var(--ricos-internal-layout-border-color);border-radius:var(--ricos-internal-layout-border-radius,0)}.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:before{background-image:var(--ricos-internal-layout-background-image-src);background-position:var(--ricos-internal-layout-background-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-background-image-scaling);filter:var(--ricos-internal-layout-background-image-blur,none);z-index:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:after,.LmXEw.P-WYy:before{bottom:0;clip-path:inset(0 round var(--ricos-internal-layout-border-radius,0));content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.P-WYy:after{background:var(--ricos-internal-layout-background-overlay,transparent);z-index:1}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}}@container (width < 480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}.LmXEw.Ay9OM{--ricos-internal-layout-display:flex;--ricos-internal-layout-justify-content:center;--ricos-internal-layout-cell-min-width:100%;--ricos-internal-layout-cell-height:auto}*+.LmXEw{margin-top:20px}.LmXEw ._8Xb4l{display:flex;flex-direction:column;flex-grow:1;justify-content:var(--ricos-internal-layout-cell-vertical-alignment);max-width:var(--ricos-internal-layout-cell-min-width,auto);min-width:min(100%,var(--ricos-internal-layout-cell-min-width,0));outline:1px solid transparent;padding:var(--ricos-internal-layout-cell-padding-top,12px) var(--ricos-internal-layout-cell-padding-right,0) var(--ricos-internal-layout-cell-padding-bottom,12px) var(--ricos-internal-layout-cell-padding-left,0);position:relative;z-index:2}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}}@container (width < 480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}.LmXEw ._8Xb4l>*{z-index:1}.glob_fontElementMap,.zMFXn{font-family:var(--ricos-font-family,unset)}.LI-hR{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LI-hR{clear:both;margin:0}}}@container (width < 480px){.LI-hR{clear:both;margin:0}}.-MV-o,.DnKvS,.JLkq2,.L-PUE,.mabWC,.ymErU{font:inherit}.-MV-o:focus-visible,.DnKvS:focus-visible,.JLkq2:focus-visible,.L-PUE:focus-visible,.mabWC:focus-visible,.ymErU:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.JLkq2{color:var(--ricos-custom-h1-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}.JLkq2>*>span,.JLkq2>span span{background-color:var(--ricos-custom-h1-background-color,unset)}.JLkq2 a{font-size:inherit}.L-PUE{color:var(--ricos-custom-h2-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}.L-PUE>*>span,.L-PUE>span span{background-color:var(--ricos-custom-h2-background-color,unset)}.L-PUE a{font-size:inherit}.ymErU{color:var(--ricos-custom-h3-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}.ymErU>*>span,.ymErU>span span{background-color:var(--ricos-custom-h3-background-color,unset)}.ymErU a{font-size:inherit}.mabWC{color:var(--ricos-custom-h4-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}.mabWC>*>span,.mabWC>span span{background-color:var(--ricos-custom-h4-background-color,unset)}.mabWC a{font-size:inherit}.-MV-o{color:var(--ricos-custom-h5-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}.-MV-o>*>span,.-MV-o>span span{background-color:var(--ricos-custom-h5-background-color,unset)}.-MV-o a{font-size:inherit}.DnKvS{color:var(--ricos-custom-h6-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.DnKvS>*>span,.DnKvS>span span{background-color:var(--ricos-custom-h6-background-color,unset)}.DnKvS a{font-size:inherit}._7sCfP{display:block}.TPUvP{margin:15px 18px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}}@container (width < 480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgba(var(--ricos-fallback-color-tuple,0,0,0),.06));color:var(--ricos-custom-code-block-color,var(--ricos-text-color,#212121));font-family:Inconsolata,Menlo,Consolas,monospace;font-size:var(--ricos-custom-code-block-font-size,16px);line-height:var(--ricos-custom-code-block-line-height,26px);margin:var(--ricos-custom-code-block-margin,15px 18px);min-height:29px;padding:var(--ricos-custom-code-block-padding,2px 25px);-webkit-print-color-adjust:exact;print-color-adjust:exact;white-space:pre-wrap}@supports (color:rgb(from #000 r g b/0.1)){.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgb(from var(--ricos-fallback-color,#000000) r g b/.06))}}.TFibM .FNyc6{margin:1em 0}.-XiNm,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.pJkyn{display:flex;font-family:var(--ricos-custom-p-font-family,unset)}.eFTjz{border-inline-start-style:solid;border-inline-start-width:var(--ricos-custom-quote-border-width,3px);border-left-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));border-right-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));color:var(--ricos-custom-quote-color,unset);font-family:var(--ricos-custom-quote-font-family,unset);font-size:18px;font-size:var(--ricos-custom-quote-font-size,18px);font-style:normal;font-style:var(--ricos-custom-quote-font-style,normal);font-weight:var(--ricos-custom-quote-font-weight,unset);letter-spacing:var(--ricos-custom-quote-letter-spacing,unset);line-height:26px;line-height:var(--ricos-custom-quote-line-height,26px);margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,18px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,18px);max-width:100%;min-height:var(--ricos-custom-quote-min-height,unset);padding-bottom:var(--ricos-custom-quote-padding-bottom,6px);padding-top:var(--ricos-custom-quote-padding-top,6px);padding-inline-start:var(--ricos-custom-quote-padding-inline-start,18px);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-quote-text-decoration,unset);text-decoration:var(--ricos-custom-quote-text-decoration,unset)}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}}@container (width < 480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}</style> | |
| 239 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 240 | +<script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[8455,778]</script><script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["form-app-header","form-app-wix-ricos-viewer"]}</script><script async="" data-chunk="form-app-header" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.js"></script><script async="" data-chunk="form-app-wix-ricos-viewer" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-wix-ricos-viewer.chunk.min.js"></script> | |
| 241 | +<style id="css_masterPage">@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w10-light.woff2') format('woff2'); unicode-range: U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116;font-display: swap; | |
| 242 | +} | |
| 243 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w02-light.woff2') format('woff2'); unicode-range: U+000D, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+01FA-01FF, U+0218-021B, U+0237, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03C0, U+1E80-1E85, U+1EF2-1EF3, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 244 | +} | |
| 245 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2') format('woff2'); unicode-range: U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+03BC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 246 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 247 | +} | |
| 248 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 249 | +} | |
| 250 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 251 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 252 | +} | |
| 253 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 254 | +} | |
| 255 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 256 | +} | |
| 257 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 258 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 259 | +} | |
| 260 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 261 | +} | |
| 262 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 263 | +} | |
| 264 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 265 | +} | |
| 266 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 267 | +} | |
| 268 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 269 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 270 | +} | |
| 271 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 272 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 273 | +} | |
| 274 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 275 | +} | |
| 276 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 277 | +} | |
| 278 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 279 | +} | |
| 280 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 281 | +} | |
| 282 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 283 | +} | |
| 284 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 285 | +} | |
| 286 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 287 | +} | |
| 288 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 289 | +} | |
| 290 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 291 | +} | |
| 292 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 293 | +} | |
| 294 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 295 | +} | |
| 296 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 297 | +} | |
| 298 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 299 | +} | |
| 300 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 301 | +} | |
| 302 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 303 | +} | |
| 304 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 305 | +} | |
| 306 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 307 | +} | |
| 308 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 309 | +} | |
| 310 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 311 | +}@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXd0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 312 | +} | |
| 313 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w2aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 314 | +} | |
| 315 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXV0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 316 | +} | |
| 317 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w0aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 318 | +} | |
| 319 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXx0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 320 | +} | |
| 321 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 322 | +} | |
| 323 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 324 | +} | |
| 325 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0ppC8MLnbtg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 326 | +} | |
| 327 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXp-p7K4KLg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 328 | +}#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus, #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus ~ .wixSdkShowFocusOnSibling{--focus-ring-box-shadow:0 0 0 1px #ffffff, 0 0 0 3px #116dff;box-shadow:var(--focus-ring-box-shadow) !important;z-index:1;}.has-inner-focus-ring{--focus-ring-box-shadow:inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;}:root, :host, .spxThemeOverride{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;--color_0:255,255,255;--color_1:255,255,255;--color_2:0,0,0;--color_3:237,28,36;--color_4:0,136,203;--color_5:255,203,5;--color_6:114,114,114;--color_7:176,176,176;--color_8:255,255,255;--color_9:114,114,114;--color_10:176,176,176;--color_11:250,250,250;--color_12:153,153,153;--color_13:102,102,102;--color_14:51,51,51;--color_15:0,0,0;--color_16:183,195,220;--color_17:139,154,186;--color_18:75,99,151;--color_19:50,66,101;--color_20:25,33,50;--color_21:165,182,220;--color_22:124,143,186;--color_23:75,99,151;--color_24:0,36,116;--color_25:0,18,58;--color_26:186,204,218;--color_27:141,164,180;--color_28:80,117,143;--color_29:53,78,95;--color_30:27,39,48;--color_31:255,233,223;--color_32:255,191,161;--color_33:250,133,79;--color_34:234,96,32;--color_35:201,64,1;--color_36:250,250,250;--color_37:0,0,0;--color_38:153,153,153;--color_39:102,102,102;--color_40:51,51,51;--color_41:75,99,151;--color_42:75,99,151;--color_43:75,99,151;--color_44:75,99,151;--color_45:0,0,0;--color_46:51,51,51;--color_47:0,0,0;--color_48:75,99,151;--color_49:75,99,151;--color_50:250,250,250;--color_51:75,99,151;--color_52:75,99,151;--color_53:250,250,250;--color_54:102,102,102;--color_55:102,102,102;--color_56:250,250,250;--color_57:250,250,250;--color_58:75,99,151;--color_59:75,99,151;--color_60:250,250,250;--color_61:75,99,151;--color_62:75,99,151;--color_63:250,250,250;--color_64:102,102,102;--color_65:102,102,102;--wix-ads-height:0px;--sticky-offset:0px;--wix-ads-top-height:0px;--site-width:980px;--above-all-z-index:100000;--portals-z-index:100001;--wix-opt-in-direction:ltr;--wix-opt-in-direction-multiplier:1;--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--minViewportSize:320;--maxViewportSize:1920;--customScaleViewportLimit:clamp(var(--minViewportSize) * 1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize) * 1px));}.theme-vars, .max-width-container{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;}.max-width-container{--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;}.font_0{font:var(--font_0);color:rgb(var(--color_15));letter-spacing:0em;}.font_1{font:var(--font_1);color:rgb(var(--color_14));letter-spacing:0em;}.font_2{font:var(--font_2);color:rgb(var(--color_15));letter-spacing:0em;}.font_3{font:var(--font_3);color:rgb(var(--color_15));letter-spacing:0em;}.font_4{font:var(--font_4);color:rgb(var(--color_15));letter-spacing:0em;}.font_5{font:var(--font_5);color:rgb(var(--color_15));letter-spacing:0em;}.font_6{font:var(--font_6);color:rgb(var(--color_15));letter-spacing:0em;}.font_7{font:var(--font_7);color:rgb(var(--color_15));letter-spacing:0em;}.font_8{font:var(--font_8);color:rgb(var(--color_15));letter-spacing:0em;}.font_9{font:var(--font_9);color:rgb(var(--color_15));letter-spacing:0em;}.font_10{font:var(--font_10);color:rgb(var(--color_14));letter-spacing:0em;}.color_0{color:rgb(var(--color_0));}.color_1{color:rgb(var(--color_1));}.color_2{color:rgb(var(--color_2));}.color_3{color:rgb(var(--color_3));}.color_4{color:rgb(var(--color_4));}.color_5{color:rgb(var(--color_5));}.color_6{color:rgb(var(--color_6));}.color_7{color:rgb(var(--color_7));}.color_8{color:rgb(var(--color_8));}.color_9{color:rgb(var(--color_9));}.color_10{color:rgb(var(--color_10));}.color_11{color:rgb(var(--color_11));}.color_12{color:rgb(var(--color_12));}.color_13{color:rgb(var(--color_13));}.color_14{color:rgb(var(--color_14));}.color_15{color:rgb(var(--color_15));}.color_16{color:rgb(var(--color_16));}.color_17{color:rgb(var(--color_17));}.color_18{color:rgb(var(--color_18));}.color_19{color:rgb(var(--color_19));}.color_20{color:rgb(var(--color_20));}.color_21{color:rgb(var(--color_21));}.color_22{color:rgb(var(--color_22));}.color_23{color:rgb(var(--color_23));}.color_24{color:rgb(var(--color_24));}.color_25{color:rgb(var(--color_25));}.color_26{color:rgb(var(--color_26));}.color_27{color:rgb(var(--color_27));}.color_28{color:rgb(var(--color_28));}.color_29{color:rgb(var(--color_29));}.color_30{color:rgb(var(--color_30));}.color_31{color:rgb(var(--color_31));}.color_32{color:rgb(var(--color_32));}.color_33{color:rgb(var(--color_33));}.color_34{color:rgb(var(--color_34));}.color_35{color:rgb(var(--color_35));}.color_36{color:rgb(var(--color_36));}.color_37{color:rgb(var(--color_37));}.color_38{color:rgb(var(--color_38));}.color_39{color:rgb(var(--color_39));}.color_40{color:rgb(var(--color_40));}.color_41{color:rgb(var(--color_41));}.color_42{color:rgb(var(--color_42));}.color_43{color:rgb(var(--color_43));}.color_44{color:rgb(var(--color_44));}.color_45{color:rgb(var(--color_45));}.color_46{color:rgb(var(--color_46));}.color_47{color:rgb(var(--color_47));}.color_48{color:rgb(var(--color_48));}.color_49{color:rgb(var(--color_49));}.color_50{color:rgb(var(--color_50));}.color_51{color:rgb(var(--color_51));}.color_52{color:rgb(var(--color_52));}.color_53{color:rgb(var(--color_53));}.color_54{color:rgb(var(--color_54));}.color_55{color:rgb(var(--color_55));}.color_56{color:rgb(var(--color_56));}.color_57{color:rgb(var(--color_57));}.color_58{color:rgb(var(--color_58));}.color_59{color:rgb(var(--color_59));}.color_60{color:rgb(var(--color_60));}.color_61{color:rgb(var(--color_61));}.color_62{color:rgb(var(--color_62));}.color_63{color:rgb(var(--color_63));}.color_64{color:rgb(var(--color_64));}.color_65{color:rgb(var(--color_65));}.backcolor_0{background-color:rgb(var(--color_0));}.backcolor_1{background-color:rgb(var(--color_1));}.backcolor_2{background-color:rgb(var(--color_2));}.backcolor_3{background-color:rgb(var(--color_3));}.backcolor_4{background-color:rgb(var(--color_4));}.backcolor_5{background-color:rgb(var(--color_5));}.backcolor_6{background-color:rgb(var(--color_6));}.backcolor_7{background-color:rgb(var(--color_7));}.backcolor_8{background-color:rgb(var(--color_8));}.backcolor_9{background-color:rgb(var(--color_9));}.backcolor_10{background-color:rgb(var(--color_10));}.backcolor_11{background-color:rgb(var(--color_11));}.backcolor_12{background-color:rgb(var(--color_12));}.backcolor_13{background-color:rgb(var(--color_13));}.backcolor_14{background-color:rgb(var(--color_14));}.backcolor_15{background-color:rgb(var(--color_15));}.backcolor_16{background-color:rgb(var(--color_16));}.backcolor_17{background-color:rgb(var(--color_17));}.backcolor_18{background-color:rgb(var(--color_18));}.backcolor_19{background-color:rgb(var(--color_19));}.backcolor_20{background-color:rgb(var(--color_20));}.backcolor_21{background-color:rgb(var(--color_21));}.backcolor_22{background-color:rgb(var(--color_22));}.backcolor_23{background-color:rgb(var(--color_23));}.backcolor_24{background-color:rgb(var(--color_24));}.backcolor_25{background-color:rgb(var(--color_25));}.backcolor_26{background-color:rgb(var(--color_26));}.backcolor_27{background-color:rgb(var(--color_27));}.backcolor_28{background-color:rgb(var(--color_28));}.backcolor_29{background-color:rgb(var(--color_29));}.backcolor_30{background-color:rgb(var(--color_30));}.backcolor_31{background-color:rgb(var(--color_31));}.backcolor_32{background-color:rgb(var(--color_32));}.backcolor_33{background-color:rgb(var(--color_33));}.backcolor_34{background-color:rgb(var(--color_34));}.backcolor_35{background-color:rgb(var(--color_35));}.backcolor_36{background-color:rgb(var(--color_36));}.backcolor_37{background-color:rgb(var(--color_37));}.backcolor_38{background-color:rgb(var(--color_38));}.backcolor_39{background-color:rgb(var(--color_39));}.backcolor_40{background-color:rgb(var(--color_40));}.backcolor_41{background-color:rgb(var(--color_41));}.backcolor_42{background-color:rgb(var(--color_42));}.backcolor_43{background-color:rgb(var(--color_43));}.backcolor_44{background-color:rgb(var(--color_44));}.backcolor_45{background-color:rgb(var(--color_45));}.backcolor_46{background-color:rgb(var(--color_46));}.backcolor_47{background-color:rgb(var(--color_47));}.backcolor_48{background-color:rgb(var(--color_48));}.backcolor_49{background-color:rgb(var(--color_49));}.backcolor_50{background-color:rgb(var(--color_50));}.backcolor_51{background-color:rgb(var(--color_51));}.backcolor_52{background-color:rgb(var(--color_52));}.backcolor_53{background-color:rgb(var(--color_53));}.backcolor_54{background-color:rgb(var(--color_54));}.backcolor_55{background-color:rgb(var(--color_55));}.backcolor_56{background-color:rgb(var(--color_56));}.backcolor_57{background-color:rgb(var(--color_57));}.backcolor_58{background-color:rgb(var(--color_58));}.backcolor_59{background-color:rgb(var(--color_59));}.backcolor_60{background-color:rgb(var(--color_60));}.backcolor_61{background-color:rgb(var(--color_61));}.backcolor_62{background-color:rgb(var(--color_62));}.backcolor_63{background-color:rgb(var(--color_63));}.backcolor_64{background-color:rgb(var(--color_64));}.backcolor_65{background-color:rgb(var(--color_65));}.theme-vars{--variables-m28o2bcx:1440px;}#SITE_HEADER{--bg-overlay-color:transparent;--bg-gradient:none;}#SITE_PAGES{--transition-duration:0ms;}#SITE_FOOTER{--bg-overlay-color:transparent;--bg-gradient:none;}</style> | |
| 329 | +<style id="css_ebqqm">@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 330 | +} | |
| 331 | +@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 332 | +}@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 333 | +} | |
| 334 | +@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 335 | +}@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;font-display: swap; | |
| 336 | +} | |
| 337 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;font-display: swap; | |
| 338 | +} | |
| 339 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 340 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 341 | +} | |
| 342 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 343 | +} | |
| 344 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 345 | +}@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 346 | +} | |
| 347 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 348 | +} | |
| 349 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122;font-display: swap; | |
| 350 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 351 | +} | |
| 352 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 353 | +} | |
| 354 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 355 | +} | |
| 356 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 357 | +}@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 358 | +} | |
| 359 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 360 | +} | |
| 361 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 362 | +} | |
| 363 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 364 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 365 | +} | |
| 366 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 367 | +} | |
| 368 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 369 | +} | |
| 370 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 371 | +} | |
| 372 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 373 | +} | |
| 374 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 375 | +}@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 376 | +} | |
| 377 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 378 | +} | |
| 379 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 380 | +} | |
| 381 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 382 | +} | |
| 383 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 384 | +} | |
| 385 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 386 | +}@font-face {font-family: 'madefor-display-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/26656ec7-c27d-4bdc-a9f4-6b498bbfad69/madefor-display.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f7531dde-c39a-485c-a204-c09154e8d163/v1/madefor-display-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 387 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 388 | +} | |
| 389 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 390 | +}@font-face {font-family: 'madefor-text-bold'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/75da2848-97d9-41cf-accf-3f221b33b291/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 391 | +} | |
| 392 | +@font-face {font-family: 'madefor-text-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/e1e43510-79c8-4017-b833-3c8baaf5dcb6/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 393 | +}@font-face {font-family: 'madefor-text-mediumbold'; font-style: normal; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/dbfbb677-95bd-4b2a-87fb-2ba3101a5f68/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 394 | +} | |
| 395 | +@font-face {font-family: 'madefor-text-mediumbold'; font-style: italic; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/6d5055c2-7d2e-47e7-ba22-fb81f960dffb/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 396 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 397 | +} | |
| 398 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 399 | +} | |
| 400 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 401 | +} | |
| 402 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 403 | +} | |
| 404 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 405 | +} | |
| 406 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 407 | +} | |
| 408 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 409 | +} | |
| 410 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 411 | +} | |
| 412 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 413 | +} | |
| 414 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 415 | +} | |
| 416 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 417 | +} | |
| 418 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 419 | +} | |
| 420 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 421 | +} | |
| 422 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 423 | +} | |
| 424 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 425 | +} | |
| 426 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 427 | +} | |
| 428 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 429 | +} | |
| 430 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 431 | +} | |
| 432 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 433 | +} | |
| 434 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 435 | +}@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w05-reg.woff2') format('woff2'); unicode-range: U+0000, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+017F, U+018F, U+019D, U+01A0-01A1, U+01AF-01B0, U+01E6-01E7, U+01EA-01EB, U+01FA-01FF, U+0218-021B, U+0232-0233, U+0237, U+0259, U+0272, U+02B0, U+02BB-02BC, U+02C9, U+02CB, U+02D8-02D9, U+02DB, U+02DD, U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D7, U+0400-045F, U+0472-0475, U+048A-04FF, U+0510-0513, U+051C-051D, U+0524-0527, U+052E-052F, U+1E02-1E03, U+1E0A-1E0B, U+1E1E-1E1F, U+1E22-1E23, U+1E56-1E57, U+1E60-1E61, U+1E6A-1E6B, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200A, U+2015, U+201B, U+2032-2033, U+203D-203E, U+2070, U+2074-2079, U+207D-2089, U+208D-208E, U+20A1, U+20A3-20A4, U+20A6-20AB, U+20B4, U+20B8-20BA, U+20BC-20BD, U+2113, U+2116-2117, U+2120, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2190-2193, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22B2-22B3, U+22C5, U+2318, U+25A0, U+25B2, U+25BC, U+25CA, U+25CF, U+2605, U+2610-2611, U+2666, U+2713, U+2E18, U+E004-E005, U+F43A-F43B, U+F460-F473, U+F498-F49F, U+F4C6-F4C7, U+F4CC-F4CD, U+F4D2-F4D7, U+F50A-F50B, U+F50E-F533, U+F536-F539, U+F53C-F53F, U+F637, U+F6C3, U+F6DD, U+F6DF-F6F3, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 436 | +} | |
| 437 | +@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w01-reg.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+F656-F659;font-display: swap; | |
| 438 | +}#ebqqm{height:auto;--comp-display:unset;position:relative;}#ebqqm .ebqqm-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:clip;overflow-y:clip;}#ebqqm .ebqqm-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:auto auto auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#ebqqm:not(.ebqqm-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#ebqqm .ebqqm-container{grid-template-rows:auto auto;}}#ebqqm{--bg:var(--color_11);--alpha-bg:1;--static-spx:0.1 * var(--one-unit);}#PAGE_SECTIONSebqqm{--above-all-in-container:49;}#comp-m8omcigd2{z-index:50;--above-all-in-container:10000;}#comp-m8omcih716-pinned-layer{z-index:54;--above-all-in-container:10000;}#comp-m8omcih82-pinned-layer{z-index:55;--above-all-in-container:10000;}#comp-m8omcihb-pinned-layer{z-index:56;--above-all-in-container:10000;}#comp-m8oopad5-pinned-layer{z-index:57;--above-all-in-container:10000;}#comp-m9cxxt3r-pinned-layer{z-index:58;--above-all-in-container:10000;}#comp-mfl8zvjs-pinned-layer{z-index:59;--above-all-in-container:10000;}#comp-m8omdbdn{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbdn .comp-m8omdbdn-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:130px;padding-right:5%;padding-left:5%;padding-bottom:120px;row-gap:50px;column-gap:50px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(42px,max-content) minmax(90px,max-content) max-content max-content max-content;grid-template-columns:0.46613402505813634fr 0.5338659749418637fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbdn .comp-m8omdbdn-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content minmax(200px,max-content) max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbdn{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8oqdae2{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/2/6/3;position:relative;}#comp-m8oqdae2 .comp-m8oqdae2-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqdae2{grid-area:5/1/6/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqdae2{grid-area:5/1/6/2;}}#comp-m8oqdae2{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbe910{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.99795672678148%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:start;position:sticky;--force-auto:initial;top:var(--force-auto,calc(250px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:min(-0.5px, -0.0001698 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;--is-sticky:1;}.comp-m8omdbe910-container{box-sizing:border-box;row-gap:25px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbe910{justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));margin-left:0px;margin-right:max(0.5px, 0.0000013 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8omdbe910{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea7{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbea7-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbea7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea15{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{margin-bottom:5px;}}#comp-m8omdbea15{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{--fontSize:35spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15{--fontSize:25spx;}}#comp-m8omdbeb13{--l_display:unset;height:auto;min-width:0px;width:99.99898635118323%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbeb13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13{--fontSize:16px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13{--fontSize:14px;}}#comp-m8omdbec6{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}.comp-m8omdbec6-container{box-sizing:border-box;row-gap:15px;column-gap:30px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:0.9999535462010356fr 1.0000464537989644fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbec6-container{row-gap:25px;grid-template-rows:max-content max-content max-content max-content max-content auto max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbec6{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbec15{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbec15{justify-self:center;}}#comp-m8omdbec15{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeg9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeg9{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbeg9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeh9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeh9{justify-self:center;grid-area:3/1/4/2;}}#comp-m8omdbeh9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbei9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/2/3/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbei9{justify-self:center;grid-area:4/1/5/2;}}#comp-m8omdbei9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdben{min-height:200px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0022421 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:5/1/6/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdben{margin-bottom:0px;grid-area:7/1/8/2;}}#comp-m8omdben{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--alpha-brd:1;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:157,157,157;--alpha-brdh:1;--bgd:255,255,255;--alpha-bgd:1;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:225,225,225;--alpha-brdd:1;--brwf:1px;--bgf:255,255,255;--brdf:157,157,157;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--alpha-bgf:0;--alpha-bge:0;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdber7{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/1/4/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdber7{justify-self:center;grid-area:5/1/6/2;}}#comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeu13{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeu13{margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbeu13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbew{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbew{justify-self:end;margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbew{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--color:255,64,64;--alpha-color:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbex1{min-height:0px;--l_display:unset;height:42px;min-width:0px;width:175px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:6/1/7/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbex1{height:50px;width:166px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbex1{height:42px;width:100%;align-self:start;justify-self:center;margin-top:max(0.5px, 0.0511093 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:8/1/9/2;}}#comp-m8or8zjr{min-height:50px;--l_display:unset;height:50px;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/2/4/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8or8zjr{align-self:start;grid-area:6/1/7/2;}}#comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdr7{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/3;position:relative;}#comp-m8omdbdr7 .comp-m8omdbdr7-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}#comp-m8omdbdr7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82o{min-height:0px;--l_display:unset;height:auto;width:max-content;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8oqu82o-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82o{margin-bottom:max(0.5px, 0.0013542 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8oqu82o{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82u{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82u{margin-right:4.546875px;}}#comp-m8oqu82u{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu82z{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82z{--l_display:none;}}#comp-m8oqu82z{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu8301{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu8301{--l_display:none;}}#comp-m8oqu8301{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdy12{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:3/1/4/3;position:relative;}#comp-m8omdbdy12 .comp-m8omdbdy12-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdy12 .comp-m8omdbdy12-container{grid-template-rows:minmax(max-content,0%);}#comp-m8omdbdy12{grid-area:3/1/4/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdy12{grid-area:3/1/4/2;}}#comp-m8omdbdy12{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94r{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omf94r .comp-m8omf94r-overflow-wrapper{position:relative;display:flex;flex-direction:column;flex-grow:1;overflow-x:clip;overflow-y:clip;}#comp-m8omf94r .comp-m8omf94r-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.3644933 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,1281.0065419921875fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94r{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94t{min-height:0px;height:auto;min-width:0px;width:auto;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omf94t .comp-m8omf94t-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:hidden;}#comp-m8omf94t .comp-m8omf94t-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94t:not(.comp-m8omf94t-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omdbey11{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/1/5/2;position:relative;}#comp-m8omdbey11 .comp-m8omdbey11-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbey11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbez{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbez{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.6em;--letterSpacing:0em;--fontFamily:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez{--fontSize:16px;}}#comp-m8omdbf0{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;position:sticky;--force-auto:initial;top:var(--force-auto,calc(120px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:2/1/3/3;--is-sticky:1;}#comp-m8omdbf0 .comp-m8omdbf0-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf0{position:sticky;--force-auto:initial;top:var(--force-auto,calc(50px + var(--sticky-offset, 0px)));grid-area:2/1/3/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf0{position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));grid-area:2/1/3/2;}}#comp-m8omdbf0{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf1{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:calc((100% + 20px));max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}.comp-m8omdbf1-container{box-sizing:border-box;padding-top:20px;padding-right:20px;padding-left:20px;padding-bottom:20px;row-gap:0px;column-gap:max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.014375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:1.0000260323504566fr max-content max-content max-content max-content 1.0000260323504566fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:minmax(25.000003814697266px,max-content) minmax(25.000003814697266px,max-content);grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;}}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:max-content max-content max-content;grid-template-columns:1fr 1fr;}}#comp-m8omdbf1{--brw:0px;--brd:var(--color_13);--bg:var(--color_11);--rd:20px 20px 20px 20px;--shd:0.00px 1.00px 5px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf2{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbf2-container{box-sizing:border-box;padding-top:8px;padding-right:20px;padding-left:20px;padding-bottom:8px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,308.1247194824219fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf2{grid-area:1/1/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf2{width:100%;grid-area:1/1/2/2;}.comp-m8omdbf2-container{grid-template-columns:minmax(0px,114.55728587646485fr);}}#comp-m8omdbf2{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf211{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbf211{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--textAlign:center;--fontSize:20spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf39{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{justify-self:center;margin-right:0px;grid-area:1/3/2/5;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{justify-self:center;margin-right:max(0.5px, 0.0013627 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/1/3/3;}}#comp-m8omdbf39{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--fontFamily:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontSize:20spx;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}#comp-m8omdbf415{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}#comp-m8omdbf415 .comp-m8omdbf415-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf415{min-width:100%;margin-right:max(0.5px, 0.1341394 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/2/3/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf415 .comp-m8omdbf415-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf415{margin-right:0px;grid-area:3/1/4/2;}}#comp-m8omdbf415{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf510{--l_display:unset;height:auto;--aspect-ratio:1;width:30px;max-width:30px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf510{width:16.305280002590564%;justify-self:center;}}#comp-m8omdbf510{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf61{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf61-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf61{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbf61{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf68{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbf68{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68{--minFontSize:12px;--fontSize:14spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68{--minFontSize:14px;--fontSize:7.009spx;}}#comp-m8omdbf711{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbf711{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711{--minFontSize:12px;--fontSize:14spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711{--minFontSize:14px;--fontSize:7.009spx;--fontWeight:normal;}}#comp-m8omdbf82{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/4/2/5;position:relative;}#comp-m8omdbf82 .comp-m8omdbf82-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf82{min-width:100%;margin-left:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/4/3/6;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf82 .comp-m8omdbf82-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf82{margin-left:0px;margin-right:0px;grid-area:3/2/4/3;}}#comp-m8omdbf82{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf813{width:30px;height:auto;--aspect-ratio:0.9999999364217163;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf813{width:16.304364105482172%;--aspect-ratio:1;justify-self:center;}}#comp-m8omdbf813{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf97{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf97-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf97{grid-area:2/1/3/2;}}#comp-m8omdbf97{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf916{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{margin-right:10px;}}#comp-m8omdbf916{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfa13{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfa13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfb14{min-height:0px;--comp-display:flex;--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:max(0.5px, 7e-7 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/5/2/6;position:relative;}#comp-m8omdbfb14 .comp-m8omdbfb14-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfb14{width:87.03812863519576%;justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.001081 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.000012 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/5/3/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfb14{justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.0013267 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:2/2/3/3;}}#comp-m8omdbfb14{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc3{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbfc3-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc3{justify-self:end;}}#comp-m8omdbfc3{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc10{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbfc10{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfd11{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfd11{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfe{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/6/2/7;position:relative;}.comp-m8omdbfe-container{box-sizing:border-box;padding-top:10px;padding-right:30px;padding-left:30px;padding-bottom:10px;column-gap:20px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.009375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,105.28693225097658fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfe{margin-right:max(0.5px, 0.0006672 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/5/2/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfe{width:100%;margin-right:max(0.5px, 0.0013138 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}.comp-m8omdbfe-container{grid-template-columns:minmax(0px,94.56599675292969fr);}}#comp-m8omdbfe{--brw:1px;--brd:157,157,157;--bg:246,246,246;--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.1);--gradient:none;--alpha-brd:0.2;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfe11{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:max(0.5px, 0.0000055 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}.comp-m8omdbfe11-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbfe11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbff{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:1px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbff{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8ooawu0{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:5px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8ooawu0{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfg7{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0035088 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omdbfg7{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oobbzb{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}#comp-m8oobbzb{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oqa661{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:5/1/6/2;position:relative;}#comp-m8oqa661 .comp-m8oqa661-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqa661{grid-area:6/1/7/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqa661{grid-area:6/1/7/2;}}#comp-m8oqa661{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqbc3l{min-height:250px;--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8oqbc3l{--static-spx:1px;}#comp-m8omcigd2{width:auto;height:auto;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:2/1/3/2;position:relative;}.comp-m8omcigd2-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2:not(.comp-m8omcigd2-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2{--l_display:unset;}}#comp-m8omcigd2{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcigd2_r_comp-kbgakgyt{min-height:267.2430725097656px;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:7/1/8/2;position:relative;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:5%;padding-right:3%;padding-left:3%;padding-bottom:5%;row-gap:30px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);display:var(--l_display,var(--container-display));grid-template-rows:minmax(89.25276263439997px,auto) minmax(5.664037365600061px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt:not(.comp-m8omcigd2_r_comp-kbgakgyt-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;}}#comp-m8omcigd2_r_comp-kbgakgyt{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y11976{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{box-sizing:border-box;position:relative;pointer-events:none;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:0.78897289824462fr 0.5938730200850597fr 1.1149251916876468fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{row-gap:20px;grid-template-rows:minmax(max-content,36.4128993682897%) minmax(max-content,30.428289182936023%) minmax(max-content,33.15881144877427%);grid-template-columns:minmax(0px,1fr);}}#comp-m8omcigd2_r_comp-m2y11976{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y12dql{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y12dql{align-self:center;justify-self:start;margin-top:0px;grid-area:2/1/3/2;}}#comp-m8omcigd2_r_comp-m2y12dql{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1gxle{width:100%;height:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:55.0694580078125px;margin-left:0%;margin-bottom:0%;margin-right:0%;grid-area:1/3/2/4;position:relative;}.comp-m8omcigd2_r_comp-m2y1gxle-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y1gxle{align-self:center;margin-top:0px;grid-area:3/1/4/2;}}#comp-m8omcigd2_r_comp-m2y1gxle{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y1gkmp{--l_display:unset;height:auto;min-width:0px;width:53.70486122406853%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:63.50348472595215px;align-self:flex-start;order:1;position:relative;}#comp-m8omcigd2_r_comp-m2y1gkmp{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1awex{--l_display:unset;height:62.145843505859375px;min-width:333.7778015136719px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-top:0%;margin-right:0%;margin-left:0.005193163273693327%;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m8j7owsd{width:99.9999390940607%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcigd2_r_comp-m8j7owsd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcigd2_r_comp-m8j7owsd{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m8j7o6oq{width:105px;height:auto;--aspect-ratio:0.38645833333333335;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15.000030517578125px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:20px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:19.812px;}}#comp-m8omcigd2_r_comp-m8j7o6oq{--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y10ib8{--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m2y10ib8{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em montserrat,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 16px/1.6em montserrat,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:10px;--menuSpacing:0px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-mbweuill{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omcigd2_r_comp-mbweuill{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-kd5pdf7t{--l_display:unset;height:auto;min-width:0px;width:62.50000000000002%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:center;pointer-events:auto;margin-left:0.004035058593672147px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kd5pdf7t{width:100%;}}#comp-m8omcigd2_r_comp-kd5pdf7t{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textAlign:center;--fontSize:12px;--lineHeight:normal;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716{height:auto;width:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcih716-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716:not(.comp-m8omcih716-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih716{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcih716_r_comp-kd5px9hr{min-height:100vh;height:100vh;min-width:0px;width:300px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(0px,1fr);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr:not(.comp-m8omcih716_r_comp-kd5px9hr-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9hr{width:100vw;max-width:99999px;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{grid-template-columns:minmax(0px,390fr);}}#comp-m8omcih716_r_comp-kd5px9hr{--containerBackground:var(--color_11);--alpha-containerBackground:1;--bg:var(--color_15);--alpha-bg:0.8;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;width:60%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:100px;margin-bottom:200px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{width:46.15384615384615%;}}#comp-m8omcih716_r_comp-kd5px9kk{--bgs:var(--color_11);--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:var(--color_11);--brw:0px 0px 0px 0px;--brd:var(--color_15);--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_15);--alpha-txt:1;--arrowColor:var(--color_15);--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:var(--color_11);--txtsSub:var(--color_18);--alpha-txtsSub:1;--txts:var(--color_18);--alpha-txts:1;--bgexpanded:var(--color_11);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_15);--alpha-txtexpanded:1;--subMenuSpacing:25px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light {color_14};--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0.2;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}#comp-m8omcih716_r_comp-kkmqi5tc{height:20px;width:20px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;position:sticky;--force-auto:initial;top:var(--force-auto,calc(0px + var(--sticky-offset, 0px)));bottom:var(--force-auto,);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0%;margin-right:40px;margin-top:40px;margin-bottom:0px;grid-area:1/1/2/2;--is-sticky:1;}#comp-m8omcih716_r_comp-kkmqi5tc{--static-spx:0.1 * var(--one-unit);}#comp-m8omcih82{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih82-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih82{--static-spx:1px;}#comp-m8omcihb{width:auto;height:auto;--comp-display:unset;align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);grid-area:1/1/2/2;position:relative;}.comp-m8omcihb-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb:not(.comp-m8omcihb-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#masterPage:not(.landingPage){--top-offset:var(--header-height);}#masterPage.landingPage{--top-offset:0px;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb{--l_display:unset;}#masterPage:not(.landingPage){--top-offset:0px;}}#comp-m8omcihb{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcihb_r_comp-kbgajy18{min-height:31.493057250976562px;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-kbgajy18 .comp-m8omcihb_r_comp-kbgajy18-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:0%;padding-left:0%;padding-bottom:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(31.493042749023438px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-kbgajy18:not(.comp-m8omcihb_r_comp-kbgajy18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-kbgajy18{min-height:0px;--l_display:unset;align-self:start;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);}#comp-m8omcihb_r_comp-kbgajy18-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}}#comp-m8omcihb_r_comp-kbgajy18{--bg:var(--color_11);--bg-scrl:var(--color_19);--alpha-bg:0;--alpha-bg-scrl:0.5;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m6saac0q{height:27px;width:23px;--l_display:none;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:2.2%;margin-top:0px;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-m6saadbd{min-height:40px;--l_display:none;height:40px;width:120px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-top:0px;margin-right:70px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m6saadbd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd:not(.comp-m8omcihb_r_comp-m6saadbd-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd{--static-spx:1px;}#comp-m8omcihb_r_comp-mdeyh2rw{min-height:0px;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdeyh2rw-container{box-sizing:border-box;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(30px,auto) auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyh2rw{align-self:center;}.comp-m8omcihb_r_comp-mdeyh2rw-container{grid-template-rows:38px auto;}}#comp-m8omcihb_r_comp-mdeyh2rw{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:0.00px 1.00px 15px 1px rgba(0,0,0,0.33);--gradient:none;--alpha-brd:0;--alpha-bg:0;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xyvk9x{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:2/1/3/2;position:relative;}#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:15px;padding-right:4%;padding-left:4%;padding-bottom:15px;column-gap:2vw;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:auto 2fr auto max-content;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:20px;padding-left:20px;column-gap:20px;grid-template-columns:0.7455718081753153fr 1.4241559701215807fr 0.2028363141690787fr;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:15px;padding-left:15px;column-gap:12px;grid-template-columns:1.7156281834535556fr 0.19719864177627078fr 0.19719864177627078fr;}#comp-m8omcihb_r_comp-m2xyvk9x{margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;}}#comp-m8omcihb_r_comp-m2xyvk9x{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0.5;--backdrop-filter:blur(10px);--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xz2cwh{min-height:25px;--l_display:unset;height:auto;min-width:91px;width:20.58464803554209%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0.0014034987297066638%;margin-top:0%;margin-bottom:0%;grid-area:1/2/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xz2cwh{--l_display:none;min-width:95px;width:99.99991051557328%;justify-self:center;margin-left:0.05670408489563268%;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-m2xz2cwh{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:0;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:1;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1)scaleY(1)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1.02)scaleY(1.02)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-lxu2mi30{min-height:0px;--l_display:none;height:35px;min-width:0px;width:35px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:2.999267578125%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-lxu2mi30-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi30:not(.comp-m8omcihb_r_comp-lxu2mi30-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:35px;width:35px;margin-right:0%;grid-area:1/3/2/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:25px;width:30px;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-lxu2mi30{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxu2mi38{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c{min-height:300px;--l_display:unset;height:300px;min-width:0px;width:980px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:scroll;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c:not(.comp-m8omcihb_r_comp-lxu2mi3c-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}#comp-m8omcihb_r_comp-lxu2mi3d5{min-height:79px;--l_display:unset;height:auto;min-width:0px;width:40%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(79px,auto);grid-template-columns:minmax(0px,512fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3d5:not(.comp-m8omcihb_r_comp-lxu2mi3d5-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:50%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,339.7816875fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:100%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,390fr);}}#comp-m8omcihb_r_comp-lxu2mi3i1{min-height:0px;--l_display:unset;height:20px;min-width:0px;width:20px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:45.890625px;margin-top:34.5px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1{margin-right:0px;margin-top:0px;}}#comp-m8omcihb_r_comp-m5rceko6{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:333.23333740234375px;margin-left:0%;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m5rceko6-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:20vh;margin-left:0px;margin-bottom:20vh;margin-right:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:0vh;margin-left:0px;margin-bottom:1.834175071348669vh;margin-right:0px;}}#comp-m8omcihb_r_comp-m5rceko6{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdezy72f{min-height:0px;--l_display:none;height:auto;min-width:0px;width:52%;max-width:99999px;max-height:99999px;--comp-display:unset;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));align-self:flex-start;order:2;position:relative;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));column-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));flex-direction:row;justify-content:center;flex-wrap:wrap;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcihb_r_comp-mdezy72f:not(.comp-m8omcihb_r_comp-mdezy72f-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezy72f{margin-bottom:29.999984741210938px;order:1;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezy72f{--l_display:unset;margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:2;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{row-gap:5px;column-gap:0px;flex-direction:column;justify-content:flex-start;flex-wrap:nowrap;}}#comp-m8omcihb_r_comp-mdezy72f{--brw:0px;--brd:50,65,88;--bg:255,255,255;--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}.comp-m8omcihb_r_comp-mdezy72s{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;padding-top:5px;padding-right:0px;padding-left:0px;padding-bottom:5px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;flex-basis:auto;flex-grow:0;flex-shrink:0;position:relative;}.comp-m8omcihb_r_comp-mdezy72s{--brw:0px;--brd:var(--color_15);--bg:var(--color_12);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdezy72s{--alpha-bg:0;}}.comp-m8omcihb_r_comp-mdf0r6km{--l_display:none;height:auto;min-width:0px;width:18.125%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0042666 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:max(0.5px, 0.1398222 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--l_display:unset;width:max-content;align-self:center;justify-self:start;margin-right:0px;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0r6km{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--fontSize:12spx;}}.comp-m8omcihb_r_comp-mdf0tx18{min-height:110px;--l_display:none;height:auto;min-width:0px;width:185px;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;align-self:center;justify-self:center;pointer-events:auto;margin-top:max(0.5px, 0.0078133 * (var(--scaling-factor) - var(--scrollbar-width)));margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdf0tx18:not(.comp-m8omcihb_r_comp-mdf0tx18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{min-height:0px;--l_display:unset;height:100%;width:100%;align-self:start;justify-self:start;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0tx18{--font:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--color:#000000;--label-display:none;--letter-spacing:0em;--line-height:unset;--text-decoration:none;--direction:rtl;--text-align:center;--text-highlight:none;--text-transform:none;--text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--text-shadow:0px 0px 0px transparent;--background:rgba(255,255,255,1);--box-shadow:1px 2px 8px 1px rgba(0,0,0,0.1);--border-left:2px dashed rgba(199,199,199,1);--border-right:2px dashed rgba(199,199,199,1);--border-top:2px dashed rgba(199,199,199,1);--border-bottom:2px dashed rgba(199,199,199,1);--padding-bottom:8px;--padding-top:8px;--padding-left:8px;--padding-right:8px;--border-top-left-radius:6px;--border-top-right-radius:6px;--border-bottom-left-radius:6px;--border-bottom-right-radius:6px;--icon-display:initial;--icon-size:24px;--icon-color:rgba(0,0,0,1);--icon-rotation:0;--container-flex-direction:row-reverse;--container-justify-content:center;--container-align-items:center;--content-horizontal-alignment:center;--content-gap:0px;--label-overflow:wrap;--disabled-icon-rotation:0;--hover-border-right:2px solid rgba(141,181,255,1);--disabled-border-bottom:2px solid rgba(199,199,199,1);--disabled-border-top:2px solid rgba(199,199,199,1);--hover-border-left:2px solid rgba(141,181,255,1);--disabled-background:rgba(199,199,199,1);--disabled-border-right:2px solid rgba(199,199,199,1);--disabled-color:#000000;--hover-border-top:2px solid rgba(141,181,255,1);--hover-border-bottom:2px solid rgba(141,181,255,1);--disabled-border-left:2px solid rgba(199,199,199,1);--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{--background:rgba(255,255,255,0);--box-shadow:none;--border-left:0px dashed rgba(199,199,199,1);--border-right:0px dashed rgba(199,199,199,1);--border-top:0px dashed rgba(199,199,199,1);--border-bottom:0px dashed rgba(199,199,199,1);--icon-display:none;}}#comp-m8omcihb_r_comp-m5rceatr{min-height:25px;--l_display:unset;height:auto;min-width:95px;width:58.8235294117647%;max-width:200px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:20px;order:2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:3;}}#comp-m8omcihb_r_comp-m5rceatr{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:1;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:0.7;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxubhuix{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.8529411764706%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:29.999969482421875px;align-self:flex-end;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:29.999984741210938px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:10px;}}#comp-m8omcihb_r_comp-lxubhuix{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:0px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--fnt:normal normal 700 18px/1.6em montserrat,sans-serif;--fntSubMenu:normal normal normal 14px/1.6em montserrat,sans-serif;--menuSpacing:0px;}}#comp-m8omcihb_r_comp-mdezahz3{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezahz3{order:3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezahz3{order:4;}}#comp-m8omcihb_r_comp-mdezahz3{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m73v5p0x{width:23px;height:27px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:4.01666259765625px;grid-area:1/4/2/5;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m73v5p0x{margin-right:0px;margin-bottom:0px;grid-area:1/2/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m73v5p0x{width:20px;height:23.8203125px;margin-right:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.0000213 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-m8j7mq6v{min-height:0px;--l_display:unset;height:40.5703125px;min-width:0px;width:105px;max-width:99999px;max-height:99999px;--aspect-ratio:auto;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:min(-0.5px, 0 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0000062 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m8j7mq6v{margin-left:0px;margin-bottom:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m8j7mq6v{min-height:unset;height:auto;--aspect-ratio:0.3380208333333333;width:120px;}}#comp-m8omcihb_r_comp-m8j7mq6v{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m99166jr{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:85.59978065360544%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:max(0.5px, 0.0678332 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m99166jr{--l_display:none;width:auto;align-self:center;justify-self:stretch;margin-right:0%;margin-bottom:0%;}}#comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdez2caz{min-height:0px;--l_display:unset;height:80%;min-width:2px;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdez2caz{justify-self:end;margin-right:15px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdez2caz{--lnw:1px;--brd:var(--color_11);--mrg:1px;--alpha-brd:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdeyhsow{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:5%;padding-left:5%;padding-bottom:0px;column-gap:30px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:1fr 1fr auto;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{padding-top:5px;padding-bottom:5px;grid-template-columns:auto max-content;}}#comp-m8omcihb_r_comp-mdeyhsow{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdeylyv3{min-height:unset;--l_display:unset;height:auto;--aspect-ratio:0.4;min-width:0px;width:100%;max-width:99999px;max-height:99999px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{width:38.114694739409835%;grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--orientation:HORIZ;--spacing:10px;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:33.599spx;--spacing:10.001spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--spacing:10px;}}#comp-m8omcihb_r_comp-mdeyqfi8{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyqfi8{--l_display:none;align-self:end;margin-left:max(0.5px, 0.08 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0%;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdf18wki{--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--l_display:unset;width:max-content;align-self:center;justify-self:end;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdf18wki{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--textDecoration:none;--color:var(--color_11);--alpha-color:1;--fontSize:4.216spx;}}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{--alpha-txth:1;--bgh:43,104,156;--shd:0 1px 4px rgba(0, 0, 0, 0.6);--rd:20px;--alpha-brdh:1;--txth:255,255,255;--alpha-brd:1;--alpha-bg:1;--bg:61,155,233;--txt:255,255,255;--alpha-bgh:1;--brw:0px;--fnt:normal normal normal 14px/1.4em raleway;--brd:43,104,156;--boxShadowToggleOn-shd:none;--alpha-txt:1;--brdh:61,155,233;--static-spx:1px;}#comp-m8oopad5{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8oopad5-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8oopad5{--static-spx:1px;}#comp-m9cxxt3r{width:auto;height:auto;--comp-display:unset;align-self:end;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:10px;margin-bottom:0px;margin-left:0px;grid-area:1/1/2/2;position:relative;}.comp-m9cxxt3r-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m9cxxt3r:not(.comp-m9cxxt3r-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m9cxxt3r-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;bottom:0;top:unset;height:auto;}#comp-m9cxxt3r{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m9cxxt3r_r_comp-m9cxxr9c{height:auto;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m9cxxt3r{justify-self:end;align-self:end;position:absolute;grid-area:1 / 1 / 2 / 2;pointer-events:auto;}#comp-mfl8zvjs{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-mfl8zvjs-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-mfl8zvjs{--static-spx:1px;}</style> | |
| 439 | +<style id="stylableCss_ebqqm">/* END STYLABLE DIRECTIVE RULES */ | |
| 440 | + | |
| 441 | +#comp-m8omdbex1 .style-m8omdbey8__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border-radius: 10px;border: 0px solid #000000;background: #4B6397;padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px} | |
| 442 | + | |
| 443 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 444 | + | |
| 445 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover { | |
| 446 | + background: #999999; | |
| 447 | + border: 0px solid #000000; | |
| 448 | +} | |
| 449 | + | |
| 450 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__icon { | |
| 451 | + fill: #000000; | |
| 452 | + transform: rotate(317deg);} | |
| 453 | + | |
| 454 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__label { | |
| 455 | + color: #000000; | |
| 456 | +} | |
| 457 | + | |
| 458 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled{background: #E2E2E2} | |
| 459 | + | |
| 460 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__label{color: #8F8F8F} | |
| 461 | + | |
| 462 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 463 | + | |
| 464 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__container{transition: inherit;flex-direction: row;justify-content: center;align-items: center} | |
| 465 | + | |
| 466 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;display: initial;margin-left: 0px;margin-right: 5px; font-family: montserrat,sans-serif; font-size: calc(19 * var(--theme-spx-ratio)); font-weight: normal; font-style: normal;font-size: 16px;color: #FAFAFA} | |
| 467 | + | |
| 468 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;margin-right: 0px;width: 14px;height: 14px;margin-left: 5px;fill: #FAFAFA}@media screen and (min-width: 320px) and (max-width: 1000px){/* END STYLABLE DIRECTIVE RULES */ | |
| 469 | + | |
| 470 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 471 | + | |
| 472 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { font-size: calc(19 * var(--theme-spx-ratio)); | |
| 473 | + font-size: 16px; | |
| 474 | +}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 475 | + | |
| 476 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon { | |
| 477 | + width: 12px; | |
| 478 | + height: 12px; | |
| 479 | + margin-left: 4px; | |
| 480 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 481 | + | |
| 482 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 483 | + | |
| 484 | +#comp-m8omdbex1 .style-m8omdbey8__root{ | |
| 485 | + padding-right: 0px; | |
| 486 | +} | |
| 487 | + | |
| 488 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { | |
| 489 | + margin-right: 4px; font-size: calc(19 * var(--theme-spx-ratio)); | |
| 490 | + font-size: 16px; | |
| 491 | +}}/* END STYLABLE DIRECTIVE RULES */ | |
| 492 | + | |
| 493 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding: 0px;border: 0px solid #949494;border-radius: 0px;background: rgba(255, 255, 255, 0)} | |
| 494 | + | |
| 495 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 496 | + | |
| 497 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover { | |
| 498 | + background: rgba(255, 255, 255, 0); | |
| 499 | + border: 0px solid #000000; | |
| 500 | +} | |
| 501 | + | |
| 502 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__icon { | |
| 503 | + transform: rotate(0deg); | |
| 504 | + fill: #4B6397;} | |
| 505 | + | |
| 506 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__label { | |
| 507 | + color: #FFFFFF; | |
| 508 | +} | |
| 509 | + | |
| 510 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled{border: 0px solid #000000;background: #EEEEEE} | |
| 511 | + | |
| 512 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__label{ | |
| 513 | + color: #4F4F4F} | |
| 514 | + | |
| 515 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 516 | + | |
| 517 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 518 | + | |
| 519 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #000000; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;margin-right: 0px;margin-left: 0px;margin-top: 0px;margin-bottom: 0px;display: none} | |
| 520 | + | |
| 521 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;width: 60px;height: 60px;margin-left: 0px;margin-right: 0px;margin-bottom: 0px;margin-top: 0px;fill: #000000;display: initial}@media screen and (min-width: 320px) and (max-width: 1000px){ | |
| 522 | + | |
| 523 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 524 | + -st-extends: HamburgerOpenButton; | |
| 525 | + border: 0px solid #000000; | |
| 526 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 527 | + | |
| 528 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 529 | + | |
| 530 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 531 | + fill: #FAFAFA;}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 532 | + | |
| 533 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 534 | + -st-extends: HamburgerOpenButton; | |
| 535 | + border: 0px solid #000000; | |
| 536 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 537 | + | |
| 538 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 539 | + | |
| 540 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 541 | + fill: #FAFAFA;}}#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 542 | + | |
| 543 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 544 | + | |
| 545 | +#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-styleId__root { -st-extends: HamburgerOverlay; background-color: rgba(0, 0, 0, 0.8); }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 546 | + | |
| 547 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 548 | + | |
| 549 | +/* END STYLABLE DIRECTIVE RULES */}#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 550 | + | |
| 551 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 552 | + | |
| 553 | +#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root { -st-extends: HamburgerMenuContainer; background-color: #FFFFFF; }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 554 | + | |
| 555 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 556 | + | |
| 557 | +/* END STYLABLE DIRECTIVE RULES */}/* END STYLABLE DIRECTIVE RULES */ | |
| 558 | + | |
| 559 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding-right: 0px;border-radius: 300px;background: rgba(255, 255, 255, 0)} | |
| 560 | + | |
| 561 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 562 | + | |
| 563 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover { | |
| 564 | + background: #FFFFFF; | |
| 565 | + border: 0px solid #000000; | |
| 566 | + border-radius: 0px; | |
| 567 | +} | |
| 568 | + | |
| 569 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__icon { | |
| 570 | + fill: #000000; | |
| 571 | + transform: rotate(90deg);} | |
| 572 | + | |
| 573 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__label { | |
| 574 | + color: #000000; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled{ | |
| 578 | + background: #EEEEEE} | |
| 579 | + | |
| 580 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__label{ | |
| 581 | + color: #4F4F4F} | |
| 582 | + | |
| 583 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 584 | + | |
| 585 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 586 | + | |
| 587 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #FFFFFF; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;display: none;margin-left: 1px} | |
| 588 | + | |
| 589 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;transform: rotate(0deg);fill: #000000;width: 28px;height: 28px;margin-right: 1px}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1 {/* START STYLABLE DIRECTIVE RULES */} | |
| 590 | + | |
| 591 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 592 | + | |
| 593 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{ | |
| 594 | + -st-extends: HamburgerCloseButton; | |
| 595 | +}}</style> | |
| 596 | +<style id="compCssMappers_ebqqm">#ebqqm{--shc-mutated-brightness:125,125,125;justify-self:unset;}#comp-m8omdbdn{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;--inherit-transition:var(--transition, none);}#comp-m8oqdae2{--shc-mutated-brightness:125,125,125;}#comp-m8omdbe910{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea7{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea15{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0466045 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0664894 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}#comp-m8omdbeb13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:14px !important;}}#comp-m8omdbec6{--shc-mutated-brightness:77,77,77;}#comp-m8omdbec15{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeg9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeh9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbei9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdben{--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--align:start;--textPaddingTop:0.75em;--textPaddingStart:12px;--textPaddingEnd:10px;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdber7{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8omdber7{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbeu13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeu13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbew :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FF4040;background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FF4040);}#comp-m8or8zjr{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8or8zjr{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbdr7{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82o{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82u{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82u :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu82z{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82z :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu8301{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu8301 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8omdbdy12{--shc-mutated-brightness:125,125,125;}#comp-m8omf94r{--shc-mutated-brightness:77,77,77;}#comp-m8omdbey11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbez{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}#comp-m8omdbf0{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf1{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf2{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf211{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf211 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;text-align:center;}#comp-m8omdbf39{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf415{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf510{--opacity:1;}#comp-m8omdbf61{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf68{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf711{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf82{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf813{--fill:#000000;--opacity:1;}#comp-m8omdbf97{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf916{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfa13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfb14{--shc-mutated-brightness:77,77,77;}#comp-m8omdbfc3{--shc-mutated-brightness:125,125,125;}#comp-m8omdbfc10{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfd11{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfe{--shc-mutated-brightness:123,123,123;}#comp-m8omdbfe11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbff{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8ooawu0{--text-direction:var(--wix-opt-in-direction);}#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfg7{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oobbzb{--text-direction:var(--wix-opt-in-direction);}#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oqa661{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-kbgakgyt{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y11976{--shc-mutated-brightness:77,77,77;}#comp-m8omcigd2_r_comp-m2y12dql{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y12dql :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}#comp-m8omcigd2_r_comp-m2y1gxle{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m2y1gkmp{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y1gkmp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}.comp-m8omcigd2_r_comp-m2y1awex { | |
| 597 | + --wix-direction: ltr; | |
| 598 | +--inputBorderRadius: 10; | |
| 599 | +--columnSpacing: 10; | |
| 600 | +--horizontalPadding: 0; | |
| 601 | +--verticalPadding: 0; | |
| 602 | +--submitButtonBorderRadius: 10; | |
| 603 | +--rowSpacing: 5; | |
| 604 | +--borderWidth: 0; | |
| 605 | +--borderRadius: 0; | |
| 606 | +--shadowAngle: 135; | |
| 607 | +--shadowDistance: 0; | |
| 608 | +--shadowSize: 0; | |
| 609 | +--shadowBlur: 25; | |
| 610 | +--buttonsStyle: 2; | |
| 611 | +--buttonsBorderWidth: 0; | |
| 612 | +--buttonsBorderRadius: 0; | |
| 613 | +--submitButtonStyle: 2; | |
| 614 | +--submitButtonBorderWidth: 0; | |
| 615 | +--nextButtonStyle: 2; | |
| 616 | +--nextButtonBorderWidth: 0; | |
| 617 | +--nextButtonBorderRadius: 0; | |
| 618 | +--previousButtonStyle: 2; | |
| 619 | +--previousButtonBorderWidth: 1; | |
| 620 | +--previousButtonBorderRadius: 0; | |
| 621 | +--inputBorderStyle: 1; | |
| 622 | +--inputBorderWidth: 1; | |
| 623 | +--buttonsFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 624 | +--buttonsFontHover: normal normal normal 16px/16px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 625 | +--submitButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 626 | +--submitButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 627 | +--nextButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 628 | +--nextButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 629 | +--previousButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 630 | +--previousButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 631 | +--headerThreeFont: normal normal normal 34px/1.4em montserrat-black,sans-serif; | |
| 632 | +--headerFourFont: normal normal normal 30px/1.4em montserrat-black,sans-serif; | |
| 633 | +--headerFiveFont: normal normal normal 25px/1.4em montserrat-black,sans-serif; | |
| 634 | +--headerSixFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 635 | +--headerOneFontH1: normal normal bold 65px/1.4em montserrat,sans-serif; | |
| 636 | +--headerTwoFontH2: normal normal bold 38px/1.4em montserrat,sans-serif; | |
| 637 | +--paragraphFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 638 | +--thankYouMessageFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 639 | +--headerTwoColor: 0,0,0; | |
| 640 | +--headerTwoColor-rgb: 0,0,0; | |
| 641 | +--headerTwoColor-opacity: 1; | |
| 642 | +--headerOneColor: 0,0,0; | |
| 643 | +--headerOneColor-rgb: 0,0,0; | |
| 644 | +--headerOneColor-opacity: 1; | |
| 645 | +--submitButtonBackgroundColor: 0,36,116; | |
| 646 | +--submitButtonBackgroundColor-rgb: 0,36,116; | |
| 647 | +--submitButtonBackgroundColor-opacity: 1; | |
| 648 | +--submitButtonBackgroundColorHover: 0,0,0,0.7; | |
| 649 | +--submitButtonBackgroundColorHover-rgb: 0,0,0; | |
| 650 | +--submitButtonBackgroundColorHover-opacity: 0.7; | |
| 651 | +--formBackground: 250,250,250; | |
| 652 | +--formBackground-rgb: 250,250,250; | |
| 653 | +--formBackground-opacity: 1; | |
| 654 | +--borderColor: 0,0,0,0; | |
| 655 | +--borderColor-rgb: 0,0,0; | |
| 656 | +--borderColor-opacity: 0; | |
| 657 | +--shadowColor: 0,0,0,0.15; | |
| 658 | +--shadowColor-rgb: 0,0,0; | |
| 659 | +--shadowColor-opacity: 0.15; | |
| 660 | +--buttonsColor: 250,250,250; | |
| 661 | +--buttonsColor-rgb: 250,250,250; | |
| 662 | +--buttonsColor-opacity: 1; | |
| 663 | +--buttonsBackgroundColor: 75,99,151; | |
| 664 | +--buttonsBackgroundColor-rgb: 75,99,151; | |
| 665 | +--buttonsBackgroundColor-opacity: 1; | |
| 666 | +--buttonsBorderColor: 250,250,250,0; | |
| 667 | +--buttonsBorderColor-rgb: 250,250,250; | |
| 668 | +--buttonsBorderColor-opacity: 0; | |
| 669 | +--buttonsColorHover: 250,250,250; | |
| 670 | +--buttonsColorHover-rgb: 250,250,250; | |
| 671 | +--buttonsColorHover-opacity: 1; | |
| 672 | +--buttonsBackgroundColorHover: 75,99,151,0.7; | |
| 673 | +--buttonsBackgroundColorHover-rgb: 75,99,151; | |
| 674 | +--buttonsBackgroundColorHover-opacity: 0.7; | |
| 675 | +--submitButtonColor: 250,250,250; | |
| 676 | +--submitButtonColor-rgb: 250,250,250; | |
| 677 | +--submitButtonColor-opacity: 1; | |
| 678 | +--submitButtonBorderColor: 250,250,250,0; | |
| 679 | +--submitButtonBorderColor-rgb: 250,250,250; | |
| 680 | +--submitButtonBorderColor-opacity: 0; | |
| 681 | +--submitButtonColorHover: 250,250,250; | |
| 682 | +--submitButtonColorHover-rgb: 250,250,250; | |
| 683 | +--submitButtonColorHover-opacity: 1; | |
| 684 | +--submitButtonBorderColorHover: 250,250,250,0; | |
| 685 | +--submitButtonBorderColorHover-rgb: 250,250,250; | |
| 686 | +--submitButtonBorderColorHover-opacity: 0; | |
| 687 | +--nextButtonColor: 250,250,250; | |
| 688 | +--nextButtonColor-rgb: 250,250,250; | |
| 689 | +--nextButtonColor-opacity: 1; | |
| 690 | +--nextButtonBackgroundColor: 75,99,151; | |
| 691 | +--nextButtonBackgroundColor-rgb: 75,99,151; | |
| 692 | +--nextButtonBackgroundColor-opacity: 1; | |
| 693 | +--nextButtonBorderColor: 250,250,250,0; | |
| 694 | +--nextButtonBorderColor-rgb: 250,250,250; | |
| 695 | +--nextButtonBorderColor-opacity: 0; | |
| 696 | +--nextButtonColorHover: 250,250,250; | |
| 697 | +--nextButtonColorHover-rgb: 250,250,250; | |
| 698 | +--nextButtonColorHover-opacity: 1; | |
| 699 | +--nextButtonBackgroundColorHover: 75,99,151,0.7; | |
| 700 | +--nextButtonBackgroundColorHover-rgb: 75,99,151; | |
| 701 | +--nextButtonBackgroundColorHover-opacity: 0.7; | |
| 702 | +--nextButtonBorderColorHover: 250,250,250,0; | |
| 703 | +--nextButtonBorderColorHover-rgb: 250,250,250; | |
| 704 | +--nextButtonBorderColorHover-opacity: 0; | |
| 705 | +--previousButtonColor: 0,0,0; | |
| 706 | +--previousButtonColor-rgb: 0,0,0; | |
| 707 | +--previousButtonColor-opacity: 1; | |
| 708 | +--previousButtonBackgroundColor: 75,99,151,0; | |
| 709 | +--previousButtonBackgroundColor-rgb: 75,99,151; | |
| 710 | +--previousButtonBackgroundColor-opacity: 0; | |
| 711 | +--previousButtonBorderColor: 0,0,0; | |
| 712 | +--previousButtonBorderColor-rgb: 0,0,0; | |
| 713 | +--previousButtonBorderColor-opacity: 1; | |
| 714 | +--previousButtonColorHover: 250,250,250; | |
| 715 | +--previousButtonColorHover-rgb: 250,250,250; | |
| 716 | +--previousButtonColorHover-opacity: 1; | |
| 717 | +--previousButtonBackgroundColorHover: 75,99,151,0.7; | |
| 718 | +--previousButtonBackgroundColorHover-rgb: 75,99,151; | |
| 719 | +--previousButtonBackgroundColorHover-opacity: 0.7; | |
| 720 | +--previousButtonBorderColorHover: 250,250,250,0; | |
| 721 | +--previousButtonBorderColorHover-rgb: 250,250,250; | |
| 722 | +--previousButtonBorderColorHover-opacity: 0; | |
| 723 | +--headerThreeColor: 0,0,0; | |
| 724 | +--headerThreeColor-rgb: 0,0,0; | |
| 725 | +--headerThreeColor-opacity: 1; | |
| 726 | +--headerFourColor: 0,0,0; | |
| 727 | +--headerFourColor-rgb: 0,0,0; | |
| 728 | +--headerFourColor-opacity: 1; | |
| 729 | +--headerFiveColor: 0,0,0; | |
| 730 | +--headerFiveColor-rgb: 0,0,0; | |
| 731 | +--headerFiveColor-opacity: 1; | |
| 732 | +--headerSixColor: 0,0,0; | |
| 733 | +--headerSixColor-rgb: 0,0,0; | |
| 734 | +--headerSixColor-opacity: 1; | |
| 735 | +--paragraphColor: 0,0,0; | |
| 736 | +--paragraphColor-rgb: 0,0,0; | |
| 737 | +--paragraphColor-opacity: 1; | |
| 738 | +--inputBackgroundColor: 250,250,250; | |
| 739 | +--inputBackgroundColor-rgb: 250,250,250; | |
| 740 | +--inputBackgroundColor-opacity: 1; | |
| 741 | +--inputBackgroundColorHover: 250,250,250; | |
| 742 | +--inputBackgroundColorHover-rgb: 250,250,250; | |
| 743 | +--inputBackgroundColorHover-opacity: 1; | |
| 744 | +--inputBorderColor: 0,0,0,0.6; | |
| 745 | +--inputBorderColor-rgb: 0,0,0; | |
| 746 | +--inputBorderColor-opacity: 0.6; | |
| 747 | +--inputBorderColorHover: 0,0,0; | |
| 748 | +--inputBorderColorHover-rgb: 0,0,0; | |
| 749 | +--inputBorderColorHover-opacity: 1; | |
| 750 | +--inputLabelColor: 0,0,0; | |
| 751 | +--inputLabelColor-rgb: 0,0,0; | |
| 752 | +--inputLabelColor-opacity: 1; | |
| 753 | +--inputValueColor: 0,0,0; | |
| 754 | +--inputValueColor-rgb: 0,0,0; | |
| 755 | +--inputValueColor-opacity: 1; | |
| 756 | +--inputOptionColor: 0,0,0; | |
| 757 | +--inputOptionColor-rgb: 0,0,0; | |
| 758 | +--inputOptionColor-opacity: 1; | |
| 759 | +--inputNoteColor: 51,51,51; | |
| 760 | +--inputNoteColor-rgb: 51,51,51; | |
| 761 | +--inputNoteColor-opacity: 1; | |
| 762 | +--inputPlaceholderColor: 51,51,51; | |
| 763 | +--inputPlaceholderColor-rgb: 51,51,51; | |
| 764 | +--inputPlaceholderColor-opacity: 1; | |
| 765 | +--inputSelectionColor: 75,99,151; | |
| 766 | +--inputSelectionColor-rgb: 75,99,151; | |
| 767 | +--inputSelectionColor-opacity: 1; | |
| 768 | +--dropdownBackgroundColor: 250,250,250; | |
| 769 | +--dropdownBackgroundColor-rgb: 250,250,250; | |
| 770 | +--dropdownBackgroundColor-opacity: 1; | |
| 771 | +--dropdownOptionTextColor: 0,0,0; | |
| 772 | +--dropdownOptionTextColor-rgb: 0,0,0; | |
| 773 | +--dropdownOptionTextColor-opacity: 1; | |
| 774 | +--linkColor: 75,99,151; | |
| 775 | +--linkColor-rgb: 75,99,151; | |
| 776 | +--linkColor-opacity: 1; | |
| 777 | +--thankYouMessageColor: 0,0,0; | |
| 778 | +--thankYouMessageColor-rgb: 0,0,0; | |
| 779 | +--thankYouMessageColor-opacity: 1; | |
| 780 | +--inputErrorColor: 223,49,49; | |
| 781 | +--inputErrorColor-rgb: 223,49,49; | |
| 782 | +--inputErrorColor-opacity: 1; | |
| 783 | +--inputValueFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 784 | +--inputValueFont-style: normal; | |
| 785 | +--inputValueFont-variant: normal; | |
| 786 | +--inputValueFont-weight: normal; | |
| 787 | +--inputValueFont-size: 14px; | |
| 788 | +--inputValueFont-line-height: 17px; | |
| 789 | +--inputValueFont-family: montserrat,sans-serif; | |
| 790 | +--inputValueFont-text-decoration: none; | |
| 791 | +--inputNoteFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 792 | +--inputNoteFont-style: normal; | |
| 793 | +--inputNoteFont-variant: normal; | |
| 794 | +--inputNoteFont-weight: normal; | |
| 795 | +--inputNoteFont-size: 14px; | |
| 796 | +--inputNoteFont-line-height: 17px; | |
| 797 | +--inputNoteFont-family: montserrat,sans-serif; | |
| 798 | +--inputNoteFont-text-decoration: none; | |
| 799 | +--headerTwoFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 800 | +--headerTwoFont-style: normal; | |
| 801 | +--headerTwoFont-variant: normal; | |
| 802 | +--headerTwoFont-weight: normal; | |
| 803 | +--headerTwoFont-size: 19px; | |
| 804 | +--headerTwoFont-line-height: 1.4em; | |
| 805 | +--headerTwoFont-family: montserrat,sans-serif; | |
| 806 | +--headerTwoFont-text-decoration: none; | |
| 807 | +--headerOneFont: normal normal normal 16px/20px montserrat,sans-serif; | |
| 808 | +--headerOneFont-style: normal; | |
| 809 | +--headerOneFont-variant: normal; | |
| 810 | +--headerOneFont-weight: normal; | |
| 811 | +--headerOneFont-size: 16px; | |
| 812 | +--headerOneFont-line-height: 20px; | |
| 813 | +--headerOneFont-family: montserrat,sans-serif; | |
| 814 | +--headerOneFont-text-decoration: none; | |
| 815 | +--inputLabelFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 816 | +--inputLabelFont-style: normal; | |
| 817 | +--inputLabelFont-variant: normal; | |
| 818 | +--inputLabelFont-weight: normal; | |
| 819 | +--inputLabelFont-size: 14px; | |
| 820 | +--inputLabelFont-line-height: 17px; | |
| 821 | +--inputLabelFont-family: montserrat,sans-serif; | |
| 822 | +--inputLabelFont-text-decoration: none; | |
| 823 | +--buttonsFont-style: normal; | |
| 824 | +--buttonsFont-variant: normal; | |
| 825 | +--buttonsFont-weight: normal; | |
| 826 | +--buttonsFont-size: 16px; | |
| 827 | +--buttonsFont-line-height: 1.4em; | |
| 828 | +--buttonsFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 829 | +--buttonsFont-text-decoration: none; | |
| 830 | +--buttonsFontHover-style: normal; | |
| 831 | +--buttonsFontHover-variant: normal; | |
| 832 | +--buttonsFontHover-weight: normal; | |
| 833 | +--buttonsFontHover-size: 16px; | |
| 834 | +--buttonsFontHover-line-height: 16px; | |
| 835 | +--buttonsFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 836 | +--buttonsFontHover-text-decoration: none; | |
| 837 | +--submitButtonFont-style: normal; | |
| 838 | +--submitButtonFont-variant: normal; | |
| 839 | +--submitButtonFont-weight: normal; | |
| 840 | +--submitButtonFont-size: 16px; | |
| 841 | +--submitButtonFont-line-height: 1.4em; | |
| 842 | +--submitButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 843 | +--submitButtonFont-text-decoration: none; | |
| 844 | +--submitButtonFontHover-style: normal; | |
| 845 | +--submitButtonFontHover-variant: normal; | |
| 846 | +--submitButtonFontHover-weight: normal; | |
| 847 | +--submitButtonFontHover-size: 16px; | |
| 848 | +--submitButtonFontHover-line-height: 1.4em; | |
| 849 | +--submitButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 850 | +--submitButtonFontHover-text-decoration: none; | |
| 851 | +--nextButtonFont-style: normal; | |
| 852 | +--nextButtonFont-variant: normal; | |
| 853 | +--nextButtonFont-weight: normal; | |
| 854 | +--nextButtonFont-size: 16px; | |
| 855 | +--nextButtonFont-line-height: 1.4em; | |
| 856 | +--nextButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 857 | +--nextButtonFont-text-decoration: none; | |
| 858 | +--nextButtonFontHover-style: normal; | |
| 859 | +--nextButtonFontHover-variant: normal; | |
| 860 | +--nextButtonFontHover-weight: normal; | |
| 861 | +--nextButtonFontHover-size: 16px; | |
| 862 | +--nextButtonFontHover-line-height: 1.4em; | |
| 863 | +--nextButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 864 | +--nextButtonFontHover-text-decoration: none; | |
| 865 | +--previousButtonFont-style: normal; | |
| 866 | +--previousButtonFont-variant: normal; | |
| 867 | +--previousButtonFont-weight: normal; | |
| 868 | +--previousButtonFont-size: 16px; | |
| 869 | +--previousButtonFont-line-height: 1.4em; | |
| 870 | +--previousButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 871 | +--previousButtonFont-text-decoration: none; | |
| 872 | +--previousButtonFontHover-style: normal; | |
| 873 | +--previousButtonFontHover-variant: normal; | |
| 874 | +--previousButtonFontHover-weight: normal; | |
| 875 | +--previousButtonFontHover-size: 16px; | |
| 876 | +--previousButtonFontHover-line-height: 1.4em; | |
| 877 | +--previousButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 878 | +--previousButtonFontHover-text-decoration: none; | |
| 879 | +--headerThreeFont-style: normal; | |
| 880 | +--headerThreeFont-variant: normal; | |
| 881 | +--headerThreeFont-weight: normal; | |
| 882 | +--headerThreeFont-size: 34px; | |
| 883 | +--headerThreeFont-line-height: 1.4em; | |
| 884 | +--headerThreeFont-family: montserrat-black,sans-serif; | |
| 885 | +--headerThreeFont-text-decoration: none; | |
| 886 | +--headerFourFont-style: normal; | |
| 887 | +--headerFourFont-variant: normal; | |
| 888 | +--headerFourFont-weight: normal; | |
| 889 | +--headerFourFont-size: 30px; | |
| 890 | +--headerFourFont-line-height: 1.4em; | |
| 891 | +--headerFourFont-family: montserrat-black,sans-serif; | |
| 892 | +--headerFourFont-text-decoration: none; | |
| 893 | +--headerFiveFont-style: normal; | |
| 894 | +--headerFiveFont-variant: normal; | |
| 895 | +--headerFiveFont-weight: normal; | |
| 896 | +--headerFiveFont-size: 25px; | |
| 897 | +--headerFiveFont-line-height: 1.4em; | |
| 898 | +--headerFiveFont-family: montserrat-black,sans-serif; | |
| 899 | +--headerFiveFont-text-decoration: none; | |
| 900 | +--headerSixFont-style: normal; | |
| 901 | +--headerSixFont-variant: normal; | |
| 902 | +--headerSixFont-weight: normal; | |
| 903 | +--headerSixFont-size: 19px; | |
| 904 | +--headerSixFont-line-height: 1.4em; | |
| 905 | +--headerSixFont-family: montserrat,sans-serif; | |
| 906 | +--headerSixFont-text-decoration: none; | |
| 907 | +--headerOneFontH1-style: normal; | |
| 908 | +--headerOneFontH1-variant: normal; | |
| 909 | +--headerOneFontH1-weight: bold; | |
| 910 | +--headerOneFontH1-size: 65px; | |
| 911 | +--headerOneFontH1-line-height: 1.4em; | |
| 912 | +--headerOneFontH1-family: montserrat,sans-serif; | |
| 913 | +--headerOneFontH1-text-decoration: none; | |
| 914 | +--headerTwoFontH2-style: normal; | |
| 915 | +--headerTwoFontH2-variant: normal; | |
| 916 | +--headerTwoFontH2-weight: bold; | |
| 917 | +--headerTwoFontH2-size: 38px; | |
| 918 | +--headerTwoFontH2-line-height: 1.4em; | |
| 919 | +--headerTwoFontH2-family: montserrat,sans-serif; | |
| 920 | +--headerTwoFontH2-text-decoration: none; | |
| 921 | +--paragraphFont-style: normal; | |
| 922 | +--paragraphFont-variant: normal; | |
| 923 | +--paragraphFont-weight: normal; | |
| 924 | +--paragraphFont-size: 16px; | |
| 925 | +--paragraphFont-line-height: 1.4em; | |
| 926 | +--paragraphFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 927 | +--paragraphFont-text-decoration: none; | |
| 928 | +--thankYouMessageFont-style: normal; | |
| 929 | +--thankYouMessageFont-variant: normal; | |
| 930 | +--thankYouMessageFont-weight: normal; | |
| 931 | +--thankYouMessageFont-size: 16px; | |
| 932 | +--thankYouMessageFont-line-height: 1.4em; | |
| 933 | +--thankYouMessageFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 934 | +--thankYouMessageFont-text-decoration: none; | |
| 935 | +--inputBorderLeftWidth: 1; | |
| 936 | +--inputBorderRightWidth: 1; | |
| 937 | +--inputBorderTopWidth: 1; | |
| 938 | +--inputBorderBottomWidth: 1; | |
| 939 | + --wix-color-1: 250,250,250; | |
| 940 | +--wix-color-2: 153,153,153; | |
| 941 | +--wix-color-3: 102,102,102; | |
| 942 | +--wix-color-4: 51,51,51; | |
| 943 | +--wix-color-5: 0,0,0; | |
| 944 | +--wix-color-6: 183,195,220; | |
| 945 | +--wix-color-7: 139,154,186; | |
| 946 | +--wix-color-8: 75,99,151; | |
| 947 | +--wix-color-9: 50,66,101; | |
| 948 | +--wix-color-10: 25,33,50; | |
| 949 | +--wix-color-11: 165,182,220; | |
| 950 | +--wix-color-12: 124,143,186; | |
| 951 | +--wix-color-13: 75,99,151; | |
| 952 | +--wix-color-14: 0,36,116; | |
| 953 | +--wix-color-15: 0,18,58; | |
| 954 | +--wix-color-16: 186,204,218; | |
| 955 | +--wix-color-17: 141,164,180; | |
| 956 | +--wix-color-18: 80,117,143; | |
| 957 | +--wix-color-19: 53,78,95; | |
| 958 | +--wix-color-20: 27,39,48; | |
| 959 | +--wix-color-21: 255,233,223; | |
| 960 | +--wix-color-22: 255,191,161; | |
| 961 | +--wix-color-23: 250,133,79; | |
| 962 | +--wix-color-24: 234,96,32; | |
| 963 | +--wix-color-25: 201,64,1; | |
| 964 | +--wix-color-26: 250,250,250; | |
| 965 | +--wix-color-27: 0,0,0; | |
| 966 | +--wix-color-28: 153,153,153; | |
| 967 | +--wix-color-29: 102,102,102; | |
| 968 | +--wix-color-30: 51,51,51; | |
| 969 | +--wix-color-31: 75,99,151; | |
| 970 | +--wix-color-32: 75,99,151; | |
| 971 | +--wix-color-33: 75,99,151; | |
| 972 | +--wix-color-34: 75,99,151; | |
| 973 | +--wix-color-35: 0,0,0; | |
| 974 | +--wix-color-36: 51,51,51; | |
| 975 | +--wix-color-37: 0,0,0; | |
| 976 | +--wix-color-38: 75,99,151; | |
| 977 | +--wix-color-39: 75,99,151; | |
| 978 | +--wix-color-40: 250,250,250; | |
| 979 | +--wix-color-41: 75,99,151; | |
| 980 | +--wix-color-42: 75,99,151; | |
| 981 | +--wix-color-43: 250,250,250; | |
| 982 | +--wix-color-44: 102,102,102; | |
| 983 | +--wix-color-45: 102,102,102; | |
| 984 | +--wix-color-46: 250,250,250; | |
| 985 | +--wix-color-47: 250,250,250; | |
| 986 | +--wix-color-48: 75,99,151; | |
| 987 | +--wix-color-49: 75,99,151; | |
| 988 | +--wix-color-50: 250,250,250; | |
| 989 | +--wix-color-51: 75,99,151; | |
| 990 | +--wix-color-52: 75,99,151; | |
| 991 | +--wix-color-53: 250,250,250; | |
| 992 | +--wix-color-54: 102,102,102; | |
| 993 | +--wix-color-55: 102,102,102; | |
| 994 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 995 | +--wix-font-Title-style: normal; | |
| 996 | +--wix-font-Title-variant: normal; | |
| 997 | +--wix-font-Title-weight: bold; | |
| 998 | +--wix-font-Title-size: 65px; | |
| 999 | +--wix-font-Title-line-height: 1.2em; | |
| 1000 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1001 | +--wix-font-Title-text-decoration: none; | |
| 1002 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1003 | +--wix-font-Menu-style: normal; | |
| 1004 | +--wix-font-Menu-variant: normal; | |
| 1005 | +--wix-font-Menu-weight: normal; | |
| 1006 | +--wix-font-Menu-size: 16px; | |
| 1007 | +--wix-font-Menu-line-height: 1.4em; | |
| 1008 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1009 | +--wix-font-Menu-text-decoration: none; | |
| 1010 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1011 | +--wix-font-Page-title-style: normal; | |
| 1012 | +--wix-font-Page-title-variant: normal; | |
| 1013 | +--wix-font-Page-title-weight: bold; | |
| 1014 | +--wix-font-Page-title-size: 38px; | |
| 1015 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1016 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1017 | +--wix-font-Page-title-text-decoration: none; | |
| 1018 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1019 | +--wix-font-Heading-XL-style: normal; | |
| 1020 | +--wix-font-Heading-XL-variant: normal; | |
| 1021 | +--wix-font-Heading-XL-weight: normal; | |
| 1022 | +--wix-font-Heading-XL-size: 34px; | |
| 1023 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1024 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1025 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1026 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1027 | +--wix-font-Heading-L-style: normal; | |
| 1028 | +--wix-font-Heading-L-variant: normal; | |
| 1029 | +--wix-font-Heading-L-weight: normal; | |
| 1030 | +--wix-font-Heading-L-size: 30px; | |
| 1031 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1032 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1033 | +--wix-font-Heading-L-text-decoration: none; | |
| 1034 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1035 | +--wix-font-Heading-M-style: normal; | |
| 1036 | +--wix-font-Heading-M-variant: normal; | |
| 1037 | +--wix-font-Heading-M-weight: normal; | |
| 1038 | +--wix-font-Heading-M-size: 25px; | |
| 1039 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1040 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1041 | +--wix-font-Heading-M-text-decoration: none; | |
| 1042 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1043 | +--wix-font-Heading-S-style: normal; | |
| 1044 | +--wix-font-Heading-S-variant: normal; | |
| 1045 | +--wix-font-Heading-S-weight: normal; | |
| 1046 | +--wix-font-Heading-S-size: 19px; | |
| 1047 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1048 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1049 | +--wix-font-Heading-S-text-decoration: none; | |
| 1050 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1051 | +--wix-font-Body-L-style: normal; | |
| 1052 | +--wix-font-Body-L-variant: normal; | |
| 1053 | +--wix-font-Body-L-weight: normal; | |
| 1054 | +--wix-font-Body-L-size: 16px; | |
| 1055 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1056 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1057 | +--wix-font-Body-L-text-decoration: none; | |
| 1058 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1059 | +--wix-font-Body-M-style: normal; | |
| 1060 | +--wix-font-Body-M-variant: normal; | |
| 1061 | +--wix-font-Body-M-weight: normal; | |
| 1062 | +--wix-font-Body-M-size: 16px; | |
| 1063 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1064 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1065 | +--wix-font-Body-M-text-decoration: none; | |
| 1066 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1067 | +--wix-font-Body-S-style: normal; | |
| 1068 | +--wix-font-Body-S-variant: normal; | |
| 1069 | +--wix-font-Body-S-weight: normal; | |
| 1070 | +--wix-font-Body-S-size: 12px; | |
| 1071 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1072 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1073 | +--wix-font-Body-S-text-decoration: none; | |
| 1074 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1075 | +--wix-font-Body-XS-style: normal; | |
| 1076 | +--wix-font-Body-XS-variant: normal; | |
| 1077 | +--wix-font-Body-XS-weight: normal; | |
| 1078 | +--wix-font-Body-XS-size: 12px; | |
| 1079 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1080 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1081 | +--wix-font-Body-XS-text-decoration: none; | |
| 1082 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1083 | +--wix-font-LIGHT-style: normal; | |
| 1084 | +--wix-font-LIGHT-variant: normal; | |
| 1085 | +--wix-font-LIGHT-weight: normal; | |
| 1086 | +--wix-font-LIGHT-size: 12px; | |
| 1087 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1088 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1089 | +--wix-font-LIGHT-text-decoration: none; | |
| 1090 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1091 | +--wix-font-MEDIUM-style: normal; | |
| 1092 | +--wix-font-MEDIUM-variant: normal; | |
| 1093 | +--wix-font-MEDIUM-weight: normal; | |
| 1094 | +--wix-font-MEDIUM-size: 12px; | |
| 1095 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1096 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1097 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1098 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1099 | +--wix-font-STRONG-style: normal; | |
| 1100 | +--wix-font-STRONG-variant: normal; | |
| 1101 | +--wix-font-STRONG-weight: normal; | |
| 1102 | +--wix-font-STRONG-size: 12px; | |
| 1103 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1104 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1105 | +--wix-font-STRONG-text-decoration: none; | |
| 1106 | + } | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | +#comp-m8omcigd2_r_comp-m8j7owsd{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m8j7o6oq{--opacity:1;}#comp-m8omcigd2_r_comp-m2y10ib8{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:0px;--sub-padding-start:10px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcigd2_r_comp-mbweuill{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}#comp-m8omcigd2_r_comp-kd5pdf7t{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-kd5pdf7t :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:12px;text-align:center;letter-spacing:0em;line-height:normal;}#comp-m8omcih716_r_comp-kd5px9hr{--screen-width:100vw;}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;--direction:rtl;--item-height:56px;--text-align:center;--template-columns:calc(40px + 1em) 1fr calc(40px + 1em);--template-areas:". label arrow";--padding-start:0px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcih716_r_comp-kkmqi5tc{--undefined:[object Object];--fill-opacity:1;--stroke-width:0;--stroke:#ED1566;--stroke-opacity:1;--fill:#000000;}#comp-m8omcihb_r_comp-kbgajy18{--bg-overlay-color:transparent;--bg-gradient:none;--transition-delay:0s,0s;--transition-duration:0.3s,0.3s;--transition-timing-function:ease,linear;--scrolled-transform:translateY(-38px);--transition-property:background-color,transform;--inherit-transition:var(--transition, none);}.comp-m8omcihb_r_comp-m6saac0q { | |
| 1147 | + --wix-direction: ltr; | |
| 1148 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1149 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1150 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1151 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1152 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1153 | +--cartWidget_cartIcon: 75,99,151; | |
| 1154 | +--cartWidget_cartIcon-rgb: 75,99,151; | |
| 1155 | +--cartWidget_cartIcon-opacity: 1; | |
| 1156 | +--cartWidget_cartIconText: 75,99,151; | |
| 1157 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1158 | +--cartWidget_cartIconText-opacity: 1; | |
| 1159 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1160 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1161 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1162 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1163 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1164 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1165 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1166 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1167 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1168 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1169 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1170 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1171 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1172 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1173 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1174 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1175 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1176 | + --wix-color-1: 250,250,250; | |
| 1177 | +--wix-color-2: 153,153,153; | |
| 1178 | +--wix-color-3: 102,102,102; | |
| 1179 | +--wix-color-4: 51,51,51; | |
| 1180 | +--wix-color-5: 0,0,0; | |
| 1181 | +--wix-color-6: 183,195,220; | |
| 1182 | +--wix-color-7: 139,154,186; | |
| 1183 | +--wix-color-8: 75,99,151; | |
| 1184 | +--wix-color-9: 50,66,101; | |
| 1185 | +--wix-color-10: 25,33,50; | |
| 1186 | +--wix-color-11: 165,182,220; | |
| 1187 | +--wix-color-12: 124,143,186; | |
| 1188 | +--wix-color-13: 75,99,151; | |
| 1189 | +--wix-color-14: 0,36,116; | |
| 1190 | +--wix-color-15: 0,18,58; | |
| 1191 | +--wix-color-16: 186,204,218; | |
| 1192 | +--wix-color-17: 141,164,180; | |
| 1193 | +--wix-color-18: 80,117,143; | |
| 1194 | +--wix-color-19: 53,78,95; | |
| 1195 | +--wix-color-20: 27,39,48; | |
| 1196 | +--wix-color-21: 255,233,223; | |
| 1197 | +--wix-color-22: 255,191,161; | |
| 1198 | +--wix-color-23: 250,133,79; | |
| 1199 | +--wix-color-24: 234,96,32; | |
| 1200 | +--wix-color-25: 201,64,1; | |
| 1201 | +--wix-color-26: 250,250,250; | |
| 1202 | +--wix-color-27: 0,0,0; | |
| 1203 | +--wix-color-28: 153,153,153; | |
| 1204 | +--wix-color-29: 102,102,102; | |
| 1205 | +--wix-color-30: 51,51,51; | |
| 1206 | +--wix-color-31: 75,99,151; | |
| 1207 | +--wix-color-32: 75,99,151; | |
| 1208 | +--wix-color-33: 75,99,151; | |
| 1209 | +--wix-color-34: 75,99,151; | |
| 1210 | +--wix-color-35: 0,0,0; | |
| 1211 | +--wix-color-36: 51,51,51; | |
| 1212 | +--wix-color-37: 0,0,0; | |
| 1213 | +--wix-color-38: 75,99,151; | |
| 1214 | +--wix-color-39: 75,99,151; | |
| 1215 | +--wix-color-40: 250,250,250; | |
| 1216 | +--wix-color-41: 75,99,151; | |
| 1217 | +--wix-color-42: 75,99,151; | |
| 1218 | +--wix-color-43: 250,250,250; | |
| 1219 | +--wix-color-44: 102,102,102; | |
| 1220 | +--wix-color-45: 102,102,102; | |
| 1221 | +--wix-color-46: 250,250,250; | |
| 1222 | +--wix-color-47: 250,250,250; | |
| 1223 | +--wix-color-48: 75,99,151; | |
| 1224 | +--wix-color-49: 75,99,151; | |
| 1225 | +--wix-color-50: 250,250,250; | |
| 1226 | +--wix-color-51: 75,99,151; | |
| 1227 | +--wix-color-52: 75,99,151; | |
| 1228 | +--wix-color-53: 250,250,250; | |
| 1229 | +--wix-color-54: 102,102,102; | |
| 1230 | +--wix-color-55: 102,102,102; | |
| 1231 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1232 | +--wix-font-Title-style: normal; | |
| 1233 | +--wix-font-Title-variant: normal; | |
| 1234 | +--wix-font-Title-weight: bold; | |
| 1235 | +--wix-font-Title-size: 65px; | |
| 1236 | +--wix-font-Title-line-height: 1.2em; | |
| 1237 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1238 | +--wix-font-Title-text-decoration: none; | |
| 1239 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1240 | +--wix-font-Menu-style: normal; | |
| 1241 | +--wix-font-Menu-variant: normal; | |
| 1242 | +--wix-font-Menu-weight: normal; | |
| 1243 | +--wix-font-Menu-size: 16px; | |
| 1244 | +--wix-font-Menu-line-height: 1.4em; | |
| 1245 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1246 | +--wix-font-Menu-text-decoration: none; | |
| 1247 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1248 | +--wix-font-Page-title-style: normal; | |
| 1249 | +--wix-font-Page-title-variant: normal; | |
| 1250 | +--wix-font-Page-title-weight: bold; | |
| 1251 | +--wix-font-Page-title-size: 38px; | |
| 1252 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1253 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1254 | +--wix-font-Page-title-text-decoration: none; | |
| 1255 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1256 | +--wix-font-Heading-XL-style: normal; | |
| 1257 | +--wix-font-Heading-XL-variant: normal; | |
| 1258 | +--wix-font-Heading-XL-weight: normal; | |
| 1259 | +--wix-font-Heading-XL-size: 34px; | |
| 1260 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1261 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1262 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1263 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1264 | +--wix-font-Heading-L-style: normal; | |
| 1265 | +--wix-font-Heading-L-variant: normal; | |
| 1266 | +--wix-font-Heading-L-weight: normal; | |
| 1267 | +--wix-font-Heading-L-size: 30px; | |
| 1268 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1269 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1270 | +--wix-font-Heading-L-text-decoration: none; | |
| 1271 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1272 | +--wix-font-Heading-M-style: normal; | |
| 1273 | +--wix-font-Heading-M-variant: normal; | |
| 1274 | +--wix-font-Heading-M-weight: normal; | |
| 1275 | +--wix-font-Heading-M-size: 25px; | |
| 1276 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1277 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1278 | +--wix-font-Heading-M-text-decoration: none; | |
| 1279 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1280 | +--wix-font-Heading-S-style: normal; | |
| 1281 | +--wix-font-Heading-S-variant: normal; | |
| 1282 | +--wix-font-Heading-S-weight: normal; | |
| 1283 | +--wix-font-Heading-S-size: 19px; | |
| 1284 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1285 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1286 | +--wix-font-Heading-S-text-decoration: none; | |
| 1287 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1288 | +--wix-font-Body-L-style: normal; | |
| 1289 | +--wix-font-Body-L-variant: normal; | |
| 1290 | +--wix-font-Body-L-weight: normal; | |
| 1291 | +--wix-font-Body-L-size: 16px; | |
| 1292 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1293 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1294 | +--wix-font-Body-L-text-decoration: none; | |
| 1295 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1296 | +--wix-font-Body-M-style: normal; | |
| 1297 | +--wix-font-Body-M-variant: normal; | |
| 1298 | +--wix-font-Body-M-weight: normal; | |
| 1299 | +--wix-font-Body-M-size: 16px; | |
| 1300 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1301 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1302 | +--wix-font-Body-M-text-decoration: none; | |
| 1303 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1304 | +--wix-font-Body-S-style: normal; | |
| 1305 | +--wix-font-Body-S-variant: normal; | |
| 1306 | +--wix-font-Body-S-weight: normal; | |
| 1307 | +--wix-font-Body-S-size: 12px; | |
| 1308 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1309 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1310 | +--wix-font-Body-S-text-decoration: none; | |
| 1311 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1312 | +--wix-font-Body-XS-style: normal; | |
| 1313 | +--wix-font-Body-XS-variant: normal; | |
| 1314 | +--wix-font-Body-XS-weight: normal; | |
| 1315 | +--wix-font-Body-XS-size: 12px; | |
| 1316 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1317 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1318 | +--wix-font-Body-XS-text-decoration: none; | |
| 1319 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1320 | +--wix-font-LIGHT-style: normal; | |
| 1321 | +--wix-font-LIGHT-variant: normal; | |
| 1322 | +--wix-font-LIGHT-weight: normal; | |
| 1323 | +--wix-font-LIGHT-size: 12px; | |
| 1324 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1325 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1326 | +--wix-font-LIGHT-text-decoration: none; | |
| 1327 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1328 | +--wix-font-MEDIUM-style: normal; | |
| 1329 | +--wix-font-MEDIUM-variant: normal; | |
| 1330 | +--wix-font-MEDIUM-weight: normal; | |
| 1331 | +--wix-font-MEDIUM-size: 12px; | |
| 1332 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1333 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1334 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1335 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1336 | +--wix-font-STRONG-style: normal; | |
| 1337 | +--wix-font-STRONG-variant: normal; | |
| 1338 | +--wix-font-STRONG-weight: normal; | |
| 1339 | +--wix-font-STRONG-size: 12px; | |
| 1340 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1341 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1342 | +--wix-font-STRONG-text-decoration: none; | |
| 1343 | + }#comp-m8omcihb_r_comp-mdeyh2rw{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-m2xyvk9x{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-m2xz2cwh{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxu2mi38{height:inherit;width:auto;}#comp-m8omcihb_r_comp-m5rceko6{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-mdezy72f{--boxShadow:none;--backgroundColor:rgba(255,255,255,1);--borderColor:50,65,88;--borderWidth:0px;--borderRadius:0px;--alpha-borderColor:0;}.comp-m8omcihb_r_comp-mdezy72s{--shc-mutated-brightness:77,77,77;}.comp-m8omcihb_r_comp-mdf0r6km{--text-direction:var(--wix-opt-in-direction);}.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.032 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}.comp-m8omcihb_r_comp-mdf0tx18{--btn-direction:var(--wix-opt-in-direction, ltr);--direction:inherit;--overflow:visible;--label-text-overflow:initial;--label-white-space:pre-line;--btn-min-width:min-content;--container-justify-content:center;--container-align-items:center;--icon-rotation:0deg;--disabled-icon-rotation:0deg;--hover-icon-rotation:0deg;}#comp-m8omcihb_r_comp-m5rceatr{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxubhuix{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:10px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--padding-start:0px;}}#comp-m8omcihb_r_comp-mdezahz3{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}.comp-m8omcihb_r_comp-m73v5p0x { | |
| 1344 | + --wix-direction: ltr; | |
| 1345 | +--cartWidgetIcon: 1; | |
| 1346 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1347 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1348 | +--cartWidget_cartIcon: 183,195,220; | |
| 1349 | +--cartWidget_cartIcon-rgb: 183,195,220; | |
| 1350 | +--cartWidget_cartIcon-opacity: 1; | |
| 1351 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1352 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1353 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1354 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1355 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1356 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1357 | +--cartWidget_cartIconText: 75,99,151; | |
| 1358 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1359 | +--cartWidget_cartIconText-opacity: 1; | |
| 1360 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1361 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1362 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1363 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1364 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1365 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1366 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1367 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1368 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1369 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1370 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1371 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1372 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1373 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1374 | + --wix-color-1: 250,250,250; | |
| 1375 | +--wix-color-2: 153,153,153; | |
| 1376 | +--wix-color-3: 102,102,102; | |
| 1377 | +--wix-color-4: 51,51,51; | |
| 1378 | +--wix-color-5: 0,0,0; | |
| 1379 | +--wix-color-6: 183,195,220; | |
| 1380 | +--wix-color-7: 139,154,186; | |
| 1381 | +--wix-color-8: 75,99,151; | |
| 1382 | +--wix-color-9: 50,66,101; | |
| 1383 | +--wix-color-10: 25,33,50; | |
| 1384 | +--wix-color-11: 165,182,220; | |
| 1385 | +--wix-color-12: 124,143,186; | |
| 1386 | +--wix-color-13: 75,99,151; | |
| 1387 | +--wix-color-14: 0,36,116; | |
| 1388 | +--wix-color-15: 0,18,58; | |
| 1389 | +--wix-color-16: 186,204,218; | |
| 1390 | +--wix-color-17: 141,164,180; | |
| 1391 | +--wix-color-18: 80,117,143; | |
| 1392 | +--wix-color-19: 53,78,95; | |
| 1393 | +--wix-color-20: 27,39,48; | |
| 1394 | +--wix-color-21: 255,233,223; | |
| 1395 | +--wix-color-22: 255,191,161; | |
| 1396 | +--wix-color-23: 250,133,79; | |
| 1397 | +--wix-color-24: 234,96,32; | |
| 1398 | +--wix-color-25: 201,64,1; | |
| 1399 | +--wix-color-26: 250,250,250; | |
| 1400 | +--wix-color-27: 0,0,0; | |
| 1401 | +--wix-color-28: 153,153,153; | |
| 1402 | +--wix-color-29: 102,102,102; | |
| 1403 | +--wix-color-30: 51,51,51; | |
| 1404 | +--wix-color-31: 75,99,151; | |
| 1405 | +--wix-color-32: 75,99,151; | |
| 1406 | +--wix-color-33: 75,99,151; | |
| 1407 | +--wix-color-34: 75,99,151; | |
| 1408 | +--wix-color-35: 0,0,0; | |
| 1409 | +--wix-color-36: 51,51,51; | |
| 1410 | +--wix-color-37: 0,0,0; | |
| 1411 | +--wix-color-38: 75,99,151; | |
| 1412 | +--wix-color-39: 75,99,151; | |
| 1413 | +--wix-color-40: 250,250,250; | |
| 1414 | +--wix-color-41: 75,99,151; | |
| 1415 | +--wix-color-42: 75,99,151; | |
| 1416 | +--wix-color-43: 250,250,250; | |
| 1417 | +--wix-color-44: 102,102,102; | |
| 1418 | +--wix-color-45: 102,102,102; | |
| 1419 | +--wix-color-46: 250,250,250; | |
| 1420 | +--wix-color-47: 250,250,250; | |
| 1421 | +--wix-color-48: 75,99,151; | |
| 1422 | +--wix-color-49: 75,99,151; | |
| 1423 | +--wix-color-50: 250,250,250; | |
| 1424 | +--wix-color-51: 75,99,151; | |
| 1425 | +--wix-color-52: 75,99,151; | |
| 1426 | +--wix-color-53: 250,250,250; | |
| 1427 | +--wix-color-54: 102,102,102; | |
| 1428 | +--wix-color-55: 102,102,102; | |
| 1429 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1430 | +--wix-font-Title-style: normal; | |
| 1431 | +--wix-font-Title-variant: normal; | |
| 1432 | +--wix-font-Title-weight: bold; | |
| 1433 | +--wix-font-Title-size: 65px; | |
| 1434 | +--wix-font-Title-line-height: 1.2em; | |
| 1435 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1436 | +--wix-font-Title-text-decoration: none; | |
| 1437 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1438 | +--wix-font-Menu-style: normal; | |
| 1439 | +--wix-font-Menu-variant: normal; | |
| 1440 | +--wix-font-Menu-weight: normal; | |
| 1441 | +--wix-font-Menu-size: 16px; | |
| 1442 | +--wix-font-Menu-line-height: 1.4em; | |
| 1443 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1444 | +--wix-font-Menu-text-decoration: none; | |
| 1445 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1446 | +--wix-font-Page-title-style: normal; | |
| 1447 | +--wix-font-Page-title-variant: normal; | |
| 1448 | +--wix-font-Page-title-weight: bold; | |
| 1449 | +--wix-font-Page-title-size: 38px; | |
| 1450 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1451 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1452 | +--wix-font-Page-title-text-decoration: none; | |
| 1453 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1454 | +--wix-font-Heading-XL-style: normal; | |
| 1455 | +--wix-font-Heading-XL-variant: normal; | |
| 1456 | +--wix-font-Heading-XL-weight: normal; | |
| 1457 | +--wix-font-Heading-XL-size: 34px; | |
| 1458 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1459 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1460 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1461 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1462 | +--wix-font-Heading-L-style: normal; | |
| 1463 | +--wix-font-Heading-L-variant: normal; | |
| 1464 | +--wix-font-Heading-L-weight: normal; | |
| 1465 | +--wix-font-Heading-L-size: 30px; | |
| 1466 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1467 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1468 | +--wix-font-Heading-L-text-decoration: none; | |
| 1469 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1470 | +--wix-font-Heading-M-style: normal; | |
| 1471 | +--wix-font-Heading-M-variant: normal; | |
| 1472 | +--wix-font-Heading-M-weight: normal; | |
| 1473 | +--wix-font-Heading-M-size: 25px; | |
| 1474 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1475 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1476 | +--wix-font-Heading-M-text-decoration: none; | |
| 1477 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1478 | +--wix-font-Heading-S-style: normal; | |
| 1479 | +--wix-font-Heading-S-variant: normal; | |
| 1480 | +--wix-font-Heading-S-weight: normal; | |
| 1481 | +--wix-font-Heading-S-size: 19px; | |
| 1482 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1483 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1484 | +--wix-font-Heading-S-text-decoration: none; | |
| 1485 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1486 | +--wix-font-Body-L-style: normal; | |
| 1487 | +--wix-font-Body-L-variant: normal; | |
| 1488 | +--wix-font-Body-L-weight: normal; | |
| 1489 | +--wix-font-Body-L-size: 16px; | |
| 1490 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1491 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1492 | +--wix-font-Body-L-text-decoration: none; | |
| 1493 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1494 | +--wix-font-Body-M-style: normal; | |
| 1495 | +--wix-font-Body-M-variant: normal; | |
| 1496 | +--wix-font-Body-M-weight: normal; | |
| 1497 | +--wix-font-Body-M-size: 16px; | |
| 1498 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1499 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1500 | +--wix-font-Body-M-text-decoration: none; | |
| 1501 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1502 | +--wix-font-Body-S-style: normal; | |
| 1503 | +--wix-font-Body-S-variant: normal; | |
| 1504 | +--wix-font-Body-S-weight: normal; | |
| 1505 | +--wix-font-Body-S-size: 12px; | |
| 1506 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1507 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1508 | +--wix-font-Body-S-text-decoration: none; | |
| 1509 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1510 | +--wix-font-Body-XS-style: normal; | |
| 1511 | +--wix-font-Body-XS-variant: normal; | |
| 1512 | +--wix-font-Body-XS-weight: normal; | |
| 1513 | +--wix-font-Body-XS-size: 12px; | |
| 1514 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1515 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1516 | +--wix-font-Body-XS-text-decoration: none; | |
| 1517 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1518 | +--wix-font-LIGHT-style: normal; | |
| 1519 | +--wix-font-LIGHT-variant: normal; | |
| 1520 | +--wix-font-LIGHT-weight: normal; | |
| 1521 | +--wix-font-LIGHT-size: 12px; | |
| 1522 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1523 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1524 | +--wix-font-LIGHT-text-decoration: none; | |
| 1525 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1526 | +--wix-font-MEDIUM-style: normal; | |
| 1527 | +--wix-font-MEDIUM-variant: normal; | |
| 1528 | +--wix-font-MEDIUM-weight: normal; | |
| 1529 | +--wix-font-MEDIUM-size: 12px; | |
| 1530 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1531 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1532 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1533 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1534 | +--wix-font-STRONG-style: normal; | |
| 1535 | +--wix-font-STRONG-variant: normal; | |
| 1536 | +--wix-font-STRONG-weight: normal; | |
| 1537 | +--wix-font-STRONG-size: 12px; | |
| 1538 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1539 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1540 | +--wix-font-STRONG-text-decoration: none; | |
| 1541 | + }#comp-m8omcihb_r_comp-m8j7mq6v{--opacity:1;}#comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdeyhsow{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-block:0;--item-margin-inline:0px 10px;--item-display:inline-block;--direction:var(--wix-opt-in-direction, ltr);--flex-direction:row;height:20px;width:calc(2 * (20px + 10px) - 10px);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));--item-margin-inline:0px max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)));height:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));width:calc(2 * (max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width))) + max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)))) - max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width))));}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-inline:0px 10px;height:20px;width:calc(2 * (20px + 10px) - 10px);}}#comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdf18wki{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FAFAFA !important;font-size:max(14px, min(16px, max(0.5px, 0.0112427 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;text-decoration:none !important;}#comp-m8omcihb_r_comp-mdf18wki [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FAFAFA) !important;}}</style> | |
| 1542 | + | |
| 1543 | +</head> | |
| 1544 | +<body class='responsive' > | |
| 1545 | +<script type="text/javascript"> | |
| 1546 | + var bodyCacheable = true; | |
| 1547 | + | |
| 1548 | + var exclusionReason = {"shouldRender":true,"forced":false}; | |
| 1549 | + var ssrInfo = {"cacheExclusionReason":"","renderBodyTime":1895,"renderTimeStamp":1786257265585} | |
| 1550 | +</script> | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + <!--pageHtmlEmbeds.bodyStart start--> | |
| 1559 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart start"></script> | |
| 1560 | + | |
| 1561 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart end"></script> | |
| 1562 | + <!--pageHtmlEmbeds.bodyStart end--> | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | +<script id="wix-first-paint"> | |
| 1568 | + if (window.ResizeObserver && | |
| 1569 | + (!window.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || PerformanceObserver.supportedEntryTypes.indexOf('paint') === -1)) { | |
| 1570 | + new ResizeObserver(function (entries, observer) { | |
| 1571 | + entries.some(function (entry) { | |
| 1572 | + var contentRect = entry.contentRect; | |
| 1573 | + if (contentRect.width > 0 && contentRect.height > 0) { | |
| 1574 | + requestAnimationFrame(function (now) { | |
| 1575 | + window.wixFirstPaint = now; | |
| 1576 | + dispatchEvent(new CustomEvent('wixFirstPaint')); | |
| 1577 | + }); | |
| 1578 | + observer.disconnect(); | |
| 1579 | + return true; | |
| 1580 | + } | |
| 1581 | + }); | |
| 1582 | + }).observe(document.body); | |
| 1583 | + } | |
| 1584 | +</script> | |
| 1585 | + | |
| 1586 | + | |
| 1587 | +<script id="scroll-bar-width-calculation"> | |
| 1588 | + const div = document.createElement('div') | |
| 1589 | + div.style.overflowY = 'scroll' | |
| 1590 | + div.style.width = '50px' | |
| 1591 | + div.style.height = '50px' | |
| 1592 | + div.style.visibility = 'hidden' | |
| 1593 | + document.body.appendChild(div) | |
| 1594 | + const scrollbarWidth= div.offsetWidth - div.clientWidth | |
| 1595 | + document.body.removeChild(div) | |
| 1596 | + if(scrollbarWidth > 0){ | |
| 1597 | + document.body.style.setProperty('--scrollbar-width', `${scrollbarWidth}px`) | |
| 1598 | + } | |
| 1599 | +</script> | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + <style id=wix-custom-css>/* Users Custom CSS code */ | |
| 1606 | + } | |
| 1607 | +</style> | |
| 1608 | + | |
| 1609 | + | |
| 1610 | + | |
| 1611 | + <!-- domStoreHtml --> | |
| 1612 | + <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> | |
| 1613 | + | |
| 1614 | + | |
| 1615 | +<div id="SITE_CONTAINER"><style id="STYLE_OVERRIDES_ID">#comp-m8omdbeu13{visibility:hidden !important;} #comp-m8omdbew{visibility:hidden !important;} #comp-m8omdbf211{--corvid-color:green;} #comp-m8omdbf2{--container-corvid-background-color:#D1FFBD;}</style><div id="main_MF" class="main_MF"><div id="SCROLL_TO_TOP" class="qe3oTb ignore-focus SCROLL_TO_TOP" role="region" tabindex="-1" aria-label="top of page"><span class="TvbeET">top of page</span></div><div id="site-root" class="site-root"><div id="masterPage" class="masterPage css-editing-scope"><div id="SITE_PAGES" class="Y3K28_ SITE_PAGES"><div id="ebqqm" class="ETqrjz theme-vars ebqqm"><div class="g0IvTF wixui-page" data-testid="page-bg"></div><div><div class="ebqqm-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="ebqqm-container"><div id="comp-m8omcihb-pinned-layer" class="comp-m8omcihb-pinned-layer QED8q1"><header id="comp-m8omcihb" class="comp-m8omcihb S829f_ comp-m8omcihb-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcihb_r_comp-kbgajy18" tabindex="-1" data-block-level-container="Section" class="Lnr3dj comp-m8omcihb_r_comp-kbgajy18 Lnr3dj w2JesW wixui-header fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcihb_r_comp-kbgajy18" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcihb_r_comp-kbgajy18" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcihb_r_comp-kbgajy18" data-motion-part="BG_MEDIA comp-m8omcihb_r_comp-kbgajy18" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-kbgajy18-container"><div id="comp-m8omcihb_r_comp-m6saac0q" class="QrIus comp-m8omcihb_r_comp-m6saac0q"><div class="comp-m8omcihb_r_comp-m6saac0q"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m6saadbd" class="comp-m8omcihb_r_comp-m6saadbd" style="visibility:hidden;overflow:hidden;width:0;min-width:0;height:0;min-height:0;pointer-events:none;margin:0;position:absolute"></div><div id="comp-m8omcihb_r_comp-mdeyh2rw" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyh2rw-container comp-m8omcihb_r_comp-mdeyh2rw wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-m2xyvk9x" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m2xyvk9x wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-m2xyvk9x-container"><div class="comp-m8omcihb_r_comp-m2xz2cwh lIkFMb" id="comp-m8omcihb_r_comp-m2xz2cwh" aria-disabled="false"><a data-testid="linkElement" href="http://www.sflogements.com" target="_self" rel="noreferrer noopener" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><div id="comp-m8omcihb_r_comp-lxu2mi30" class="comp-m8omcihb_r_comp-lxu2mi30-container wiZmhC"><nav aria-label="Site" class="HamburgerOpenButton3537389287__nav"><div id="comp-m8omcihb_r_comp-lxu2mi38" class="HamburgerOpenButton3537389287__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38" data-semantic-classname="hamburger-open-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38-styleId__root wixui-hamburger-open-button" data-testid="buttonContent" aria-expanded="false" aria-haspopup="dialog" aria-label="Menu"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-open-button__label" data-testid="stylablebutton-label">Menu</span><span class="StylableButton2545352419__icon wixui-hamburger-open-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1616 | +<svg data-bbox="60 70 80 60" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1617 | + <g> | |
| 1618 | + <path d="M64 78h72a4 4 0 0 0 0-8H64a4 4 0 0 0 0 8z"></path> | |
| 1619 | + <path d="M136 96H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1620 | + <path d="M136 122H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1621 | + </g> | |
| 1622 | +</svg> | |
| 1623 | +</span></span></span></button></div></nav><div id="comp-m8omcihb_r_comp-lxu2mi3c" class="HamburgerOverlay547129737--showBackgroundOverlay HamburgerOverlay547129737__root OrbgmN" role="dialog" aria-modal="true" aria-label="Navigation sur le site" data-visible="false" data-hook="hamburger-overlay-root" tabindex="-1" data-part="hamburger-overlay" data-animation-name="none"><div data-hook="hamburger-overlay-dialog" aria-hidden="true" class="HamburgerOverlay547129737__overlay comp-m8omcihb_r_comp-lxu2mi3c-styleId__root wixui-hamburger-overlay"></div><div class="comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3c-container"><div id="comp-m8omcihb_r_comp-lxu2mi3d5" tabindex="-1" class="comp-m8omcihb_r_comp-lxu2mi3d5 ZBf0K1 fy6eJk" data-animation-name="none"><div aria-hidden="true" class="HamburgerMenuContainer502174924__root comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root wixui-hamburger-menu-container"></div><div class="comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3d5-container"><div id="comp-m8omcihb_r_comp-lxu2mi3i1" class="HamburgerCloseButton872037521__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1" data-semantic-classname="hamburger-close-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root wixui-hamburger-close-button" data-testid="buttonContent" aria-label="Close"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-close-button__label" data-testid="stylablebutton-label">Close</span><span class="StylableButton2545352419__icon wixui-hamburger-close-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1624 | +<svg data-bbox="33 33 133.333 133.333" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1625 | + <g> | |
| 1626 | + <path d="M166.333 38.892 160.442 33 99.667 93.775 38.892 33 33 38.892l60.775 60.775L33 160.442l5.892 5.891 60.775-60.775 60.775 60.775 5.891-5.891-60.775-60.775 60.775-60.775Z" fill-rule="evenodd"></path> | |
| 1627 | + </g> | |
| 1628 | +</svg> | |
| 1629 | +</span></span></span></button></div><div id="comp-m8omcihb_r_comp-m5rceko6" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m5rceko6-container comp-m8omcihb_r_comp-m5rceko6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-mdezy72f" class="ArRNfA comp-m8omcihb_r_comp-mdezy72f wixui-repeater"><div data-testid="responsive-container-content" role="list" class="comp-m8omcihb_r_comp-mdezy72f-container"><div id="comp-m8omcihb_r_comp-mdezy72s__item1" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item1 wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item1" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item1 wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">À Propos</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item1" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item1" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/entreprise" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="À Propos"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1630 | + <g> | |
| 1631 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1632 | + </g> | |
| 1633 | +</svg> | |
| 1634 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Obtenir un devis</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Obtenir un devis"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1635 | + <g> | |
| 1636 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1637 | + </g> | |
| 1638 | +</svg> | |
| 1639 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Blog</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/blog" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Blog"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1640 | + <g> | |
| 1641 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1642 | + </g> | |
| 1643 | +</svg> | |
| 1644 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Contact</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Contact"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1645 | + <g> | |
| 1646 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1647 | + </g> | |
| 1648 | +</svg> | |
| 1649 | +</span></span></span></a></div></div></div></div><div class="comp-m8omcihb_r_comp-m5rceatr lIkFMb" id="comp-m8omcihb_r_comp-m5rceatr" aria-disabled="false"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><nav id="comp-m8omcihb_r_comp-lxubhuix" aria-label="Site" class="d2V6sy comp-m8omcihb_r_comp-lxubhuix wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcihb_r_comp-lxubhuix-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcihb_r_comp-lxubhuix-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcihb_r_comp-mdezahz3"></div></div></div></div></div></div></div></div></div><div id="comp-m8omcihb_r_comp-m73v5p0x" class="QrIus comp-m8omcihb_r_comp-m73v5p0x"><div class="comp-m8omcihb_r_comp-m73v5p0x"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m8j7mq6v" class="comp-m8omcihb_r_comp-m8j7mq6v wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcihb_r_comp-m8j7mq6v" class="iL7Pq5 gx51wo"> | |
| 1650 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omcihb_r_comp-m8j7mq6v svg [data-color="1"] {fill: #FAFAFA;}</style></defs> | |
| 1651 | + <g> | |
| 1652 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 1653 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 1654 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 1655 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 1656 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 1657 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 1658 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 1659 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 1660 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 1661 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 1662 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 1663 | + </g> | |
| 1664 | +</svg> | |
| 1665 | +</div></a></div><div id="comp-m8omcihb_r_comp-m99166jr" class="comp-m8omcihb_r_comp-m99166jr-container comp-m8omcihb_r_comp-m99166jr" data-prehydration=""><div id="comp-m8omcihb_r_comp-m99166jr-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/forfaits" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion d'immeubles à revenus</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion de copropriété</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdez2caz" class="n8bAtI comp-m8omcihb_r_comp-mdez2caz"><div class="zACo20 wixui-vertical-line"></div></div></div></div><div id="comp-m8omcihb_r_comp-mdeyhsow" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyhsow wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-mdeyhsow-container"><div id="comp-m8omcihb_r_comp-mdeylyv3" class="comp-m8omcihb_r_comp-mdeylyv3 eAOB3n"><ul class="tDHQQD" aria-label="Barre de réseaux sociaux"><li id="dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.instagram.com/sf.habitations/" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Instagram"><wow-image id="img_0_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":201,"uri":"11062b_cef3b719166a4815b446d4dcfcb6120d~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Instagram"/></wow-image></a></li><li id="dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.facebook.com/profile.php?id=61555968238150" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Facebook"><wow-image id="img_1_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":200,"uri":"11062b_ef6a6ac194704911951645990055c2ce~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Facebook"/></wow-image></a></li></ul></div><div id="comp-m8omcihb_r_comp-mdeyqfi8" class="comp-m8omcihb_r_comp-mdeyqfi8-container comp-m8omcihb_r_comp-mdeyqfi8" data-prehydration=""><div id="comp-m8omcihb_r_comp-mdeyqfi8-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/entreprise" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">À Propos</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/blog" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Blog</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Obtenir un devis</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Contact</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdf18wki" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf18wki wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="tel: 450.499.7978" class="wixui-rich-text__text"> 450.499.7978</a></p></div></div></div></div><div id="comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID" style="display:none"></div></div></section></header></div><main id="PAGE_SECTIONSebqqm" class="PAGE_SECTIONSebqqm ooGRUo" data-main-content-parent="true"><section id="comp-m8omdbdn" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omdbdn wixui-section fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omdbdn" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omdbdn" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omdbdn" data-motion-part="BG_MEDIA comp-m8omdbdn" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdn-container max-width-container"><div id="comp-m8oqdae2" role="" class="HFEOE3 NaeT1r comp-m8oqdae2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqdae2-container"><div id="comp-m8omdbe910" role="" class="HFEOE3 NaeT1r comp-m8omdbe910-container comp-m8omdbe910 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea7" role="" class="HFEOE3 NaeT1r comp-m8omdbea7-container comp-m8omdbea7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea15" class="N8MGzv _v6ohL PO9MfV comp-m8omdbea15 wixui-rich-text" data-testid="richTextElement"><h3 class="font_3 wixui-rich-text__text"><span class="wixui-rich-text__text">Cette unité vous intéresse?</span></h3></div><div id="comp-m8omdbeb13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeb13 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">Veuillez remplir le formulaire ci-dessous pour réserver l'unité ou être notifié lorsque celle-ci devient disponible.</span></p></div></div><div id="comp-m8omdbec6" role="" class="HFEOE3 NaeT1r comp-m8omdbec6-container comp-m8omdbec6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbec15" class="Yz8ZCc comp-m8omdbec15 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbec15" class="QyrExM wixui-text-input__label">Prénom</label><div class="nuFEsg"><input name="prénom" id="input_comp-m8omdbec15" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="John" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeg9" class="Yz8ZCc comp-m8omdbeg9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeg9" class="QyrExM wixui-text-input__label">Nom de Famille</label><div class="nuFEsg"><input name="nom-de famille" id="input_comp-m8omdbeg9" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="Doe" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeh9" class="Yz8ZCc comp-m8omdbeh9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeh9" class="QyrExM wixui-text-input__label">Téléphone</label><div class="nuFEsg"><input name="phone" id="input_comp-m8omdbeh9" class="nbaJII has-custom-focus wixui-text-input__input" type="tel" placeholder="450.499.7978" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbei9" class="Yz8ZCc comp-m8omdbei9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbei9" class="QyrExM wixui-text-input__label">Courriel</label><div class="nuFEsg"><input name="email" id="input_comp-m8omdbei9" class="nbaJII has-custom-focus wixui-text-input__input" type="email" placeholder="johndoe@gmail.com" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdben" class="YbkIHV comp-m8omdben wixui-text-box bCYfl0"><label for="textarea_comp-m8omdben" class="P3lL3X wixui-text-box__label">Message</label><textarea id="textarea_comp-m8omdben" class="XXgBXC has-custom-focus wixui-text-box__input" rows="1" placeholder="Posez-nous vos questions" aria-required="false" aria-invalid="false"></textarea></div><div id="comp-m8omdber7" class="Y_w4j4 uvl2Tw comp-m8omdber7 wixui-dropdown VYqX7C DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8omdber7">Unité</label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8omdber7" data-testid="select-trigger" required="" aria-required="true" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir l'unité</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div><div id="comp-m8omdbeu13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeu13 wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Nous avons reçu votre demande. Nous vous contacterons sous-peu.</p></div></div><div id="comp-m8omdbew" class="N8MGzv _v6ohL PO9MfV comp-m8omdbew wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Une erreur s'est produite. Veuillez réessayer.</p></div></div><div id="comp-m8omdbex1" class="comp-m8omdbex1" data-semantic-classname="button"><button type="button" class="StylableButton2545352419__root style-m8omdbey8__root wixui-button" data-testid="buttonContent" aria-label="Envoyer"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-button__label" data-testid="stylablebutton-label">Envoyer</span><span class="StylableButton2545352419__icon wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1666 | +<svg data-bbox="28 20 144 160" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1667 | + <g> | |
| 1668 | + <path d="M172 172.105l-.065-83.094a7.89 7.89 0 0 0-2.635-5.88l-64.103-57.226a7.88 7.88 0 0 0-10.499.001L30.634 83.128A7.891 7.891 0 0 0 28 89.013v83.098A7.887 7.887 0 0 0 35.884 180h34a7.887 7.887 0 0 0 7.884-7.889v-44.828a7.887 7.887 0 0 1 7.884-7.889h28.667a7.887 7.887 0 0 1 7.884 7.889v44.828a7.887 7.887 0 0 0 7.884 7.889h34.029c4.357 0 7.887-3.536 7.884-7.895z"></path> | |
| 1669 | + <path d="M132.069 31.41l31.357 28.145V31.41c0-6.302-5.105-11.41-11.403-11.41h-8.551c-6.298 0-11.403 5.108-11.403 11.41z"></path> | |
| 1670 | + </g> | |
| 1671 | +</svg> | |
| 1672 | +</span></span></span></button></div><div id="comp-m8or8zjr" class="Y_w4j4 uvl2Tw comp-m8or8zjr wixui-dropdown DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8or8zjr"></label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8or8zjr" data-testid="select-trigger" required="" aria-required="true" aria-label="Choisir une option" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir une option</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div></div></div></div></div><div id="comp-m8omdbdr7" role="" class="HFEOE3 NaeT1r comp-m8omdbdr7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdr7-container"><div id="comp-m8oqu82o" role="" class="HFEOE3 NaeT1r comp-m8oqu82o-container comp-m8oqu82o wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8oqu82u" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82u wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="https://www.leshabitationssf.com" target="_self" class="wixui-rich-text__text">Toutes les Propriétés</a></p></div><div id="comp-m8oqu82z" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82z wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oqu8301" class="N8MGzv _v6ohL PO9MfV comp-m8oqu8301 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">LUXUEUX 5 1/2 À SAINT CHARLES BORROMEE </p></div></div></div></div><div id="comp-m8omdbdy12" role="" class="HFEOE3 NaeT1r comp-m8omdbdy12 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdy12-container"><div id="comp-m8omf94r" role="" class="HFEOE3 NaeT1r comp-m8omf94r wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div class="comp-m8omf94r-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omf94r-container"><div id="comp-m8omf94t" class=" comp-m8omf94t"><div class="comp-m8omf94t"><style>.comp-m8omf94t { | |
| 1673 | + --wix-color-1: 250,250,250; | |
| 1674 | +--wix-color-2: 153,153,153; | |
| 1675 | +--wix-color-3: 102,102,102; | |
| 1676 | +--wix-color-4: 51,51,51; | |
| 1677 | +--wix-color-5: 0,0,0; | |
| 1678 | +--wix-color-6: 183,195,220; | |
| 1679 | +--wix-color-7: 139,154,186; | |
| 1680 | +--wix-color-8: 75,99,151; | |
| 1681 | +--wix-color-9: 50,66,101; | |
| 1682 | +--wix-color-10: 25,33,50; | |
| 1683 | +--wix-color-11: 165,182,220; | |
| 1684 | +--wix-color-12: 124,143,186; | |
| 1685 | +--wix-color-13: 75,99,151; | |
| 1686 | +--wix-color-14: 0,36,116; | |
| 1687 | +--wix-color-15: 0,18,58; | |
| 1688 | +--wix-color-16: 186,204,218; | |
| 1689 | +--wix-color-17: 141,164,180; | |
| 1690 | +--wix-color-18: 80,117,143; | |
| 1691 | +--wix-color-19: 53,78,95; | |
| 1692 | +--wix-color-20: 27,39,48; | |
| 1693 | +--wix-color-21: 255,233,223; | |
| 1694 | +--wix-color-22: 255,191,161; | |
| 1695 | +--wix-color-23: 250,133,79; | |
| 1696 | +--wix-color-24: 234,96,32; | |
| 1697 | +--wix-color-25: 201,64,1; | |
| 1698 | +--wix-color-26: 250,250,250; | |
| 1699 | +--wix-color-27: 0,0,0; | |
| 1700 | +--wix-color-28: 153,153,153; | |
| 1701 | +--wix-color-29: 102,102,102; | |
| 1702 | +--wix-color-30: 51,51,51; | |
| 1703 | +--wix-color-31: 75,99,151; | |
| 1704 | +--wix-color-32: 75,99,151; | |
| 1705 | +--wix-color-33: 75,99,151; | |
| 1706 | +--wix-color-34: 75,99,151; | |
| 1707 | +--wix-color-35: 0,0,0; | |
| 1708 | +--wix-color-36: 51,51,51; | |
| 1709 | +--wix-color-37: 0,0,0; | |
| 1710 | +--wix-color-38: 75,99,151; | |
| 1711 | +--wix-color-39: 75,99,151; | |
| 1712 | +--wix-color-40: 250,250,250; | |
| 1713 | +--wix-color-41: 75,99,151; | |
| 1714 | +--wix-color-42: 75,99,151; | |
| 1715 | +--wix-color-43: 250,250,250; | |
| 1716 | +--wix-color-44: 102,102,102; | |
| 1717 | +--wix-color-45: 102,102,102; | |
| 1718 | +--wix-color-46: 250,250,250; | |
| 1719 | +--wix-color-47: 250,250,250; | |
| 1720 | +--wix-color-48: 75,99,151; | |
| 1721 | +--wix-color-49: 75,99,151; | |
| 1722 | +--wix-color-50: 250,250,250; | |
| 1723 | +--wix-color-51: 75,99,151; | |
| 1724 | +--wix-color-52: 75,99,151; | |
| 1725 | +--wix-color-53: 250,250,250; | |
| 1726 | +--wix-color-54: 102,102,102; | |
| 1727 | +--wix-color-55: 102,102,102; | |
| 1728 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1729 | +--wix-font-Title-style: normal; | |
| 1730 | +--wix-font-Title-variant: normal; | |
| 1731 | +--wix-font-Title-weight: bold; | |
| 1732 | +--wix-font-Title-size: 65px; | |
| 1733 | +--wix-font-Title-line-height: 1.2em; | |
| 1734 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1735 | +--wix-font-Title-text-decoration: none; | |
| 1736 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1737 | +--wix-font-Menu-style: normal; | |
| 1738 | +--wix-font-Menu-variant: normal; | |
| 1739 | +--wix-font-Menu-weight: normal; | |
| 1740 | +--wix-font-Menu-size: 16px; | |
| 1741 | +--wix-font-Menu-line-height: 1.4em; | |
| 1742 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1743 | +--wix-font-Menu-text-decoration: none; | |
| 1744 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1745 | +--wix-font-Page-title-style: normal; | |
| 1746 | +--wix-font-Page-title-variant: normal; | |
| 1747 | +--wix-font-Page-title-weight: bold; | |
| 1748 | +--wix-font-Page-title-size: 38px; | |
| 1749 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1750 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1751 | +--wix-font-Page-title-text-decoration: none; | |
| 1752 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1753 | +--wix-font-Heading-XL-style: normal; | |
| 1754 | +--wix-font-Heading-XL-variant: normal; | |
| 1755 | +--wix-font-Heading-XL-weight: normal; | |
| 1756 | +--wix-font-Heading-XL-size: 34px; | |
| 1757 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1758 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1759 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1760 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1761 | +--wix-font-Heading-L-style: normal; | |
| 1762 | +--wix-font-Heading-L-variant: normal; | |
| 1763 | +--wix-font-Heading-L-weight: normal; | |
| 1764 | +--wix-font-Heading-L-size: 30px; | |
| 1765 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1766 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1767 | +--wix-font-Heading-L-text-decoration: none; | |
| 1768 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1769 | +--wix-font-Heading-M-style: normal; | |
| 1770 | +--wix-font-Heading-M-variant: normal; | |
| 1771 | +--wix-font-Heading-M-weight: normal; | |
| 1772 | +--wix-font-Heading-M-size: 25px; | |
| 1773 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1774 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1775 | +--wix-font-Heading-M-text-decoration: none; | |
| 1776 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1777 | +--wix-font-Heading-S-style: normal; | |
| 1778 | +--wix-font-Heading-S-variant: normal; | |
| 1779 | +--wix-font-Heading-S-weight: normal; | |
| 1780 | +--wix-font-Heading-S-size: 19px; | |
| 1781 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1782 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1783 | +--wix-font-Heading-S-text-decoration: none; | |
| 1784 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1785 | +--wix-font-Body-L-style: normal; | |
| 1786 | +--wix-font-Body-L-variant: normal; | |
| 1787 | +--wix-font-Body-L-weight: normal; | |
| 1788 | +--wix-font-Body-L-size: 16px; | |
| 1789 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1790 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1791 | +--wix-font-Body-L-text-decoration: none; | |
| 1792 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1793 | +--wix-font-Body-M-style: normal; | |
| 1794 | +--wix-font-Body-M-variant: normal; | |
| 1795 | +--wix-font-Body-M-weight: normal; | |
| 1796 | +--wix-font-Body-M-size: 16px; | |
| 1797 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1798 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1799 | +--wix-font-Body-M-text-decoration: none; | |
| 1800 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1801 | +--wix-font-Body-S-style: normal; | |
| 1802 | +--wix-font-Body-S-variant: normal; | |
| 1803 | +--wix-font-Body-S-weight: normal; | |
| 1804 | +--wix-font-Body-S-size: 12px; | |
| 1805 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1806 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1807 | +--wix-font-Body-S-text-decoration: none; | |
| 1808 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1809 | +--wix-font-Body-XS-style: normal; | |
| 1810 | +--wix-font-Body-XS-variant: normal; | |
| 1811 | +--wix-font-Body-XS-weight: normal; | |
| 1812 | +--wix-font-Body-XS-size: 12px; | |
| 1813 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1814 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1815 | +--wix-font-Body-XS-text-decoration: none; | |
| 1816 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1817 | +--wix-font-LIGHT-style: normal; | |
| 1818 | +--wix-font-LIGHT-variant: normal; | |
| 1819 | +--wix-font-LIGHT-weight: normal; | |
| 1820 | +--wix-font-LIGHT-size: 12px; | |
| 1821 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1822 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1823 | +--wix-font-LIGHT-text-decoration: none; | |
| 1824 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1825 | +--wix-font-MEDIUM-style: normal; | |
| 1826 | +--wix-font-MEDIUM-variant: normal; | |
| 1827 | +--wix-font-MEDIUM-weight: normal; | |
| 1828 | +--wix-font-MEDIUM-size: 12px; | |
| 1829 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1830 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1831 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1832 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1833 | +--wix-font-STRONG-style: normal; | |
| 1834 | +--wix-font-STRONG-variant: normal; | |
| 1835 | +--wix-font-STRONG-weight: normal; | |
| 1836 | +--wix-font-STRONG-size: 12px; | |
| 1837 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1838 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1839 | +--wix-font-STRONG-text-decoration: none; | |
| 1840 | + --wix-direction: ltr; | |
| 1841 | +--newItemsDetails: 1; | |
| 1842 | +--galleryImageRatio: 2; | |
| 1843 | +--galleryThumbnailsAlignment: 3; | |
| 1844 | +--titlePlacementHorizontallyCompatible: 1; | |
| 1845 | +--overlayGradientDegrees: 180; | |
| 1846 | +--slideshowInfoSize: 120; | |
| 1847 | +--gridStyle: 1; | |
| 1848 | +--previewHover: 0; | |
| 1849 | +--arrowsSize: 50; | |
| 1850 | +--itemBorderRadius: 0; | |
| 1851 | +--arrowsType: 4; | |
| 1852 | +--customButtonBorderRadius: 0; | |
| 1853 | +--m_fixedGalleryRatio: 2; | |
| 1854 | +--isVertical: 1; | |
| 1855 | +--titleDescriptionSpace: 2; | |
| 1856 | +--gallerySize: 50; | |
| 1857 | +--te-padding-slider: 50; | |
| 1858 | +--m_designedPresetId: -1; | |
| 1859 | +--newItemsLocation: 0; | |
| 1860 | +--scrollDirection: 0; | |
| 1861 | +--overlayAnimation: 0; | |
| 1862 | +--collageDensity: 100; | |
| 1863 | +--calculateTextBoxHeightMode: 0; | |
| 1864 | +--slideshowLoop: 1; | |
| 1865 | +--externalCustomButtonBorderWidth: 1; | |
| 1866 | +--m_thumbnailSize: 80; | |
| 1867 | +--loveCounter: 0; | |
| 1868 | +--galleryLayout: 3; | |
| 1869 | +--titlePlacement: 1; | |
| 1870 | +--m_galleryLayout: 3; | |
| 1871 | +--scrollAnimation: 0; | |
| 1872 | +--numberOfImagesPerRow: 4; | |
| 1873 | +--fixedGalleryRatio: 0; | |
| 1874 | +--galleryVerticalAlign: 2; | |
| 1875 | +--imageHoverAnimation: 0; | |
| 1876 | +--m_allowFixedGalleryRatio: 1; | |
| 1877 | +--arrowsVerticalPosition: 1; | |
| 1878 | +--galleryHorizontalAlign: 0; | |
| 1879 | +--thumbnailSpacings: 10; | |
| 1880 | +--imageResize: 0; | |
| 1881 | +--designedPresetId: -1; | |
| 1882 | +--imageMargin: 10; | |
| 1883 | +--allowFixedGalleryRatio: 0; | |
| 1884 | +--arrowsContainerType: 2; | |
| 1885 | +--m_galleryThumbnailsAlignment: 0; | |
| 1886 | +--arrowsContainerBorderRadius: 50; | |
| 1887 | +--textBoxHeight: 199; | |
| 1888 | +--scrollDuration: 1; | |
| 1889 | +--textFont: normal normal normal 20px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1890 | +--m_itemIconColorSlideshow: 0,0,0; | |
| 1891 | +--m_itemIconColorSlideshow-rgb: 0,0,0; | |
| 1892 | +--m_itemIconColorSlideshow-opacity: 1; | |
| 1893 | +--m_itemDescriptionFontColor: 255,255,255; | |
| 1894 | +--m_itemDescriptionFontColor-rgb: 255,255,255; | |
| 1895 | +--m_itemDescriptionFontColor-opacity: 1; | |
| 1896 | +--m_itemBorderColor: 0,0,0; | |
| 1897 | +--m_itemBorderColor-rgb: 0,0,0; | |
| 1898 | +--m_itemBorderColor-opacity: 1; | |
| 1899 | +--itemIconColor: 255,255,255; | |
| 1900 | +--itemIconColor-rgb: 255,255,255; | |
| 1901 | +--itemIconColor-opacity: 1; | |
| 1902 | +--titleColorExpand: 0,0,0; | |
| 1903 | +--titleColorExpand-rgb: 0,0,0; | |
| 1904 | +--titleColorExpand-opacity: 1; | |
| 1905 | +--loadMoreButtonFontColor: 0,0,0; | |
| 1906 | +--loadMoreButtonFontColor-rgb: 0,0,0; | |
| 1907 | +--loadMoreButtonFontColor-opacity: 1; | |
| 1908 | +--itemDescriptionFontColor: 255,255,255; | |
| 1909 | +--itemDescriptionFontColor-rgb: 255,255,255; | |
| 1910 | +--itemDescriptionFontColor-opacity: 1; | |
| 1911 | +--m_customButtonFontColor: 255,255,255; | |
| 1912 | +--m_customButtonFontColor-rgb: 255,255,255; | |
| 1913 | +--m_customButtonFontColor-opacity: 1; | |
| 1914 | +--m_overlayGradientColor1: 0,0,0; | |
| 1915 | +--m_overlayGradientColor1-rgb: 0,0,0; | |
| 1916 | +--m_overlayGradientColor1-opacity: 1; | |
| 1917 | +--m_arrowsColor: 0,0,0; | |
| 1918 | +--m_arrowsColor-rgb: 0,0,0; | |
| 1919 | +--m_arrowsColor-opacity: 1; | |
| 1920 | +--arrowsContainerBackgroundColor: 255,255,255,0.5; | |
| 1921 | +--arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1922 | +--arrowsContainerBackgroundColor-opacity: 0.5; | |
| 1923 | +--m_externalCustomButtonColor: 26,106,255; | |
| 1924 | +--m_externalCustomButtonColor-rgb: 26,106,255; | |
| 1925 | +--m_externalCustomButtonColor-opacity: 1; | |
| 1926 | +--customButtonBorderColor: 255,255,255; | |
| 1927 | +--customButtonBorderColor-rgb: 255,255,255; | |
| 1928 | +--customButtonBorderColor-opacity: 1; | |
| 1929 | +--m_customButtonFontColorForHover: 0,0,0; | |
| 1930 | +--m_customButtonFontColorForHover-rgb: 0,0,0; | |
| 1931 | +--m_customButtonFontColorForHover-opacity: 1; | |
| 1932 | +--m_itemOpacity: 0,0,0,0.3; | |
| 1933 | +--m_itemOpacity-rgb: 0,0,0; | |
| 1934 | +--m_itemOpacity-opacity: 0.3; | |
| 1935 | +--textBoxFillColor: 238,238,238; | |
| 1936 | +--textBoxFillColor-rgb: 238,238,238; | |
| 1937 | +--textBoxFillColor-opacity: 1; | |
| 1938 | +--backgroundGradientColor2: 26,106,255; | |
| 1939 | +--backgroundGradientColor2-rgb: 26,106,255; | |
| 1940 | +--backgroundGradientColor2-opacity: 1; | |
| 1941 | +--itemOpacity: 0,0,0,0; | |
| 1942 | +--itemOpacity-rgb: 0,0,0; | |
| 1943 | +--itemOpacity-opacity: 0; | |
| 1944 | +--loadMoreButtonColor: 255,255,255; | |
| 1945 | +--loadMoreButtonColor-rgb: 255,255,255; | |
| 1946 | +--loadMoreButtonColor-opacity: 1; | |
| 1947 | +--m_itemFontColor: 255,255,255; | |
| 1948 | +--m_itemFontColor-rgb: 255,255,255; | |
| 1949 | +--m_itemFontColor-opacity: 1; | |
| 1950 | +--m_arrowsContainerBackgroundColor: 255,255,255; | |
| 1951 | +--m_arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1952 | +--m_arrowsContainerBackgroundColor-opacity: 1; | |
| 1953 | +--loadMoreButtonBorderColor: 0,0,0; | |
| 1954 | +--loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1955 | +--loadMoreButtonBorderColor-opacity: 1; | |
| 1956 | +--m_itemShadowOpacityAndColor: 0,0,0; | |
| 1957 | +--m_itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1958 | +--m_itemShadowOpacityAndColor-opacity: 1; | |
| 1959 | +--customButtonFontColor: 255,255,255; | |
| 1960 | +--customButtonFontColor-rgb: 255,255,255; | |
| 1961 | +--customButtonFontColor-opacity: 1; | |
| 1962 | +--imageLoadingColor: 238,238,238; | |
| 1963 | +--imageLoadingColor-rgb: 238,238,238; | |
| 1964 | +--imageLoadingColor-opacity: 1; | |
| 1965 | +--m_itemFontColorSlideshow: 0,0,0; | |
| 1966 | +--m_itemFontColorSlideshow-rgb: 0,0,0; | |
| 1967 | +--m_itemFontColorSlideshow-opacity: 1; | |
| 1968 | +--externalCustomButtonBorderColor: 0,0,0; | |
| 1969 | +--externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 1970 | +--externalCustomButtonBorderColor-opacity: 1; | |
| 1971 | +--itemShadowOpacityAndColor: 0,0,0; | |
| 1972 | +--itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1973 | +--itemShadowOpacityAndColor-opacity: 1; | |
| 1974 | +--externalCustomButtonColor: 26,106,255; | |
| 1975 | +--externalCustomButtonColor-rgb: 26,106,255; | |
| 1976 | +--externalCustomButtonColor-opacity: 1; | |
| 1977 | +--itemFontColorSlideshow: 0,0,0; | |
| 1978 | +--itemFontColorSlideshow-rgb: 0,0,0; | |
| 1979 | +--itemFontColorSlideshow-opacity: 1; | |
| 1980 | +--itemFontColor: 255,255,255; | |
| 1981 | +--itemFontColor-rgb: 255,255,255; | |
| 1982 | +--itemFontColor-opacity: 1; | |
| 1983 | +--m_oneColorAnimationColor: 255,255,255; | |
| 1984 | +--m_oneColorAnimationColor-rgb: 255,255,255; | |
| 1985 | +--m_oneColorAnimationColor-opacity: 1; | |
| 1986 | +--arrowsColor: 25,33,50; | |
| 1987 | +--arrowsColor-rgb: 25,33,50; | |
| 1988 | +--arrowsColor-opacity: 1; | |
| 1989 | +--m_itemIconColor: 255,255,255; | |
| 1990 | +--m_itemIconColor-rgb: 255,255,255; | |
| 1991 | +--m_itemIconColor-opacity: 1; | |
| 1992 | +--itemBorderColor: 0,0,0; | |
| 1993 | +--itemBorderColor-rgb: 0,0,0; | |
| 1994 | +--itemBorderColor-opacity: 1; | |
| 1995 | +--m_loadMoreButtonBorderColor: 0,0,0; | |
| 1996 | +--m_loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1997 | +--m_loadMoreButtonBorderColor-opacity: 1; | |
| 1998 | +--m_loadMoreButtonColor: 255,255,255; | |
| 1999 | +--m_loadMoreButtonColor-rgb: 255,255,255; | |
| 2000 | +--m_loadMoreButtonColor-opacity: 1; | |
| 2001 | +--backgroundGradientColor1: 255,255,255; | |
| 2002 | +--backgroundGradientColor1-rgb: 255,255,255; | |
| 2003 | +--backgroundGradientColor1-opacity: 1; | |
| 2004 | +--m_customButtonBorderColor: 255,255,255; | |
| 2005 | +--m_customButtonBorderColor-rgb: 255,255,255; | |
| 2006 | +--m_customButtonBorderColor-opacity: 1; | |
| 2007 | +--itemIconColorSlideshow: 0,0,0; | |
| 2008 | +--itemIconColorSlideshow-rgb: 0,0,0; | |
| 2009 | +--itemIconColorSlideshow-opacity: 1; | |
| 2010 | +--foreColor: 238,238,238; | |
| 2011 | +--foreColor-rgb: 238,238,238; | |
| 2012 | +--foreColor-opacity: 1; | |
| 2013 | +--m_itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2014 | +--m_itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2015 | +--m_itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2016 | +--bgColorExpand: 255,255,255; | |
| 2017 | +--bgColorExpand-rgb: 255,255,255; | |
| 2018 | +--bgColorExpand-opacity: 1; | |
| 2019 | +--textBoxBorderColor: 0,0,0; | |
| 2020 | +--textBoxBorderColor-rgb: 0,0,0; | |
| 2021 | +--textBoxBorderColor-opacity: 1; | |
| 2022 | +--customButtonFontColorForHover: 0,0,0; | |
| 2023 | +--customButtonFontColorForHover-rgb: 0,0,0; | |
| 2024 | +--customButtonFontColorForHover-opacity: 1; | |
| 2025 | +--m_loadMoreButtonFontColor: 0,0,0; | |
| 2026 | +--m_loadMoreButtonFontColor-rgb: 0,0,0; | |
| 2027 | +--m_loadMoreButtonFontColor-opacity: 1; | |
| 2028 | +--customButtonColor: 255,255,255; | |
| 2029 | +--customButtonColor-rgb: 255,255,255; | |
| 2030 | +--customButtonColor-opacity: 1; | |
| 2031 | +--descriptionColorExpand: 0,0,0; | |
| 2032 | +--descriptionColorExpand-rgb: 0,0,0; | |
| 2033 | +--descriptionColorExpand-opacity: 1; | |
| 2034 | +--actionsColorExpand: 0,0,0; | |
| 2035 | +--actionsColorExpand-rgb: 0,0,0; | |
| 2036 | +--actionsColorExpand-opacity: 1; | |
| 2037 | +--oneColorAnimationColor: 255,255,255; | |
| 2038 | +--oneColorAnimationColor-rgb: 255,255,255; | |
| 2039 | +--oneColorAnimationColor-opacity: 1; | |
| 2040 | +--backColor: 238,238,238; | |
| 2041 | +--backColor-rgb: 238,238,238; | |
| 2042 | +--backColor-opacity: 1; | |
| 2043 | +--itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2044 | +--itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2045 | +--itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2046 | +--m_externalCustomButtonBorderColor: 0,0,0; | |
| 2047 | +--m_externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 2048 | +--m_externalCustomButtonBorderColor-opacity: 1; | |
| 2049 | +--te-background-color-picker: 149,185,255; | |
| 2050 | +--te-background-color-picker-rgb: 149,185,255; | |
| 2051 | +--te-background-color-picker-opacity: 1; | |
| 2052 | +--m_customButtonColor: 255,255,255; | |
| 2053 | +--m_customButtonColor-rgb: 255,255,255; | |
| 2054 | +--m_customButtonColor-opacity: 1; | |
| 2055 | +--overlayGradientColor2: 0,0,0; | |
| 2056 | +--overlayGradientColor2-rgb: 0,0,0; | |
| 2057 | +--overlayGradientColor2-opacity: 1; | |
| 2058 | +--m_overlayGradientColor2: 0,0,0; | |
| 2059 | +--m_overlayGradientColor2-rgb: 0,0,0; | |
| 2060 | +--m_overlayGradientColor2-opacity: 1; | |
| 2061 | +--overlayGradientColor1: 0,0,0; | |
| 2062 | +--overlayGradientColor1-rgb: 0,0,0; | |
| 2063 | +--overlayGradientColor1-opacity: 1; | |
| 2064 | +--backgroundColor: 102,102,102; | |
| 2065 | +--backgroundColor-rgb: 102,102,102; | |
| 2066 | +--backgroundColor-opacity: 1; | |
| 2067 | +--textColor: 0,0,0; | |
| 2068 | +--textColor-rgb: 0,0,0; | |
| 2069 | +--textColor-opacity: 1; | |
| 2070 | +--m_customButtonFontForHover: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2071 | +--m_customButtonFontForHover-style: normal; | |
| 2072 | +--m_customButtonFontForHover-variant: normal; | |
| 2073 | +--m_customButtonFontForHover-weight: normal; | |
| 2074 | +--m_customButtonFontForHover-size: 15px; | |
| 2075 | +--m_customButtonFontForHover-line-height: 18px; | |
| 2076 | +--m_customButtonFontForHover-family: proxima-n-w01-reg,sans-serif; | |
| 2077 | +--m_customButtonFontForHover-text-decoration: none; | |
| 2078 | +--m_customButtonFont: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2079 | +--m_customButtonFont-style: normal; | |
| 2080 | +--m_customButtonFont-variant: normal; | |
| 2081 | +--m_customButtonFont-weight: normal; | |
| 2082 | +--m_customButtonFont-size: 15px; | |
| 2083 | +--m_customButtonFont-line-height: 18px; | |
| 2084 | +--m_customButtonFont-family: proxima-n-w01-reg,sans-serif; | |
| 2085 | +--m_customButtonFont-text-decoration: none; | |
| 2086 | +--m_itemFont: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2087 | +--m_itemFont-style: normal; | |
| 2088 | +--m_itemFont-variant: normal; | |
| 2089 | +--m_itemFont-weight: normal; | |
| 2090 | +--m_itemFont-size: 22px; | |
| 2091 | +--m_itemFont-line-height: 27px; | |
| 2092 | +--m_itemFont-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2093 | +--m_itemFont-text-decoration: none; | |
| 2094 | +--m_itemFontSlideshow: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2095 | +--m_itemFontSlideshow-style: normal; | |
| 2096 | +--m_itemFontSlideshow-variant: normal; | |
| 2097 | +--m_itemFontSlideshow-weight: normal; | |
| 2098 | +--m_itemFontSlideshow-size: 22px; | |
| 2099 | +--m_itemFontSlideshow-line-height: 27px; | |
| 2100 | +--m_itemFontSlideshow-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2101 | +--m_itemFontSlideshow-text-decoration: none; | |
| 2102 | +--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2103 | +--customButtonFontForHover-style: normal; | |
| 2104 | +--customButtonFontForHover-variant: normal; | |
| 2105 | +--customButtonFontForHover-weight: normal; | |
| 2106 | +--customButtonFontForHover-size: 16px; | |
| 2107 | +--customButtonFontForHover-line-height: 1.6em; | |
| 2108 | +--customButtonFontForHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2109 | +--customButtonFontForHover-text-decoration: none; | |
| 2110 | +--text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2111 | +--text-editor-font-style: normal; | |
| 2112 | +--text-editor-font-variant: normal; | |
| 2113 | +--text-editor-font-weight: normal; | |
| 2114 | +--text-editor-font-size: 40px; | |
| 2115 | +--text-editor-font-line-height: 50px; | |
| 2116 | +--text-editor-font-family: avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2117 | +--text-editor-font-text-decoration: none; | |
| 2118 | +--m_loadMoreButtonFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2119 | +--m_loadMoreButtonFont-style: normal; | |
| 2120 | +--m_loadMoreButtonFont-variant: normal; | |
| 2121 | +--m_loadMoreButtonFont-weight: normal; | |
| 2122 | +--m_loadMoreButtonFont-size: 15px; | |
| 2123 | +--m_loadMoreButtonFont-line-height: 18px; | |
| 2124 | +--m_loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2125 | +--m_loadMoreButtonFont-text-decoration: none; | |
| 2126 | +--itemDescriptionFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2127 | +--itemDescriptionFont-style: normal; | |
| 2128 | +--itemDescriptionFont-variant: normal; | |
| 2129 | +--itemDescriptionFont-weight: normal; | |
| 2130 | +--itemDescriptionFont-size: 16px; | |
| 2131 | +--itemDescriptionFont-line-height: 1.6em; | |
| 2132 | +--itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2133 | +--itemDescriptionFont-text-decoration: none; | |
| 2134 | +--text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2135 | +--text-editor-font-1499774301866-style: normal; | |
| 2136 | +--text-editor-font-1499774301866-variant: normal; | |
| 2137 | +--text-editor-font-1499774301866-weight: normal; | |
| 2138 | +--text-editor-font-1499774301866-size: 40px; | |
| 2139 | +--text-editor-font-1499774301866-line-height: 50px; | |
| 2140 | +--text-editor-font-1499774301866-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2141 | +--text-editor-font-1499774301866-text-decoration: none; | |
| 2142 | +--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2143 | +--customButtonFont-style: normal; | |
| 2144 | +--customButtonFont-variant: normal; | |
| 2145 | +--customButtonFont-weight: normal; | |
| 2146 | +--customButtonFont-size: 16px; | |
| 2147 | +--customButtonFont-line-height: 1.6em; | |
| 2148 | +--customButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2149 | +--customButtonFont-text-decoration: none; | |
| 2150 | +--text-editor-font-1499927482082: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2151 | +--text-editor-font-1499927482082-style: normal; | |
| 2152 | +--text-editor-font-1499927482082-variant: normal; | |
| 2153 | +--text-editor-font-1499927482082-weight: normal; | |
| 2154 | +--text-editor-font-1499927482082-size: 40px; | |
| 2155 | +--text-editor-font-1499927482082-line-height: 50px; | |
| 2156 | +--text-editor-font-1499927482082-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2157 | +--text-editor-font-1499927482082-text-decoration: none; | |
| 2158 | +--m_itemDescriptionFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2159 | +--m_itemDescriptionFont-style: normal; | |
| 2160 | +--m_itemDescriptionFont-variant: normal; | |
| 2161 | +--m_itemDescriptionFont-weight: normal; | |
| 2162 | +--m_itemDescriptionFont-size: 15px; | |
| 2163 | +--m_itemDescriptionFont-line-height: 18px; | |
| 2164 | +--m_itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2165 | +--m_itemDescriptionFont-text-decoration: none; | |
| 2166 | +--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2167 | +--loadMoreButtonFont-style: normal; | |
| 2168 | +--loadMoreButtonFont-variant: normal; | |
| 2169 | +--loadMoreButtonFont-weight: normal; | |
| 2170 | +--loadMoreButtonFont-size: 16px; | |
| 2171 | +--loadMoreButtonFont-line-height: 1.6em; | |
| 2172 | +--loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2173 | +--loadMoreButtonFont-text-decoration: none; | |
| 2174 | +--itemFontSlideshow: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2175 | +--itemFontSlideshow-style: normal; | |
| 2176 | +--itemFontSlideshow-variant: normal; | |
| 2177 | +--itemFontSlideshow-weight: normal; | |
| 2178 | +--itemFontSlideshow-size: 19px; | |
| 2179 | +--itemFontSlideshow-line-height: 1.4em; | |
| 2180 | +--itemFontSlideshow-family: montserrat,sans-serif; | |
| 2181 | +--itemFontSlideshow-text-decoration: none; | |
| 2182 | +--titleFontExpand: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2183 | +--titleFontExpand-style: normal; | |
| 2184 | +--titleFontExpand-variant: normal; | |
| 2185 | +--titleFontExpand-weight: normal; | |
| 2186 | +--titleFontExpand-size: 19px; | |
| 2187 | +--titleFontExpand-line-height: 1.4em; | |
| 2188 | +--titleFontExpand-family: montserrat,sans-serif; | |
| 2189 | +--titleFontExpand-text-decoration: none; | |
| 2190 | +--m_itemDescriptionFontSlideshow: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2191 | +--m_itemDescriptionFontSlideshow-style: normal; | |
| 2192 | +--m_itemDescriptionFontSlideshow-variant: normal; | |
| 2193 | +--m_itemDescriptionFontSlideshow-weight: normal; | |
| 2194 | +--m_itemDescriptionFontSlideshow-size: 15px; | |
| 2195 | +--m_itemDescriptionFontSlideshow-line-height: 18px; | |
| 2196 | +--m_itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2197 | +--m_itemDescriptionFontSlideshow-text-decoration: none; | |
| 2198 | +--itemDescriptionFontSlideshow: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2199 | +--itemDescriptionFontSlideshow-style: normal; | |
| 2200 | +--itemDescriptionFontSlideshow-variant: normal; | |
| 2201 | +--itemDescriptionFontSlideshow-weight: normal; | |
| 2202 | +--itemDescriptionFontSlideshow-size: 16px; | |
| 2203 | +--itemDescriptionFontSlideshow-line-height: 1.6em; | |
| 2204 | +--itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2205 | +--itemDescriptionFontSlideshow-text-decoration: none; | |
| 2206 | +--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2207 | +--descriptionFontExpand-style: normal; | |
| 2208 | +--descriptionFontExpand-variant: normal; | |
| 2209 | +--descriptionFontExpand-weight: normal; | |
| 2210 | +--descriptionFontExpand-size: 16px; | |
| 2211 | +--descriptionFontExpand-line-height: 1.6em; | |
| 2212 | +--descriptionFontExpand-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2213 | +--descriptionFontExpand-text-decoration: none; | |
| 2214 | +--itemFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2215 | +--itemFont-style: normal; | |
| 2216 | +--itemFont-variant: normal; | |
| 2217 | +--itemFont-weight: normal; | |
| 2218 | +--itemFont-size: 19px; | |
| 2219 | +--itemFont-line-height: 1.4em; | |
| 2220 | +--itemFont-family: montserrat,sans-serif; | |
| 2221 | +--itemFont-text-decoration: none; | |
| 2222 | +--textFont-style: normal; | |
| 2223 | +--textFont-variant: normal; | |
| 2224 | +--textFont-weight: normal; | |
| 2225 | +--textFont-size: 20px; | |
| 2226 | +--textFont-line-height: 1.4em; | |
| 2227 | +--textFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2228 | +--textFont-text-decoration: none; | |
| 2229 | + }</style><style> | |
| 2230 | + | |
| 2231 | + .s__3mb942.oUUTDbO--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2232 | + | |
| 2233 | + .sfxZxsX{--wbu-color-blue-0:#0F2CCF;--wbu-color-blue-100:#2F5DFF;--wbu-color-blue-200:#597DFF;--wbu-color-blue-300:#ACBEFF;--wbu-color-blue-400:#D5DFFF;--wbu-color-blue-500:#EAEFFF;--wbu-color-blue-600:#F5F7FF;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#A8A6A5;--wbu-color-black-500:#E0DFDF;--wbu-color-black-600:#F1F0EF;--wbu-color-red-0:#9C2426;--wbu-color-red-100:#DF3336;--wbu-color-red-200:#E55C5E;--wbu-color-red-300:#ED8F90;--wbu-color-red-400:#F4B8B9;--wbu-color-red-500:#F9D6D7;--wbu-color-red-600:#FCEBEB;--wbu-color-green-0:#0D4F3D;--wbu-color-green-100:#4B916D;--wbu-color-green-200:#97C693;--wbu-color-green-300:#BDE2A7;--wbu-color-green-400:#DAF3C0;--wbu-color-green-500:#EFFAE5;--wbu-color-green-600:#F1F5ED;--wbu-color-yellow-0:#D49341;--wbu-color-yellow-100:#F9AD4D;--wbu-color-yellow-200:#FABD71;--wbu-color-yellow-300:#FCD29D;--wbu-color-yellow-400:#FDEAD2;--wbu-color-yellow-500:#FEF3E5;--wbu-color-yellow-600:#FEF6ED;--wbu-color-orange-0:#AE3E09;--wbu-color-orange-100:#FF8044;--wbu-color-orange-200:#FE9361;--wbu-color-orange-300:#FDA77F;--wbu-color-orange-400:#FBCFBB;--wbu-color-orange-500:#FBE3D9;--wbu-color-orange-600:#FDF1EC;--wbu-color-purple-0:#5000AA;--wbu-color-purple-100:#7200F3;--wbu-color-purple-200:#8B2DF5;--wbu-color-purple-300:#BE89F9;--wbu-color-purple-400:#D7B7FB;--wbu-color-purple-500:#F1E5FE;--wbu-color-purple-600:#F8F2FF;--wbu-color-ai-0:#4D3DD0;--wbu-color-ai-100:#5A48F5;--wbu-color-ai-200:#7B6DF7;--wbu-color-ai-300:#A59BFA;--wbu-color-ai-400:#D6D1FC;--wbu-color-ai-500:#E7E4FE;--wbu-color-ai-600:#EEECFE;--wbu-heading-font-stack:'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3', 'hiragino kaku gothic pro', sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600} | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + .sDDrUS7.oINNVeg--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2237 | + | |
| 2238 | + | |
| 2239 | + | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | + | |
| 2244 | + | |
| 2245 | + | |
| 2246 | +/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2247 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/GalleryWrapperWixStyles.scss ***! | |
| 2248 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .nav-arrows-container .custom-nav-arrows svg{width:100%;height:100%}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2249 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/FullscreenWrapperWixStyles.scss ***! | |
| 2250 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ | |
| 2251 | + | |
| 2252 | + .fullscreen-focus-lock { | |
| 2253 | + height: 100%; | |
| 2254 | +} | |
| 2255 | + | |
| 2256 | +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2257 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/GalleryWrapper.global.scss ***! | |
| 2258 | + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-gallery-stop-scroll-for-fullscreen{overflow-y:hidden}div.pro-gallery-parent-container .show-more-container i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container button.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more:hover{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{background:none !important;font-size:26px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{font-size:15px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i{font-size:26px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{font-size:15px}/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2259 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/FullscreenWrapper.global.scss ***! | |
| 2260 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{opacity:.3} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-cart-icon{background:inherit !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love-store.pro-gallery-loved{color:#e03939 !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love.pro-gallery-loved{color:#e03939 !important}/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2261 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/SocialShareWrapper.global.scss ***! | |
| 2262 | + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .social-share-wrapper{position:fixed;top:0;bottom:0;left:0;right:0;z-index:200005} .social-share-wrapper .mobile-social-share-screen{position:absolute;top:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0)} .social-share-wrapper .mobile-social-share-screen.mobile-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:background-color .3s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-background{height:calc(100% - 150px);touch-action:none} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab{position:absolute;bottom:0px;width:100%;height:150px;box-sizing:border-box;background-color:#fff;margin-bottom:-150px;display:flex;justify-content:center;align-items:center;transition:all .4s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab.mobile-social-share-tab-visible{margin-bottom:0px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:220px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list .social-share-icon{height:16px;width:16px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container{height:32px;margin-top:20px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-input{width:200px;font-size:11px;padding:2px 4px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button{width:40px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{height:16px;width:16px} .social-share-wrapper .desktop-social-share-screen{position:fixed;top:0;left:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center} .social-share-wrapper .desktop-social-share-screen.desktop-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-background{position:fixed;height:100%;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup{position:relative;width:580px;height:250px;box-sizing:border-box;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:-100px;opacity:0;transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup.desktop-social-share-popup-visible{margin-bottom:0px;opacity:1} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button{position:absolute;top:24px;right:24px;cursor:pointer} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:280px} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list .social-share-icon{height:24px;width:24px;transition:color .2s ease} .social-share-wrapper .social-share-item{position:relative} .social-share-wrapper .social-share-item .social-share-button{opacity:1;transition:opacity .2s ease;cursor:pointer} .social-share-wrapper .social-share-item .social-share-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-item .social-share-button:hover{opacity:.65} .social-share-wrapper .social-share-item .social-share-button:active{opacity:1} .social-share-wrapper .social-share-copylink-container{display:flex;margin-top:25px;height:40px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-input{border:1px solid #000;padding:2px 8px;height:100%;width:260px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button{width:50px;height:100%;background-color:#000;color:#fff;cursor:pointer;transition:background-color .1s ease} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover{background-color:rgba(0,0,0,.65)} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{margin-top:2px}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2263 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../../core-packages/pro-gallery-old/dist/statics/main.css ***! | |
| 2264 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover) .gallery-item-content .gallery-item{transition:opacity .4s ease !important}div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{opacity:0}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .hover-info-element{transition:transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(1.1)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(1.11)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover) .hover-info-element,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover) .hover-info-element{transform:scale(0.9009)}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .4s linear !important}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{filter:blur(6px)}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover):hover .gallery-item-content{filter:grayscale(1)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover){transition:background-color .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover){transition:transform .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover{background-color:rgba(0,0,0,0) !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(0.985)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(0.985)}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover):hover .gallery-item-content{filter:invert(1)}div.pro-gallery .gallery-item-container.color-in-on-hover .gallery-item-content{filter:grayscale(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.color-in-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.color-in-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:grayscale(0)}div.pro-gallery .gallery-item-container.darkened-on-hover .gallery-item-content{filter:brightness(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.darkened-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.darkened-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:brightness(0.7)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover .gallery-item-hover-inner{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover):before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover:before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner{opacity:1}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover):before{opacity:0}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:0 !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(0)} .animation-slide{transition:width .4s ease,height .4s ease,top .4s ease,left .4s ease} .item-with-secondary-media-container .secondary-media-item.hide{opacity:0} .item-with-secondary-media-container .secondary-media-item.show{opacity:1} *[data-collapsed=true] .pro-gallery-parent-container .gallery-item, *[data-hidden=true] .pro-gallery-parent-container .gallery-item{background-image:none !important}html.pro-gallery{width:100%;height:auto}body.pro-gallery{transition:opacity 2s ease} #gallery-loader{position:fixed;top:50%} .show-more-container{text-align:center;line-height:138px} .show-more-container i.show-more{color:#5d5d61;font-size:40px;cursor:pointer;margin-top:-3px} .show-more-container button.show-more{display:inline-block;padding:11px 29px;border-radius:0;border:2px solid #5d5d61;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:12px;color:#5d5d61;background:rgba(0,0,0,0);cursor:pointer} .show-more-container button.show-more:hover{background:rgba(0,0,0,.1)} .more-items-loader{display:block;width:100%;text-align:center;line-height:50px;font-size:30px;color:#116dff} .version-header{color:#e03939;text-align:left;font-family:"Consolas",monospace;font-size:13px;position:absolute;top:0;left:0;width:320px;height:100px;line-height:30px;background:hsla(0,0%,100%,.8);z-index:100} .auto-slideshow-button{margin-top:19px;padding:5px;height:28px;width:20px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9} .auto-slideshow-counter{margin-top:24px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;opacity:.9;font-size:15px;line-height:normal}@keyframes fadeIn{from{opacity:0}to{opacity:1}} .mouse-cursor{display:flex;width:100%;position:absolute} .nav-arrows-container{left:auto;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9;align-items:center;background:rgba(0,0,0,0);border:none;justify-content:center} .nav-arrows-container.follow-mouse-cursor{position:relative;cursor:none} .nav-arrows-container:hover{opacity:1} .nav-arrows-container.drop-shadow svg{filter:drop-shadow(0px 1px 0.15px #B2B2B2)} .nav-arrows-container .slideshow-arrow{flex-shrink:0} .nav-arrows-container:focus:not(:focus-visible){--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important} .arrow-portal-container span{animation:fadeIn .1s ease-in-out;position:fixed;transition:top 50ms,left 50ms;display:flex;align-items:center;justify-content:center}div.gallery-slideshow div.pro-gallery,div.gallery-slideshow .gallery-column{box-sizing:content-box !important}div.gallery-slideshow .gallery-group,div.gallery-slideshow .gallery-item-container,div.gallery-slideshow .gallery-item-wrapper{overflow:visible !important}div.gallery-slideshow.streched .gallery-slideshow-info{padding-left:50px !important;padding-right:50px !important}@media(max-width: 500px){div.gallery-slideshow div.pro-gallery .gallery-slideshow-info{padding-left:20px;padding-right:20px}}div.gallery-slideshow div.pro-gallery .gallery-item-container .gallery-slideshow-info{position:absolute;padding-top:0px;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15} .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 60px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 10px 50px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px}div.pro-gallery{width:100%;height:100%;overflow:hidden;backface-visibility:hidden;position:relative}div.pro-gallery .gallery-column{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden}div.pro-gallery .gallery-column .gallery-left-padding{display:inline-block;height:100%}div.pro-gallery .gallery-column .gallery-top-padding{display:block;width:100%}div.pro-gallery .gallery-group{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden;box-sizing:border-box;padding:0;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px}div.pro-gallery .gallery-group.debug.gallery-group-gone{background:#cdcdd0}div.pro-gallery .gallery-group.debug.gallery-group-visible{background:#c1f0c1}div.pro-gallery .gallery-group.debug.gallery-group-hidden{background:#f99}div.pro-gallery .gallery-item-container{position:absolute;display:inline-block;vertical-align:top;border:none;padding:0;border-radius:0;box-sizing:border-box;overflow:hidden;transform-style:preserve-3d;backface-visibility:hidden;outline:none;text-decoration:none;color:inherit;will-change:top,left,width,height;box-sizing:border-box;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px;cursor:default;scroll-snap-align:center}div.pro-gallery .gallery-item-container .item-action{width:1px;height:1px;overflow:hidden;position:absolute;pointer-events:none;z-index:-1}div.pro-gallery .gallery-item-container .item-action:focus{--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info{cursor:pointer}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info button{text-decoration:underline;cursor:pointer}div.pro-gallery .gallery-item-container.visible{transform:translate3d(0, 0, 0)}div.pro-gallery .gallery-item-container.clickable{cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper{position:relative;width:100%;height:100%;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item{position:absolute;z-index:1;width:100%;height:100%;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .gallery-item{-o-object-fit:cover;object-fit:cover}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .text-item>div{width:100% !important;height:100% !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper.transparent,div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit{background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-preload{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit .gallery-item{background:rgba(0,0,0,0);-o-object-fit:contain;object-fit:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;overflow:hidden;border-radius:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item{box-sizing:border-box;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;white-space:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item .te-pro-gallery-text-item{line-height:normal !important;letter-spacing:normal !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item>div{background:initial !important;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item p,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item div,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h3,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h6,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item i{margin:0;padding:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item .pro-circle-preloader{top:50%;left:50%;height:30px;width:15px;z-index:-1;opacity:.4}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item img.gallery--placeholder-item{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded{background-color:rgba(0,0,0,0);opacity:1 !important;animation:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded.image-item:after{display:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded~.pro-circle-preloader{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.error{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded{background-size:cover;background-repeat:no-repeat;background-position:center center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded.grid-fit{background-size:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video{overflow:hidden;text-align:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video iframe{left:0;top:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing i{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playedOnce~.image-item{pointer-events:none;opacity:0;transition:opacity .2s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{display:inline-block;text-rendering:auto;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;position:absolute;z-index:11;top:50%;left:50%;height:60px;text-align:center;margin:-30px 0 0 -30px;background:#080808;color:#fff;border-radius:50px;opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle{opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-background,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-background{font-size:26px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:hover{opacity:.9}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:before,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:before{font-size:2.3em;opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info{position:absolute;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info>div{height:100%;width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{white-space:initial;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;border-radius:0;z-index:15;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-hover-inner{height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover.no-hover-bg:before{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;z-index:-1}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery.one-row{white-space:nowrap;float:left}div.pro-gallery.one-row .gallery-column{width:100%;float:none;white-space:nowrap}div.pro-gallery.one-row .gallery-column .gallery-group{display:inline-block;float:none}div.pro-gallery.one-row.slider .gallery-column{overflow-x:scroll}div.pro-gallery.one-row.slider .gallery-column.scroll-snap{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}div.pro-gallery.one-row .gallery-horizontal-scroll-inner{position:relative;will-change:transform}div.pro-gallery.thumbnails-gallery{overflow:hidden;float:left}div.pro-gallery.thumbnails-gallery .galleryColumn{position:relative;overflow:visible}div.pro-gallery.thumbnails-gallery .thumbnailItem{position:absolute;background-color:#fff;background-size:cover;background-position:center;overflow-y:inherit;border-radius:0px;cursor:pointer}div.pro-gallery.thumbnails-gallery .thumbnailItem.pro-gallery-highlight::after{content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;background-color:hsla(0,0%,100%,.6)}@media(max-width: 500px){div.pro-gallery.thumbnails-gallery{overflow:visible}}div.pro-gallery *:focus{box-shadow:none}div.pro-gallery.accessible i:focus,div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus{box-shadow:inset 0 0 0 1px #fff,inset 0 0 1px 4px #116dff}div.pro-gallery.accessible i:focus:not(:focus-visible),div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus:not(:focus-visible){box-shadow:none !important}div.pro-gallery.accessible .gallery-item-hover i:focus,div.pro-gallery.accessible .gallery-item-hover button:focus{box-shadow:none}div.pro-gallery.accessible .gallery-item-container:has(.item-action:focus)::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit;z-index:15}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before{box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit}div.pro-gallery .hide-scrollbars{-ms-overflow-style:none;overflow:-moz-scrollbars-none;scrollbar-width:none}div.pro-gallery .hide-scrollbars::-webkit-scrollbar,div.pro-gallery .hide-scrollbars ::-webkit-scrollbar{width:0 !important;height:0 !important}div.pro-gallery .rtl{direction:rtl}div.pro-gallery .ltr{direction:ltr} .sr-only.out-of-view-component{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:circle(0%);border:0} .screen-logs{word-wrap:break-word;background:#fff;width:280px;font-size:10px} .fade{display:block;transition:opacity 600ms ease} .fade-visible{opacity:1} .fade-hidden{opacity:0} .deck-before{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(-100%)} .deck-before-rtl{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(100%)} .deck-current{display:block;z-index:0;transition:transform 600ms ease;transform:translateX(0)} .deck-current .override{transition:transform 600ms ease,opacity .1s ease 200ms !important} .deck-after{display:block;transition:opacity .2s ease 600ms;z-index:-1;opacity:0} .deck-after .override{transition:opacity .1s ease 0s !important} .disabled-transition{transition:none !important}@keyframes changing_background{0%{background-color:rgba(241,241,241,.2)}50%{background-color:rgba(241,241,241,.8)}100%{background-color:rgba(241,241,241,.2)}} .pro-gallery-parent-container.gallery-slideshow [data-hook=group-view]::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .pro-gallery-parent-container:not(.gallery-slideshow) [data-hook=group-view] .item-link-wrapper::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .gallery-item-container{scroll-snap-align:none !important} .gallery-slideshow .gallery-item-container:not(.clickable) a{cursor:default}/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2265 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGallery.global.scss ***! | |
| 2266 | + \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2267 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../pro-gallery-info-element/dist/statics/app.css ***! | |
| 2268 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2269 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/infoElement.scss ***! | |
| 2270 | + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .slideshow-info-element-inner .info-element-text>div{width:100%} .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info{box-sizing:border-box;padding-top:24px;height:100%;width:100%;padding-top:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-item-common-info.gallery-item-bottom-info .info-element-text>div{width:100%} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description>span{white-space:normal} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-member.hide{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.populated-item{margin-bottom:24px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center{justify-content:center} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text>div{width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element{display:flex;flex-direction:column;justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social{margin:0;height:auto;position:static;display:flex;flex-direction:row} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows{width:auto;margin:0px -10px 0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top{background:linear-gradient(rgba(0, 0, 0, 0.2) 0, transparent 140px)} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center{justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button{position:static !important;margin:0;padding:0 20px;font-size:19px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share{margin-top:-3px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{white-space:normal} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px 0 0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{display:flex;justify-content:center;opacity:0;/*! autoprefixer: ignore next */-webkit-box-pack:center;transition:opacity .4s ease;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper .buy-icon{margin-right:7px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;opacity:0;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;white-space:nowrap;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px;display:flex;flex-direction:column;margin:0;box-sizing:border-box;height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.short-item{padding-top:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.narrow-item{padding-left:5px;padding-right:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text>div{width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.push-down{padding-top:60px;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{line-height:32px;font-size:21px;padding:0;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0;white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements{width:100%;height:24px !important;display:flex;flex-direction:row}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-love{margin-right:auto}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-button{padding-left:10px;padding-right:10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-absolute{position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social{outline:none;width:100%;height:100%;overflow:visible;z-index:16;transition:opacity .4s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item{display:flex;align-items:flex-end;justify-content:space-around;height:90%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item .info-element-social-button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item .info-element-social-button{position:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.with-arrows{width:86%;margin:0 7%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button{outline:none;bottom:30px;position:absolute;margin:0;display:inline-block;font-size:19px;color:#fff;cursor:pointer;opacity:0;padding:10px;margin:-10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.visible{opacity:1 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments{left:26px;top:26px;bottom:initial;font-size:15px;border:none;background:#2b5672;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love{left:30px;bottom:30px;font-size:15px;border:none;background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love i{outline:none;float:left;display:inline-block;line-height:14px;border:none;background:rgba(0,0,0,0);font-size:18px;padding:1px 5px;text-decoration:none;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;line-height:15px;font-size:15px;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-share{bottom:26px;left:auto;right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-dots{left:auto;right:22px;top:26px;height:30px;width:20px;display:flex;justify-content:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download{bottom:25px;left:auto;right:68px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download.pull-right{right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments{left:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments span{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-share{right:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-download{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-dots{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button{bottom:auto;left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-comments{top:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-share{top:auto;right:auto;bottom:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-download{top:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-dots{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box{position:absolute;top:0;left:50%;width:100%;height:100%;max-width:300px;min-width:200px;overflow:visible;z-index:16;font-size:12px;opacity:0;transform:translateX(-50%);margin-top:1px;margin-left:-3px;transition:opacity .4s ease;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i{display:inline-block;font-size:15px;color:#fff;cursor:pointer;position:absolute;top:50%;width:22px;text-align:center;transform:translateY(-50%);background:rgba(0,0,0,0);border:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i:hover{opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-1{margin-left:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-2{font-size:13px;margin-top:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-4{margin-left:-1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-5{font-size:13px;margin-top:1px;margin-left:-3px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item{top:50%;left:0;max-width:none;min-width:0;max-height:300px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i{left:50%;margin-left:-10px;margin-top:8px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-2{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-5{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{/*! autoprefixer: ignore next */overflow:hidden;/*! autoprefixer: ignore next */display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description{/*! autoprefixer: ignore next */overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description>span{white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery.thumbnails-gallery .gallery-item-container .info-element-custom-button-wrapper{display:none !important}/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2271 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/InfoElement.global.scss ***! | |
| 2272 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2273 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/Tooltip.global.scss ***! | |
| 2274 | + \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ :root{--tooltip-text-color: white;--tooltip-background-color: black;--tooltip-margin: 30px;--tooltip-arrow-size: 6px} .tooltip-wrapper{position:absolute;top:0;z-index:100;background-color:var(--tooltip-background-color);color:var(--tooltip-text-color);box-shadow:0px 0px 4px 0px rgba(0,0,0,.1);border:1px solid var(--tooltip-text-color)} .tooltip-body{padding:4px;font-size:14px;font-family:Helvetica} .tooltip-body::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:var(--tooltip-arrow-size);margin-left:calc(var(--tooltip-arrow-size)*-1)} .tooltip-body.arrow{top:calc(var(--tooltip-margin)*-1)} .tooltip-body.arrow::before{top:100%;border-top-color:var(--tooltip-background-color)}/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2275 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGalleryRenderIndicator.global.scss ***! | |
| 2276 | + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pg-render-indicator{position:absolute;bottom:15.5px;left:15.5px;border:1px solid #717171;padding:5px 10px 5px 5px;font-size:16px;z-index:2147483648;cursor:default;line-height:20px} .pg-render-indicator table{table-layout:fixed} .pg-render-indicator.rendered{background-color:#7fff00} .pg-render-indicator.not-rendered{background-color:red} .pg-render-indicator .log-column{max-height:450px;max-width:500px;overflow:auto;background-color:#fff} .pg-render-indicator .show-on-hover{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;top:-9999px;left:-9999px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important} .pg-render-indicator div.worker-log-text{word-wrap:break-word;max-width:500px;min-width:100px} .pg-render-indicator:hover{max-width:90%;max-height:90%} .pg-render-indicator:hover .show-on-hover{clip:auto !important;clip-path:none;display:block;height:auto;line-height:normal;text-decoration:none;width:auto;position:static} | |
| 2277 | + | |
| 2278 | + .pro-fullscreen-wrapper, .pro-fullscreen-wrapper-loading{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:100005} | |
| 2279 | + .pro-gallery-empty{top:0;left:0;height:100%;width:100%;background-color:hsla(0,0%,100%,.9)} .pro-gallery-empty .pro-gallery-empty-content{height:334px;width:100%;overflow:hidden} .pro-gallery-empty .pro-gallery-empty-image{margin:66px auto 35px;width:262px;height:132px;background-image:url(media/emptystate.85a4add5.svg);background-size:contain} .pro-gallery-empty .pro-gallery-empty-title{color:#4eb7f5;font-family:"HelveticaNeueW01-55Roma","HelveticaNeueW02-55Roma","HelveticaNeueW10-55Roma",sans-serif;font-size:20px;line-height:25px;text-align:center;margin-bottom:10px} .pro-gallery-empty .pro-gallery-empty-info{color:#4eb7f5;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:14px;line-height:20px;text-align:center} | |
| 2280 | +</style><style> | |
| 2281 | +.comp-m8omf94t div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content{background-color:#000000}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:rgba(0, 0, 0, 0.9);font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:1px;border-color:#000000;border-radius:0px}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:#000000;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:undefinedpx;border-color:#000000;border-radius:undefinedpx}.comp-m8omf94t .nav-arrows-container .slideshow-arrow,.comp-m8omf94t .nav-arrows-container .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .pro-gallery.inline-styles .auto-slideshow-counter{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:1px;border-radius:0px;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:1px;border-radius:0px}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0.3) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:undefinedpx;border-radius:undefinedpx;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:undefinedpx;border-radius:undefinedpx}.comp-m8omf94t .te-pro-gallery-text-item{font:normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FAFAFA}.comp-m8omf94t .pro-fullscreen-wrapper .pro-fullscreen-text-item{--fullscreen-text-item-bg: #000000;background-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1{--titleColorExpand: #000000;--titleFontExpand: normal normal normal 25px/1.3em montserrat-black,sans-serif;color:#000000;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{--descriptionColorExpand: #000000;border-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background{--bgColorExpand: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon{--descriptionColorExpand: #000000;--bgColorExpand: #FAFAFA;color:#000000;background:#FFFFFF} | |
| 2282 | +</style><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div id="gallery-wrapper-comp-m8omf94t" style="overflow:hidden;height:100%;width:100%"><style>div.comp-m8omf94t:not(.fullscreen-comp-wrapper) { | |
| 2283 | + height: 100%; | |
| 2284 | + width: 100%; | |
| 2285 | + position: relative; | |
| 2286 | + } | |
| 2287 | + div.comp-m8omf94t:not(.fullscreen-comp-wrapper) #gallery-wrapper-comp-m8omf94t { | |
| 2288 | + position: absolute; | |
| 2289 | + top: 0; | |
| 2290 | + left: 0; | |
| 2291 | + }</style><div id="pro-gallery-comp-m8omf94t" class="pro-gallery"><div data-key="pro-gallery-inner-container" class="pro-gallery-prerender" tabindex="-1"><div data-hook="css-scroll-indicator" data-scroll-base="0" data-scroll-top="0" class="pgscl-0 pgscl_m8omf94t_0-40960 pgscl_m8omf94t_0-20480 pgscl_m8omf94t_0-10240 pgscl_m8omf94t_0-5120 pgscl_m8omf94t_0-2560 pgscl_m8omf94t_0-1280 pgscl_m8omf94t_0-640 pgscl_m8omf94t_0-320 pgscl_m8omf94t_0-160 pgscl_m8omf94t_0-80 pgscl_m8omf94t_0-40 pgscl_m8omf94t_0-20 pgscl_m8omf94t_0-10" style="display:none"></div><div class="pro-gallery-parent-container gallery-thumbnails" style="margin:0;width:1450px;height:700px" role="region"><div id="pro-gallery-container-comp-m8omf94t" class="pro-gallery inline-styles one-row hide-scrollbars slider ltr " style="width:100%;height:700px;display:flex;justify-content:space-between"><div data-hook="gallery-column" id="gallery-horizontal-scroll-comp-m8omf94t" class="gallery-horizontal-scroll gallery-column hide-scrollbars ltr scroll-snap " style="width:100%;height:700px;overflow-y:visible"><div class="gallery-horizontal-scroll-inner"><div data-hook="group-view" style="--group-top:0px;--group-left:0px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-link-wrapper" data-idx="0" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2_0" data-hash="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-idx="0" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:0;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="false"><div data-idx="0" id="item-action-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-action" tabindex="0" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 1x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 2x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 3x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 4x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 5x" type="image/png"/><img id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="0" src="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:1315px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-link-wrapper" data-idx="1" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d198717eef6d480b90a883ac12d51ad9mv2_1" data-hash="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-idx="1" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:1315px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="1" id="item-action-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 5x" type="image/png"/><img id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="1" src="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:2630px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-link-wrapper" data-idx="2" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_34ac0a647bea46dd948f665111444c37mv2_2" data-hash="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-idx="2" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:2630px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="2" id="item-action-5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_34ac0a647bea46dd948f665111444c37mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 1x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 2x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 3x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 4x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 5x" type="image/png"/><img id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="2" src="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:3945px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-link-wrapper" data-idx="3" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2_3" data-hash="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-idx="3" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:3945px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="3" id="item-action-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 5x" type="image/png"/><img id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="3" src="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:5260px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-link-wrapper" data-idx="4" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2_4" data-hash="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-idx="4" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:5260px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="4" id="item-action-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 1x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 2x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 3x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 4x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 5x" type="image/png"/><img id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="4" src="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:6575px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-link-wrapper" data-idx="5" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d97519304d97415e85671ee6608f2c43mv2_5" data-hash="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-idx="5" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:6575px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="5" id="item-action-5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d97519304d97415e85671ee6608f2c43mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 5x" type="image/png"/><img id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="5" src="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:7890px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-link-wrapper" data-idx="6" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a6ca9471c999496893473bf9a159a06dmv2_6" data-hash="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-idx="6" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:7890px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="6" id="item-action-5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 1x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 2x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 3x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 4x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 5x" type="image/png"/><img id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="6" src="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:9205px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-link-wrapper" data-idx="7" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2_7" data-hash="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-idx="7" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:9205px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="7" id="item-action-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 1x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 2x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 3x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 4x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 5x" type="image/png"/><img id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="7" src="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:10520px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-link-wrapper" data-idx="8" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d198717eef6d480b90a883ac12d51ad9mv2_8" data-hash="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-idx="8" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:10520px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="8" id="item-action-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 5x" type="image/png"/><img id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="8" src="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:11835px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-link-wrapper" data-idx="9" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_34ac0a647bea46dd948f665111444c37mv2_9" data-hash="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-idx="9" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:11835px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="9" id="item-action-5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_34ac0a647bea46dd948f665111444c37mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 1x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 2x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 3x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 4x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 5x" type="image/png"/><img id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="9" src="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:13150px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-link-wrapper" data-idx="10" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2_10" data-hash="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-idx="10" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:13150px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="10" id="item-action-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 5x" type="image/png"/><img id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="10" src="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:14465px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-link-wrapper" data-idx="11" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2_11" data-hash="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-idx="11" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:14465px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="11" id="item-action-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 1x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 2x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 3x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 4x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 5x" type="image/png"/><img id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="11" src="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:15780px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-link-wrapper" data-idx="12" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d97519304d97415e85671ee6608f2c43mv2_12" data-hash="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-idx="12" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:15780px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="12" id="item-action-5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d97519304d97415e85671ee6608f2c43mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 5x" type="image/png"/><img id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="12" src="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:17095px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-link-wrapper" data-idx="13" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a6ca9471c999496893473bf9a159a06dmv2_13" data-hash="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-idx="13" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:17095px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="13" id="item-action-5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 1x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 2x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 3x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 4x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 5x" type="image/png"/><img id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="13" src="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:18410px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-link-wrapper" data-idx="14" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2_14" data-hash="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-idx="14" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:18410px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="14" id="item-action-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 1x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 2x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 3x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 4x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 5x" type="image/png"/><img id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="14" src="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:19725px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-link-wrapper" data-idx="15" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d198717eef6d480b90a883ac12d51ad9mv2_15" data-hash="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-idx="15" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:19725px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="15" id="item-action-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 5x" type="image/png"/><img id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="15" src="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:21040px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-link-wrapper" data-idx="16" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_34ac0a647bea46dd948f665111444c37mv2_16" data-hash="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-idx="16" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:21040px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="16" id="item-action-5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_34ac0a647bea46dd948f665111444c37mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 1x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 2x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 3x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 4x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 5x" type="image/png"/><img id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="16" src="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:22355px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-link-wrapper" data-idx="17" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2_17" data-hash="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-idx="17" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:22355px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="17" id="item-action-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 5x" type="image/png"/><img id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="17" src="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:23670px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-link-wrapper" data-idx="18" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2_18" data-hash="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-idx="18" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:23670px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="18" id="item-action-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 1x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 2x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 3x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 4x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 5x" type="image/png"/><img id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="18" src="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:24985px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-link-wrapper" data-idx="19" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d97519304d97415e85671ee6608f2c43mv2_19" data-hash="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-idx="19" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:24985px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="19" id="item-action-5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d97519304d97415e85671ee6608f2c43mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 5x" type="image/png"/><img id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="19" src="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:26300px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-link-wrapper" data-idx="20" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a6ca9471c999496893473bf9a159a06dmv2_20" data-hash="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-idx="20" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:26300px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="20" id="item-action-5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 1x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 2x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 3x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 4x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 5x" type="image/png"/><img id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="20" src="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:27615px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-link-wrapper" data-idx="21" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2_21" data-hash="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-idx="21" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:27615px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="21" id="item-action-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 1x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 2x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 3x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 4x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 5x" type="image/png"/><img id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="21" src="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:28930px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-link-wrapper" data-idx="22" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d198717eef6d480b90a883ac12d51ad9mv2_22" data-hash="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-idx="22" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:28930px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="22" id="item-action-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 5x" type="image/png"/><img id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="22" src="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:30245px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-link-wrapper" data-idx="23" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_34ac0a647bea46dd948f665111444c37mv2_23" data-hash="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-idx="23" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:30245px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="23" id="item-action-5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_34ac0a647bea46dd948f665111444c37mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 1x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 2x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 3x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 4x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 5x" type="image/png"/><img id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="23" src="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:31560px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-link-wrapper" data-idx="24" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2_24" data-hash="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-idx="24" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:31560px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="24" id="item-action-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 5x" type="image/png"/><img id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="24" src="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:32875px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-link-wrapper" data-idx="25" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2_25" data-hash="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-idx="25" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:32875px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="25" id="item-action-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 1x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 2x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 3x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 4x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 5x" type="image/png"/><img id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="25" src="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:34190px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-link-wrapper" data-idx="26" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d97519304d97415e85671ee6608f2c43mv2_26" data-hash="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-idx="26" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:34190px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="26" id="item-action-5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d97519304d97415e85671ee6608f2c43mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 5x" type="image/png"/><img id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="26" src="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:35505px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-link-wrapper" data-idx="27" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a6ca9471c999496893473bf9a159a06dmv2_27" data-hash="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-idx="27" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:35505px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="27" id="item-action-5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 1x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 2x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 3x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 4x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 5x" type="image/png"/><img id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="27" src="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:36820px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-link-wrapper" data-idx="28" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2_28" data-hash="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" data-idx="28" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:36820px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="28" id="item-action-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 1x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 2x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 3x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 4x, https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png 5x" type="image/png"/><img id="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="28" src="https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:38135px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-link-wrapper" data-idx="29" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d198717eef6d480b90a883ac12d51ad9mv2_29" data-hash="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" data-idx="29" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:38135px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="29" id="item-action-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png 5x" type="image/png"/><img id="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="29" src="https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:39450px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-link-wrapper" data-idx="30" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_34ac0a647bea46dd948f665111444c37mv2_30" data-hash="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-id="5ae170_34ac0a647bea46dd948f665111444c37mv2" data-idx="30" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:39450px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="30" id="item-action-5ae170_34ac0a647bea46dd948f665111444c37mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_34ac0a647bea46dd948f665111444c37mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 1x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 2x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 3x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 4x, https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png 5x" type="image/png"/><img id="5ae170_34ac0a647bea46dd948f665111444c37mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="30" src="https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:40765px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-link-wrapper" data-idx="31" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2_31" data-hash="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" data-idx="31" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:40765px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="31" id="item-action-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png 5x" type="image/png"/><img id="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="31" src="https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:42080px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-link-wrapper" data-idx="32" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2_32" data-hash="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" data-idx="32" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:42080px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="32" id="item-action-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 1x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 2x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 3x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 4x, https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png 5x" type="image/png"/><img id="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="32" src="https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:43395px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-link-wrapper" data-idx="33" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d97519304d97415e85671ee6608f2c43mv2_33" data-hash="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-id="5ae170_d97519304d97415e85671ee6608f2c43mv2" data-idx="33" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:43395px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="33" id="item-action-5ae170_d97519304d97415e85671ee6608f2c43mv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d97519304d97415e85671ee6608f2c43mv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 1x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 2x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 3x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 4x, https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png 5x" type="image/png"/><img id="5ae170_d97519304d97415e85671ee6608f2c43mv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="33" src="https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:44710px;--group-width:1315px;--group-right:auto" aria-hidden="true"><div data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-link-wrapper" data-idx="34" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a6ca9471c999496893473bf9a159a06dmv2_34" data-hash="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" data-idx="34" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:44710px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="34" id="item-action-5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 1x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_2880,h_1534,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 2x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4320,h_2301,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 3x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 4x, https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_4784,h_2548,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png 5x" type="image/png"/><img id="5ae170_a6ca9471c999496893473bf9a159a06dmv2" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="34" src="https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div></div></div></div><div class="pro-gallery inline-styles thumbnails-gallery ltr " style="width:130px;height:700px;margin-left:5px;margin-right:0" data-hook="gallery-thumbnails"><div data-hook="gallery-thumbnails-column" class="galleryColumn" style="overflow:visible;width:130px;height:700px;top:0"><div class="thumbnailItem pro-gallery-highlight" data-key="5ae170_b9e7203b6ac14619ab3ed81105ed88f8mv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png);top:0"></div><div class="thumbnailItem" data-key="5ae170_d198717eef6d480b90a883ac12d51ad9mv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png);top:130px"></div><div class="thumbnailItem" data-key="5ae170_34ac0a647bea46dd948f665111444c37mv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png);top:260px"></div><div class="thumbnailItem" data-key="5ae170_d3d0a43fedfa4730a6202461c2f52e1amv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png);top:390px"></div><div class="thumbnailItem" data-key="5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4mv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png);top:520px"></div><div class="thumbnailItem" data-key="5ae170_d97519304d97415e85671ee6608f2c43mv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png);top:650px"></div><div class="thumbnailItem" data-key="5ae170_a6ca9471c999496893473bf9a159a06dmv2" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png);top:780px"></div></div></div></div><div data-key="items-styles" style="display:none"><style>#pro-gallery-comp-m8omf94t .gallery-item-container, #pro-gallery-comp-m8omf94t .thumbnails-gallery { opacity: 0 }</style></div></div></div><div id="layout-fixer-comp-m8omf94ttrue" style="display:none"><link href="" rel="stylesheet" id="layout-fixer-style-comp-m8omf94t"/><script>try { | |
| 2292 | + window.requestAnimationFrame(function() { | |
| 2293 | + setTimeout(() => { | |
| 2294 | + | |
| 2295 | + | |
| 2296 | + var ele = document.getElementById('pro-gallery-comp-m8omf94t'); | |
| 2297 | + var pgMeasures = ele.getBoundingClientRect(); | |
| 2298 | + var options = (() => "layoutParams_cropRatio:100%/100%|layoutParams_structure_galleryRatio_value:0|layoutParams_repeatingGroupTypes:|layoutParams_gallerySpacing:0|groupTypes:1|numberOfImagesPerRow:4|collageAmount:0.8|textsVerticalPadding:0|textsHorizontalPadding:0|calculateTextBoxHeightMode:MANUAL|targetItemSize:50|cubeRatio:100%/100%|externalInfoHeight:0|externalInfoWidth:0|isRTL:false|isVertical:false|minItemSize:120|groupSize:1|chooseBestGroup:true|cubeImages:true|cubeType:fill|smartCrop:false|collageDensity:1|imageMargin:0|hasThumbnails:true|galleryThumbnailsAlignment:right|gridStyle:1|titlePlacement:SHOW_ON_HOVER|arrowsSize:50|slideshowInfoSize:120|imageInfoType:NO_BACKGROUND|textBoxHeight:0|scrollDirection:1|galleryLayout:3|gallerySizeType:smart|gallerySize:50|cropOnlyFill:false|numberOfImagesPerCol:1|groupsPerStrip:0|scatter:0|enableInfiniteScroll:true|thumbnailSpacings:5|arrowsPosition:0|thumbnailSize:120|calculateTextBoxWidthMode:PERCENT|textBoxWidthPercent:50|useMaxDimensions:false|rotatingGroupTypes:|fixedColumns:0|rotatingCropRatios:|gallerySizePx:0|placeGroupsLtr:false")(ele); | |
| 2299 | + var width = pgMeasures.width; | |
| 2300 | + var height = pgMeasures.height; | |
| 2301 | + | |
| 2302 | + var isIOS = /iPad|iPhone|iPod/.test(navigator?.userAgent); | |
| 2303 | + if(isIOS) { | |
| 2304 | + width = width; | |
| 2305 | + width = width; | |
| 2306 | + height = height; | |
| 2307 | + height = height; | |
| 2308 | + } else { | |
| 2309 | + width = width; | |
| 2310 | + width = width; | |
| 2311 | + height = height; | |
| 2312 | + height = height; | |
| 2313 | + } | |
| 2314 | + | |
| 2315 | + pgMeasures = { top: pgMeasures.top, width, height }; | |
| 2316 | + | |
| 2317 | + var isVertical = options.includes('layoutParams_structure_scrollDirection:"VERTICAL"'); | |
| 2318 | + var layoutFixerUrl = '/_serverless/pro-gallery-css-v4-server/layoutCss?ver=2&id=comp-m8omf94t&items=3514_3024_4032|3521_3024_4032|3415_3024_4032|3534_3024_4032|3567_3024_4032|3296_3024_4032|3399_3024_4032|3514_3024_4032|3521_3024_4032|3415_3024_4032|3534_3024_4032|3567_3024_4032|3296_3024_4032|3399_3024_4032|3514_3024_4032|3521_3024_4032|3415_3024_4032|3534_3024_4032|3567_3024_4032|3296_3024_4032&container=' + pgMeasures.top + '_' + pgMeasures.width + '_' + pgMeasures.height + '_' + window.innerHeight + '&options=' + options; | |
| 2319 | + document.getElementById('layout-fixer-style-comp-m8omf94t').setAttribute('href', encodeURI(layoutFixerUrl)); | |
| 2320 | + | |
| 2321 | + }, 0); | |
| 2322 | + }); | |
| 2323 | + } catch (e) { | |
| 2324 | + console.warn('Cannot set layoutFixer css', e); | |
| 2325 | + }</script></div></div></div></div></div></div></div></div></div></div><div id="comp-m8omdbey11" role="" class="HFEOE3 NaeT1r comp-m8omdbey11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbey11-container"><div id="comp-m8omdbez" class="N8MGzv _v6ohL PO9MfV comp-m8omdbez wixui-rich-text" data-testid="richTextElement"></div></div></div><div id="comp-m8omdbf0" role="" class="HFEOE3 NaeT1r comp-m8omdbf0 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf0-container"><div id="comp-m8omdbf1" role="" class="HFEOE3 NaeT1r comp-m8omdbf1-container comp-m8omdbf1 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf2" role="" class="HFEOE3 NaeT1r comp-m8omdbf2-container comp-m8omdbf2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf211" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf211 wixui-rich-text N5mCVp" data-testid="richTextElement"><h6 class="font_6 wixui-rich-text__text"><span class="wixui-rich-text__text">Disponible</span></h6></div></div><div id="comp-m8omdbf39" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf39 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text"><span class="wixGuard">​</span></span></p></div><div id="comp-m8omdbf415" role="" class="HFEOE3 NaeT1r comp-m8omdbf415 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf415-container"><div id="comp-m8omdbf510" class="comp-m8omdbf510 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf510" class="iL7Pq5 gx51wo"> | |
| 2326 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="20 45 160 110" viewBox="20 45 160 110" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omdbf510 svg [data-color="1"] {fill: #000000;}</style></defs> | |
| 2327 | + <g> | |
| 2328 | + <path d="M33.968 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395.001 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2329 | + <path d="M166.032 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07 0 2.118-1.705 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2330 | + <path d="M155.873 52.674H44.127c-2.104 0-3.81-1.718-3.81-3.837S42.022 45 44.127 45h111.746c2.104 0 3.81 1.718 3.81 3.837 0 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2331 | + <path d="M33.968 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2332 | + <path d="M166.032 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2333 | + <path d="M166.032 103.837H33.968c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h132.064c2.104 0 3.81 1.718 3.81 3.837s-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2334 | + <path d="M23.81 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c-.001 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2335 | + <path d="M176.19 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c0 2.12-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2336 | + <path d="M23.81 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395 0 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2337 | + <path d="M176.19 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07.001 2.118-1.704 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2338 | + <path d="M176.19 144.767H23.81c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h152.38c2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2339 | + <path d="M33.968 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v10.233c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2340 | + <path d="M166.032 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837v10.233c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2341 | + <path d="M51.746 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2342 | + <path d="M92.381 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2343 | + <path d="M92.381 73.14H51.746c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2344 | + <path d="M107.619 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2345 | + <path d="M148.254 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2346 | + <path d="M148.254 73.14h-40.635c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2347 | + </g> | |
| 2348 | +</svg> | |
| 2349 | +</div></div><div id="comp-m8omdbf61" role="" class="HFEOE3 NaeT1r comp-m8omdbf61-container comp-m8omdbf61 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf68" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf68 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">3</span></p></div><div id="comp-m8omdbf711" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf711 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Chambre(s)</span></p></div></div></div></div><div id="comp-m8omdbf82" role="" class="HFEOE3 NaeT1r comp-m8omdbf82 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf82-container"><div id="comp-m8omdbf813" class="comp-m8omdbf813 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf813" class="iL7Pq5 gx51wo"><svg preserveAspectRatio="xMidYMid meet" data-bbox="21 36.054 160 127.946" xmlns="http://www.w3.org/2000/svg" viewBox="21 36.054 160 127.946" height="200" width="200" data-type="tint" role="presentation" aria-hidden="true" aria-label=""> | |
| 2350 | + <g> | |
| 2351 | + <path d="M30.796 91.95V65.162c0-8.036 3.116-15.34 8.199-20.755 5.477-5.835 13.237-8.132 21.842-8.132h9.143v.372a27.803 27.803 0 0 1 28.808 11.735l2.733 4.065-45.975 31.107-2.749-4.088c-6.886-10.241-6.112-23.402 1.012-32.643-2.898.706-5.522 2.018-7.682 4.319a20.385 20.385 0 0 0-5.535 14.02V91.95H181v40.938c0 13.565-10.964 24.562-24.49 24.562h-1.632V164h-9.796v-6.55H56.918V164h-9.796v-6.55H45.49c-13.526 0-24.49-10.997-24.49-24.563V91.95h9.796zm0 9.825v31.112c0 8.14 6.579 14.738 14.694 14.738h111.02c8.115 0 14.694-6.598 14.694-14.737v-31.113H30.796zm34.936-52.838c-6.81 4.608-9.457 13.107-6.994 20.595L87.37 50.158c-5.99-5.103-14.829-5.83-21.639-1.221z" fill="#111111" fill-rule="evenodd"></path> | |
| 2352 | + </g> | |
| 2353 | +</svg> | |
| 2354 | +</div></div><div id="comp-m8omdbf97" role="" class="HFEOE3 NaeT1r comp-m8omdbf97-container comp-m8omdbf97 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf916" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf916 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1</span></p></div><div id="comp-m8omdbfa13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfa13 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Salle(s) de bain</span></p></div></div></div></div><div id="comp-m8omdbfb14" role="" class="HFEOE3 NaeT1r comp-m8omdbfb14 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbfb14-container"><div id="comp-m8omdbfc3" role="" class="HFEOE3 NaeT1r comp-m8omdbfc3-container comp-m8omdbfc3 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfc10" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfc10 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><span class="wixGuard">​</span></span></p></div><div id="comp-m8omdbfd11" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfd11 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Pieds²</span></p></div></div></div></div><div id="comp-m8omdbfe" role="" class="HFEOE3 NaeT1r comp-m8omdbfe-container comp-m8omdbfe wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfe11" role="" class="HFEOE3 NaeT1r comp-m8omdbfe11-container comp-m8omdbfe11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbff" class="N8MGzv _v6ohL PO9MfV comp-m8omdbff wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1675</span></p></div><div id="comp-m8ooawu0" class="N8MGzv _v6ohL PO9MfV comp-m8ooawu0 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">$</span></p></div><div id="comp-m8omdbfg7" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfg7 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oobbzb" class="N8MGzv _v6ohL PO9MfV comp-m8oobbzb wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">MOIS</span></p></div></div></div></div></div></div><div id="comp-m8oqa661" role="" class="HFEOE3 NaeT1r comp-m8oqa661 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqa661-container"><div id="comp-m8oqbc3l" class="DDi8v8 comp-m8oqbc3l wixui-google-map"></div></div></div></div></section></main><footer id="comp-m8omcigd2" class="comp-m8omcigd2 S829f_ comp-m8omcigd2-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcigd2_r_comp-kbgakgyt" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omcigd2_r_comp-kbgakgyt wixui-footer fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcigd2_r_comp-kbgakgyt" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcigd2_r_comp-kbgakgyt" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcigd2_r_comp-kbgakgyt" data-motion-part="BG_MEDIA comp-m8omcigd2_r_comp-kbgakgyt" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-kbgakgyt-container max-width-container"><div id="comp-m8omcigd2_r_comp-m2y11976" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y11976 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-m2y11976-container"><div id="comp-m8omcigd2_r_comp-m2y12dql" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y12dql wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Tél : 450.499.7978</span></p> | |
| 2355 | + | |
| 2356 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2357 | + | |
| 2358 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2359 | + | |
| 2360 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">E-mail:</span></p> | |
| 2361 | + | |
| 2362 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@sfhabitations.com" class="wixui-rich-text__text">info@sfhabitations.com</a></span></p> | |
| 2363 | + | |
| 2364 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2365 | + | |
| 2366 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2367 | + | |
| 2368 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Secteur de Lanaudière, Laurentides, Montréal</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1gxle" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y1gxle-container comp-m8omcigd2_r_comp-m2y1gxle wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m2y1gkmp" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y1gkmp wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">S'ABONNER</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1awex" class="QrIus comp-m8omcigd2_r_comp-m2y1awex"><div class="comp-m8omcigd2_r_comp-m2y1awex"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div style="--index2490108247-shadowXOffset:0px;--index2490108247-shadowYOffset:0px;overflow:visible;--wix-forms-formHeaderTwoFont-size:var(--wix-forms-formHeaderTwoFontH2-size);--wix-forms-formHeaderTwoFont-family:var(--wix-forms-formHeaderTwoFontH2-family)" class="sN4uTVR" data-hook="Form-wrapper"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div><form aria-label="Abonnement" id="form-39743f17-3b77-49be-b37c-a7284b6479cc" data-hook="form-39743f17-3b77-49be-b37c-a7284b6479cc" class=""><fieldset class="kLNiUo"><div data-hook="form-root"><div class="ckHV4G" dir=""><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 2;grid-column:1 / span 12" data-hook="form-field-9c5d853d-7654-4b58-5574-bf0262076a35" data-field-type="HEADER"><div class="ElBhne" data-hook="ricos-viewer"><div class="zrLtk" dir="ltr" style="--ricos-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-text-color-tuple:var(--wix-forms-formParagraphColor);--ricos-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-background-color-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-fallback-color:rgb(0, 0, 0);--ricos-fallback-color-tuple:0, 0, 0;--ricos-settings-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-settings-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-focus-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-focus-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-action-color-fallback:rgb(0, 0, 0);--ricos-action-color-fallback-tuple:0, 0, 0;--ricos-theme-color-1:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-theme-color-1-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-theme-color-2:rgb(var(--wix-forms-formParagraphColor));--ricos-theme-color-2-tuple:var(--wix-forms-formParagraphColor);--ricos-theme-color-3:rgb(var(--wix-forms-formLinkColor));--ricos-theme-color-3-tuple:var(--wix-forms-formLinkColor);--ricos-custom-button-background-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-button-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-secondary-button-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-link-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-audio-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-audio-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-action-text-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-file-icon-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-table-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-vertical-embed-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-ribbon-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-link-preview-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-link-preview-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-line-height:1.5;--ricos-custom-toc-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-toc-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-divider-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-quote-line-height:1.5;--ricos-custom-quote-font-size:18px;--ricos-custom-smart-block-label-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-p-font-weight:normal;--ricos-custom-p-font-style:normal;--ricos-custom-p-line-height:1.5;--ricos-custom-p-font-size:var(--wix-forms-formParagraphFont-size, 16px);--ricos-custom-p-font-family:var(--wix-forms-formParagraphFont-family);--ricos-custom-p-color:rgb(var(--wix-forms-formParagraphColor, 0,0,0));--ricos-custom-h1-font-weight:normal;--ricos-custom-h1-font-style:normal;--ricos-custom-h1-line-height:1.5;--ricos-custom-h1-font-size:var(--wix-forms-formHeaderOneFont-size, 50px);--ricos-custom-h1-font-family:var(--wix-forms-formHeaderOneFont-family);--ricos-custom-h1-color:rgb(var(--wix-forms-formHeaderOneColor, 0,0,0));--ricos-custom-h2-font-weight:normal;--ricos-custom-h2-font-style:normal;--ricos-custom-h2-line-height:1.5;--ricos-custom-h2-font-size:var(--wix-forms-formHeaderTwoFont-size, 42px);--ricos-custom-h2-font-family:var(--wix-forms-formHeaderTwoFont-family);--ricos-custom-h2-color:rgb(var(--wix-forms-formHeaderTwoColor, 0,0,0));--ricos-custom-h3-font-weight:normal;--ricos-custom-h3-font-style:normal;--ricos-custom-h3-line-height:1.5;--ricos-custom-h3-font-size:var(--wix-forms-formHeaderThreeFont-size, 38px);--ricos-custom-h3-font-family:var(--wix-forms-formHeaderThreeFont-family);--ricos-custom-h3-color:rgb(var(--wix-forms-formHeaderThreeColor, 0,0,0));--ricos-custom-h4-font-weight:normal;--ricos-custom-h4-font-style:normal;--ricos-custom-h4-line-height:1.5;--ricos-custom-h4-font-size:var(--wix-forms-formHeaderFourFont-size, 34px);--ricos-custom-h4-font-family:var(--wix-forms-formHeaderFourFont-family);--ricos-custom-h4-color:rgb(var(--wix-forms-formHeaderFourColor, 0,0,0));--ricos-custom-h5-font-weight:normal;--ricos-custom-h5-font-style:normal;--ricos-custom-h5-line-height:1.5;--ricos-custom-h5-font-size:var(--wix-forms-formHeaderFiveFont-size, 28px);--ricos-custom-h5-font-family:var(--wix-forms-formHeaderFiveFont-family);--ricos-custom-h5-color:rgb(var(--wix-forms-formHeaderFiveColor, 0,0,0));--ricos-custom-h6-font-weight:normal;--ricos-custom-h6-font-style:normal;--ricos-custom-h6-line-height:1.5;--ricos-custom-h6-font-size:var(--wix-forms-formHeaderSixFont-size, 22px);--ricos-custom-h6-font-family:var(--wix-forms-formHeaderSixFont-family);--ricos-custom-h6-color:rgb(var(--wix-forms-formHeaderSixColor, 0,0,0));--ricos-breakout-normal-padding-start:0;--ricos-breakout-normal-padding-end:0;--ricos-breakout-full-width-padding-start:0;--ricos-breakout-full-width-padding-end:0" data-id="content-viewer"><div class="tlZw8"><div class="_7UvJA"><h1 class="JLkq2 LI-hR _0uG9a _41BxQ" dir="auto" id="viewer-cuu0z29" tabindex="-1"><span aria-hidden="true" id="abonnez-vous-aux-nouvelles-cuu0z29"></span><span class="_7sCfP"><span>Abonnez-vous aux nouvelles</span></span></h1></div></div></div></div></div></div></div><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 1;grid-column:1 / span 8;display:flex;align-items:flex-end"><label id="form-field-label-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" for="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" class="shszO9W sdcwRYb">E-mail<span aria-hidden="true" class="sHbjjkq">*</span></label></div><div style="grid-row:2 / span 1;grid-column:1 / span 8" data-hook="form-field-email_443e" data-field-type="CONTACTS_EMAIL"><div data-hook="text-field-root" class="sigpKjl oYEaGDN---theme-3-box oYEaGDN--newErrorMessage snZ_6f6 sL5d0Ld"><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__8YVWUI"><div class="s__72lfJk smyXERm oYEaGDN---theme-3-box" data-theme="box" data-success="false" data-error="false" data-empty-state="true"><input id="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" data-theme="box" data-success="false" data-error="false" data-empty-state="true" aria-invalid="false" required="" aria-label="E-mail" type="email" class="sjImZoO has-custom-focus" value=""/></div></div></div><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__0oqQvY" data-hook="field-error-email_443e"></div></div><div style="grid-row:1 / span 1;grid-column:9 / span 4;display:flex;align-items:flex-end"></div><div style="grid-row:2 / span 1;grid-column:9 / span 4" data-hook="form-field-d5df37db-369b-4f3c-f561-579e39eeee46" data-field-type="SUBMIT_BUTTON"><div class=""><button data-fullwidth="false" data-mobile="false" data-hook="submit-button" style="--wix-ui-tpa-button-font-size-default:16px;--wix-ui-tpa-button-line-height-default:1.5em" aria-live="assertive" type="button" class="s__3DOwO7 sFTe_V3 sWHTiwe ojChOw_---paddingMode-16-explicitPaddings ojChOw_--wrapContent ojChOw_---hoverStyle-9-underline spPayPE ohrgDww--upgrade sgKo7D0 sasFW9G" data-focusable-focus="false" data-focusable-focus-visible="false" tabindex="0" aria-disabled="false"><span class="sezcxt9 sewooAr">S'ABONNER</span></button></div></div></div></div></div><div role="region" aria-live="polite"><div style="transition:opacity 350ms ease-in-out;opacity:0"></div></div></div></fieldset></form></div></div></div></div></div></div></div><div id="comp-m8omcigd2_r_comp-m8j7owsd" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m8j7owsd-container comp-m8omcigd2_r_comp-m8j7owsd wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m8j7o6oq" class="comp-m8omcigd2_r_comp-m8j7o6oq wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcigd2_r_comp-m8j7o6oq" class="iL7Pq5 gx51wo"> | |
| 2369 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""> | |
| 2370 | + <g> | |
| 2371 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 2372 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 2373 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 2374 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 2375 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 2376 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 2377 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 2378 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 2379 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 2380 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 2381 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 2382 | + </g> | |
| 2383 | +</svg> | |
| 2384 | +</div></a></div><nav id="comp-m8omcigd2_r_comp-m2y10ib8" aria-label="Site" class="d2V6sy comp-m8omcigd2_r_comp-m2y10ib8 wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcigd2_r_comp-mbweuill"></div></div></div></div><div id="comp-m8omcigd2_r_comp-kd5pdf7t" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-kd5pdf7t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text"><span class="wixui-rich-text__text">© S&F Gestion. Par <span style="font-weight:bold;" class="wixui-rich-text__text"><a href="https://www.justsimpleweb.com/" target="_blank" rel="noreferrer noopener" class="wixui-rich-text__text">Just Simple Web.</a></span></span></p></div></div></section></footer><div id="comp-m8omcih716-pinned-layer" class="comp-m8omcih716-pinned-layer QED8q1"><div id="comp-m8omcih716" class="comp-m8omcih716 S829f_ comp-m8omcih716-container" slots="[object Object]" wix="[object Object]"><div id="comp-m8omcih716_r_comp-kd5px9hr" class="vO4l6e"><div id="overlay-comp-m8omcih716_r_comp-kd5px9hr" class="KyTZlx"></div><div id="container-comp-m8omcih716_r_comp-kd5px9hr" class="V1WvhC" data-block-level-container="MenuContainer"><div class="qINwWP"></div><div id="inlineContentParent-comp-m8omcih716_r_comp-kd5px9hr" class="dz6k8U"><div class="comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper dz6k8U wixui-mobile-menu ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="dialog" aria-label="Site navigation" class="comp-m8omcih716_r_comp-kd5px9hr-container"><nav id="comp-m8omcih716_r_comp-kd5px9kk" aria-label="Site" class="d2V6sy comp-m8omcih716_r_comp-kd5px9kk wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><button id="comp-m8omcih716_r_comp-kkmqi5tc" class="comp-m8omcih716_r_comp-kkmqi5tc wixui-vector-image"><div data-testid="svgRoot-comp-m8omcih716_r_comp-kkmqi5tc" class="iL7Pq5 gx51wo LXgYyC"> | |
| 2385 | +<svg preserveAspectRatio="none" data-bbox="65.35 65.35 69.3 69.3" viewBox="65.35 65.35 69.3 69.3" xmlns="http://www.w3.org/2000/svg" data-type="shape" role="img" aria-label="Close Site Navigation"> | |
| 2386 | + <g> | |
| 2387 | + <path d="M134.65 128.99L105.66 100l28.99-28.99-5.66-5.66L100 94.34 71.01 65.35l-5.66 5.66L94.34 100l-28.99 28.99 5.66 5.66L100 105.66l28.99 28.99 5.66-5.66z"></path> | |
| 2388 | + </g> | |
| 2389 | +</svg> | |
| 2390 | +</div></button></div></div></div></div></div></div></div><div id="comp-m8omcih82-pinned-layer" class="comp-m8omcih82-pinned-layer QED8q1"><div id="comp-m8omcih82" style="display:none"></div></div><div id="comp-m8oopad5-pinned-layer" class="comp-m8oopad5-pinned-layer QED8q1"><div id="comp-m8oopad5" style="display:none"></div></div><div id="comp-mfl8zvjs-pinned-layer" class="comp-mfl8zvjs-pinned-layer QED8q1"><div id="comp-mfl8zvjs" style="display:none"></div></div></div></div></div></div></div><div id="comp-m9cxxt3r-pinned-layer" class="comp-m9cxxt3r-pinned-layer QED8q1"><div id="comp-m9cxxt3r" class="comp-m9cxxt3r S829f_ comp-m9cxxt3r-container" slots="[object Object]" wix="[object Object]"><div id="comp-m9cxxt3r_r_comp-m9cxxr9c" class="chBh7 comp-m9cxxt3r_r_comp-m9cxxr9c mqeQ0"><iframe class="UkML6" title="Wix Chat" aria-label="Wix Chat" scrolling="no" allowfullscreen="" allowtransparency="true" allowvr="true" frameBorder="0" allow="clipboard-write;autoplay;camera;microphone;geolocation;vr"></iframe></div></div></div></div></div><div id="SCROLL_TO_BOTTOM" class="qe3oTb ignore-focus SCROLL_TO_BOTTOM" role="region" tabindex="-1" aria-label="bottom of page"><span class="TvbeET">bottom of page</span></div></div></div> | |
| 2391 | + | |
| 2392 | +<script id="wix-skip-played-animations"> | |
| 2393 | + window.__pageRevealPromise && window.__pageRevealPromise.then(function() { | |
| 2394 | + requestAnimationFrame(function() { | |
| 2395 | + try { | |
| 2396 | + var stored = sessionStorage.getItem('wix-motion-played-animations'); | |
| 2397 | + if (stored) { | |
| 2398 | + var played = JSON.parse(stored); | |
| 2399 | + for (var compId in played) { | |
| 2400 | + if (played[compId]) { | |
| 2401 | + var el = document.getElementById(compId); | |
| 2402 | + if (el) { | |
| 2403 | + el.dataset.motionEnter = 'done'; | |
| 2404 | + } | |
| 2405 | + } | |
| 2406 | + } | |
| 2407 | + } | |
| 2408 | + } catch (e) {} | |
| 2409 | + }); | |
| 2410 | + }); | |
| 2411 | +</script> | |
| 2412 | + | |
| 2413 | + <script type="application/json" id="wix-fedops">{"data":{"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"581c4737-f081-4a8b-afcb-ad4a6c98f9a2","isSEO":false,"appNameForBiEvents":"wix-studio"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","isInSEO":false,"platformOnSite":true}}</script> | |
| 2414 | + <script>window.fedops = JSON.parse(document.getElementById('wix-fedops').textContent)</script> | |
| 2415 | + | |
| 2416 | + | |
| 2417 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js">(()=>{"use strict";var e={},r={};function t(i){var n=r[i];if(void 0!==n)return n.exports;var o=r[i]={exports:{}};return e[i](o,o.exports,t),o.exports}t.rv=()=>"1.6.8",t.ruid="bundler=rspack@1.6.8";let i="unknown",n=e=>{let r,t,n=(r=e.cache,t=e.varnish,`${r||i},${t||i}`);return{caching:n,isCached:n.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}};function o(){return"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let r=16*Math.random()|0;return("x"===e?r:3&r|8).toString(16)})}let a=/Mobile|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i,s=/iPhone|iPad|iPod/i,c=e=>!!e&&s.test(e);!function(){var e;let r,{site:t,rollout:s,fleetConfig:d,requestUrl:l,isInSEO:p,shouldReportErrorOnlyInPanorama:u}=window.fedops.data,m=(e=>{let{userAgent:r}=e.navigator;return/instagram.+google\/google/i.test(r)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(r)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:r}=window;if(!e||!r)return"document";let{webdriver:t,userAgent:i,plugins:n,languages:o}=r;if(t)return"webdriver";if(!n||Array.isArray(n))return"plugins";if(Object.getOwnPropertyDescriptor(n,"0")?.writable)return"plugins-extra";if(!i)return"userAgent";if(i.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!o||0===o.length||!Object.isFrozen(o))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:r}=e;if(r&&/ (\(internal\/)|(\(?file:\/)/.test(r))return"stack"}}return""})()||(p?"seo":""),w=!!m,{isCached:h,caching:f,microPop:g}=((e,r)=>{let t,o=(e=>{let r;try{r=e()}catch{r=[]}let t=r.reduce((e,r)=>(e[r.name]=r.description,e),{});return{cache:t.cache,varnish:t.varnish,microPop:t.dc}})(r);if(o.cache||o.varnish)return n({cache:o.cache||i,varnish:o.varnish||i,microPop:o.microPop});let a=(t=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&t.length?{cache:t[1],varnish:t[2]||i,microPop:t[3]}:null;return a?n(a):{caching:i,isCached:!1}})(document.cookie,()=>performance.getEntriesByType("navigation")[0].serverTiming||[]),v={WixSite:1,UGC:2,Template:3}[t.siteType]||0,x=t.appNameForBiEvents,{isDACRollout:y,siteAssetsVersionsRollout:S}=s,I=+!!y,$=+!!S,b=0===d.code||1===d.code?d.code:null,_=2===d.code,P=Date.now()-window.initialTimestamps.initialTimestamp,O=Math.round(performance.now()-(()=>{try{let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e.activationStart??0}catch{}return 0})()),{visibilityState:T}=document,{fedops:R,addEventListener:k,thunderboltVersion:A}=window;R.apps=R.apps||{},R.apps[x]={startLoadTime:O},R.sessionId=t.sessionId,R.vsi=o(),R.is_cached=h,R.phaseStarted=C(28),R.phaseEnded=C(22),performance.mark("[cache] "+f+(g?" ["+g+"]":"")),R.reportError=(e,r="load")=>{let t=e?.reason||e?.message;t?(u||N(26,`&errorInfo=${t}&errorType=${r}`),E({error:{name:r,message:t,stack:e?.stack}})):e.preventDefault()},k("error",R.reportError),k("unhandledrejection",R.reportError);let M=!1;function N(e,r=""){if(l.includes("suppressbi=true"))return;var i="//frog.wix.com/bolt-performance?src=72&evid="+e+"&appName="+x+"&is_rollout="+b+"&is_company_network="+_+"&is_sav_rollout="+$+"&is_dac_rollout="+I+"&dc="+t.dc+(g?"µPop="+g:"")+"&is_cached="+h+"&msid="+t.metaSiteId+"&session_id="+window.fedops.sessionId+"&ish="+w+"&isb="+w+(w?"&isbr="+m:"")+"&vsi="+window.fedops.vsi+"&caching="+f+(M?",browser_cache":"")+"&pv="+T+"&pn=1&v="+A+"&url="+encodeURIComponent(l)+"&client_url="+encodeURIComponent(window.location.href)+"&st="+v+`&ts=${P}&tsn=${O}`+r;let n=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{n=navigator.sendBeacon(i)}catch{}n||(new Image().src=i)}function E({transaction:e,error:r}){let i=[{fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",componentId:`${"Studio"===window.fedops.data.site.editorName?"wix-studio":`thunderbolt${window.fedops.data.site.isResponsive?"-responsive":""}`}`,platform:"viewer",msid:window.fedops.data.site.metaSiteId,sessionId:window.fedops.vsi,sessionTime:Date.now()-window.initialTimestamps.initialTimestamp,logLevel:r?"ERROR":"INFO",message:r?.message??(e?.name&&`${e.name} START`),errorName:r?.name,errorStack:r?.stack,transactionName:e?.name,transactionAction:e&&"START",isSsr:!1,dataCenter:t.dc,isCached:!!h,isRollout:!!b,isHeadless:!!w,isDacRollout:!!I,isSavRollout:!!$,isCompanyNetwork:!!_}];try{let e=JSON.stringify({messages:i});return navigator.sendBeacon("https://panorama.wixapps.net/api/v1/bulklog",e)}catch(e){console.error(e)}}function C(e){return(r,t)=>{let i=Date.now()-P,n=`&name=${r}&duration=${i}`,o=t&&t.paramsOverrides?Object.keys(t.paramsOverrides).map(e=>e+"="+t.paramsOverrides[e]).join("&"):"";N(e,o?`${n}&${o}`:n)}}if(k("pageshow",({persisted:e})=>{e&&!M&&(M=!0,R.is_cached=!0)},!0),window.__browser_deprecation__)return;let D=document.referrer?`&document_referrer=${document.referrer}`:"",U=window.sessionStorage.getItem("isMpa"),B=U?`&isMpa=${U}`:"";U&&window.sessionStorage.removeItem("isMpa");let W=window.sessionStorage.getItem("mpaSessionId");W||(W=o(),window.sessionStorage.setItem("mpaSessionId",W)),window.fedops.mpaSessionId=W;let j=((e,r=!1)=>{if(!e)return 1;let t=e.navigator?.userAgent||"",i=e.devicePixelRatio||1;if(c(t))return e.visualViewport?.scale||1;if((e=>!!e&&!!e&&a.test(e)&&!c(e))(t)){let e,t;if(!r)return 1;let n=(()=>{try{let e=localStorage.getItem("wix_dpr_baseline");if(!e)return null;let r=Number(e);return r>0?{dpr:r}:null}catch{return null}})();return n?(e=i,t=n.dpr,!e||!t||t<=0||e<=t?1:Math.round(e/t*100)/100):1}return((e,r=0,t=0)=>{if(!e||!r||!t)return 1;let i=e&&r&&t?Math.trunc(e*r)<=t?1:2:1;return!i||e<=i?1:Math.round(e/i*100)/100})(i,e.innerWidth,e.outerWidth)})(window)>1,F=(e=window,r=e.visualViewport?.scale,{devicePixelRatio:e.devicePixelRatio||1,innerWidth:e.innerWidth,outerWidth:e.outerWidth,...null!=r?{visualViewportScale:r}:{}});N(21,`&platformOnSite=${window.fedops.data.platformOnSite}&hasInitialZoom=${j}&infoInitialZoom=${encodeURIComponent(JSON.stringify(F))}&mpaSessionId=${W}${D}${B}`),E({transaction:{name:"PANORAMA_COMPONENT_LOAD"}})}()})(); | |
| 2418 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js.map</script> | |
| 2419 | + | |
| 2420 | + | |
| 2421 | + <!-- Polyfills check --> | |
| 2422 | + <script> | |
| 2423 | + if ( | |
| 2424 | + typeof Promise === 'undefined' || | |
| 2425 | + typeof Set === 'undefined' || | |
| 2426 | + typeof Object.assign === 'undefined' || | |
| 2427 | + typeof Array.from === 'undefined' || | |
| 2428 | + typeof Symbol === 'undefined' | |
| 2429 | + ) { | |
| 2430 | + // send bi in order to detect the browsers in which polyfills are not working | |
| 2431 | + window.fedops.phaseStarted('missing_polyfills') | |
| 2432 | + } | |
| 2433 | + </script> | |
| 2434 | + | |
| 2435 | + | |
| 2436 | +<!-- initCustomElements # 1--> | |
| 2437 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js">(()=>{"use strict";var e,r,o,a,t,i,c,n={},d={};function f(e){var r=d[e];if(void 0!==r)return r.exports;var o=d[e]={id:e,loaded:!1,exports:{}};return n[e].call(o.exports,o,o.exports,f),o.loaded=!0,o.exports}if(f.m=n,f.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return f.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,f.t=function(o,a){if(1&a&&(o=this(o)),8&a||"object"==typeof o&&o&&(4&a&&o.__esModule||16&a&&"function"==typeof o.then))return o;var t=Object.create(null);f.r(t);var i={};e=e||[null,r({}),r([]),r(r)];for(var c=2&a&&o;("object"==typeof c||"function"==typeof c)&&!~e.indexOf(c);c=r(c))Object.getOwnPropertyNames(c).forEach(e=>{i[e]=()=>o[e]});return i.default=()=>o,f.d(t,i),t},f.d=(e,r)=>{for(var o in r)f.o(r,o)&&!f.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},f.f={},f.e=e=>Promise.all(Object.keys(f.f).reduce((r,o)=>(f.f[o](e,r),r),[])),f.u=e=>"6948"===e?"thunderbolt-commons.9eb9a4be.bundle.min.js":"3033"===e?"fastdom.inline.48a8bd4b.bundle.min.js":"1619"===e?"custom-element-utils.inline.bec24b26.bundle.min.js":"5205"===e?"render-indicator.inline.df41a0e9.bundle.min.js":"7151"===e?"version-indicator.inline.704acef2.bundle.min.js":"6008"===e?"bi-common.inline.24faadf6.bundle.min.js":""+(({1059:"santa-platform-utils",1090:"speculationRules",1116:"passwordProtectedPage",1122:"group_19",1211:"siteUrlService",1278:"group_24",131:"siteThemeService",1353:"pageContextService",1374:"editorWixCodeSdk",1438:"sdkStateService",1522:"builderContextProviders",1533:"merge-mappers",1538:"businessLogger",1611:"group_44",1638:"quickActionBar",1788:"qaApi",1791:"businessLoggerService",1799:"BackgroundLayer",180:"urlService",1802:"provideCssService",1818:"Repeater_FixedColumns",182:"consentPolicy",1869:"windowScroll",1899:"platformSiteBusinessLoggerService",1932:"customCss",1951:"group_45",1969:"wixEcomFrontendWixCodeSdk",2017:"debug",2031:"platformInteractionsService",2089:"group_47",2122:"siteDynamicRouteService",2130:"ForwardRef",2198:"platformDynamicRouteService",2214:"siteConfigurationService",2220:"group_31",2221:"anchorsService",2226:"translationsService",2242:"builderModuleLoader",2303:"externalServices",2304:"TPAModal",2442:"group_37",2463:"siteTopologyService",2570:"thunderbolt-components-registry",2609:"imagePlaceholder",2616:"linkUtilsService",2624:"group_2",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",2771:"publicApiCallerService",28:"thunderbolt-components-registry-builder",2859:"platformEnvironmentService",2867:"namedSignalsService",2870:"platformNamedSignalsService",2880:"environmentService",294:"stores",2996:"seoService",3026:"lightboxService",3187:"businessManager",3220:"platformPublicApiCallerService",3221:"multilingual",325:"servicesManager",3336:"platformExperimentsService",3370:"domSelectors",338:"platformSiteTopologyService",3399:"platformSiteDynamicRouteService",3407:"clientSdk",3531:"panorama",3556:"warmupData",3607:"UnauthorizedComponent",3654:"ssrCache",3714:"seo-api-converters",3801:"wixDomSanitizer",3872:"siteMembers",3884:"tpaModuleProvider",3894:"protectedPages",3937:"siteRendererConfigurationService",3968:"platformEditorContextService",3979:"dynamicPages",399:"searchBox",3992:"componentsqaapi",3996:"environmentWixCodeSdk",4134:"group_4",4183:"svgLoader",419:"TPAPopup",4217:"group_21",4218:"group_0",4310:"becky-css",4331:"platform",4345:"dashboardWixCodeSdk",4354:"editorElementsDynamicTheme",4443:"pagesService",4444:"siteExperimentsService",4456:"sitePagesService",4499:"siteScrollBlockerService",4675:"stickyToComponent",470:"rendererConfigurationService",4708:"reporter-api",477:"group_32",4803:"dynamicRouteService",4819:"group_35",4990:"accessibility",5002:"group_28",5067:"accessibilityBrowserZoom",5154:"servicesManagerReact",5183:"renderIndicator",5187:"group_7",5213:"scrollToAnchor",5217:"siteRenderingContextService",5221:"containerSliderService",5238:"triggersAndReactions",5289:"SiteStyles",5296:"platformPubsub",5298:"assetsLoader",5363:"environment",5391:"widgetWixCodeSdk",5474:"platformPageContextService",5581:"platformRenderingContextService",5675:"group_41",569:"siteMembersService",572:"animationsWixCodeSdk",5735:"platformSiteSiteThemeService",5745:"ByocStyles",5750:"platformSiteMembersService",5761:"group_10",5794:"seo-api",5837:"group_14",5850:"siteBusinessLoggerService",5863:"appMonitoring",5874:"navigation",5901:"group_5",5976:"AppPart",6070:"platformSiteInteractionsService",6095:"styleUtilsService",6103:"usedPlatformApis",6134:"routerService",6135:"customUrlMapper",6155:"imagePlaceholderService",6182:"motion",6218:"group_11",6258:"group_20",6285:"versionIndicator",6336:"siteSiteThemeService",6428:"ContentReflowBanner",6453:"platformRendererConfigurationService",6526:"siteDeviceInfoService",6647:"mobileFullScreen",6715:"feedback",6732:"siteProvideCssService",6749:"router",6839:"platformFedopsLoggerService",6891:"group_38",6979:"consentPolicyService",6992:"platformTranslationsService",700:"module-executor",7016:"externalComponent",7109:"group_43",7141:"group_50",7146:"serviceRegistrar",7200:"canvas",7233:"FontRulersContainer",7284:"widget",7291:"platformMultilingualService",7356:"group_48",7360:"AppPart2",7482:"vsm-css",7502:"group_42",7538:"group_8",7554:"headAppenderService",7575:"renderer",7644:"group_6",7716:"group_40",7726:"TPAUnavailableMessageOverlay",7729:"tpa",7796:"Repeater_FluidColumns",7801:"testApi",7859:"siteMembersWixCodeSdk",7862:"platformLocaleService",7896:"platformSiteUrlService",7921:"interactions",7981:"domStore",8051:"animations",8207:"FontFaces",821:"group_25",8211:"cyclicTabbingService",8255:"platformRouterService",8277:"pageAnchors",8319:"platformSitePagesService",8332:"platformSiteThemeService",8339:"platformLinkUtilsService",8402:"platformConfigurationService",8428:"containerSlider",8547:"group_49",8559:"TPAWorker",8574:"builderComponent",858:"fedopsLoggerService",8634:"platformDeviceInfoService",8656:"RemoteRefDeadComp",8662:"GhostComp",8678:"cyclicTabbing",87:"ooi",8729:"group_9",8742:"topologyService",8770:"platformStyleUtilsService",8897:"siteAboveTheFoldService",8919:"group_3",8932:"group_39",897:"group_29",8970:"contentReflow",898:"group_46",906:"onloadCompsBehaviors",9081:"group_18",9091:"platformTopologyService",9111:"BuilderComponentDeadComp",9132:"siteEditorContextService",9134:"group_36",9182:"group_51",9214:"multilingualService",9270:"siteScrollBlocker",9316:"platformPagesService",9387:"group_27",9395:"popups",9421:"provideComponentService",9467:"platformSdkStateService",95:"componentsLoader",959:"group_23",9740:"wix-seo-SEO_DEFAULT",9763:"group_30",9764:"platformConsentPolicyService",9768:"group_22",9779:"tslib.inline",9794:"siteLocaleService",9845:"routerFetch",9863:"tpaWidgetNativeDeadComp",9899:"siteInteractionsService",9980:"mpaNavigation"})[e]||e)+"."+({1059:"97687ea7",1090:"851746fd",1116:"ca8d2b5a",1122:"91a95564",1171:"2a59485b",1193:"2569022a",1211:"e04e6b11",1239:"13b3236c",1278:"973ec0eb",131:"cfa0ee23",1353:"8e408c09",1374:"038d9db5",1438:"e883b66a",1463:"75cc62bf",1522:"0e729e1b",1533:"5cea6f9f",1538:"b3c0de71",1546:"633fdeb7",1567:"8a2ed6ac",1593:"185974ae",1611:"32da439a",1638:"e48f9c16",1788:"54c48f6e",1791:"2d664784",1799:"c6051cdc",180:"646756e1",1802:"3df59c19",1818:"82eb4dab",182:"a987db6a",1869:"94e57fc8",1899:"1b2057a6",1932:"f836d8c7",1951:"c1314395",196:"baa4a8cb",1962:"e93dd1da",1969:"62ed7f20",1997:"219fdc2a",2017:"b53af7c0",203:"93b8a21e",2031:"d22bb148",2046:"c3b0bdb6",2089:"84e4b439",2122:"cf9d7361",2130:"972f1da6",2198:"dcdf55cd",2214:"b3407eb8",2220:"820e7611",2221:"2b2254e2",2226:"d3f0a0ce",2242:"b26ca23d",2303:"a9aa058b",2304:"1c4e2cd1",2355:"dff147c9",2442:"22be02da",2463:"0391096e",2538:"bed4d851",2559:"35044fa3",2570:"5b11072b",2609:"3c11dd4b",2616:"89b26de8",2624:"910667fd",2639:"7853b464",2689:"fa382800",2725:"6b13159c",2735:"4bd510e1",2771:"da04ce9a",2777:"337d02e4",28:"6b469a9d",2859:"2b9317db",2867:"413074b3",2870:"4e4d5f25",2880:"676d132e",294:"271cca5b",2996:"c651b2c6",3026:"b35591f5",3187:"6bd030ea",3220:"4716e932",3221:"9d540a42",325:"97378610",330:"6686e7ed",3336:"da9f5032",3370:"1b55da8c",338:"7eda8ac1",3399:"ab0972b9",3407:"f155b667",3415:"27e0927d",3456:"4a19a8fa",3480:"987f1496",3531:"a27650b3",3556:"780ab490",3560:"1762fb1e",3583:"f8ed7ce7",3600:"83d984c4",3607:"8e13c2dd",3634:"94e30248",3654:"f7fb72e6",3714:"2cc9a061",3723:"af439be2",3801:"34d4abc7",3872:"3aafb18a",3884:"51ac9350",3894:"6b5d83a2",3937:"e6df8159",3968:"416cce38",3979:"4ff4e6f5",399:"b003db84",3992:"17ef48ef",3996:"566c4d0f",4134:"097eac4d",4183:"eaac3f9d",419:"a13a7947",4217:"cb838eb5",4218:"b58e75e0",4310:"ac0b3c00",4331:"d1162e0c",4345:"de335548",4354:"89ba8f0a",437:"748f01d1",4443:"cdab3cff",4444:"681aa90e",4456:"d8cb8478",4499:"240cf11b",4675:"726f62ad",470:"ef2ebe53",4708:"71a5ef2b",477:"71b56717",4803:"824ca8f9",4819:"35cb204d",4980:"cbd2ff42",4990:"e4888b8e",5002:"517aa7aa",5028:"dcbabd4f",5067:"f43a588a",5154:"2187b4f5",5183:"c95e75a9",5187:"0a21109c",5192:"cc825f45",5213:"bd63e157",5217:"63721a41",5221:"fec3cd3a",5238:"2c5caf8e",5267:"a4e6564b",5289:"a8b3f792",5296:"d41c28b7",5298:"664431f5",5363:"7ac3f543",5391:"c191ad97",5474:"55cfd378",5539:"4aa2904e",5581:"256b7c35",5675:"fdc7f282",569:"ed1463fc",572:"9f05a568",5735:"5a3cfec9",5745:"4ac8a223",5750:"d471f2af",5761:"d3c97b81",5794:"416b98a6",5837:"ce4fa204",5850:"333eb10e",5863:"f7f650a3",5874:"eba89c08",5901:"3acec901",5976:"6a8402a6",6070:"0d827fa3",6086:"61c45f4e",6095:"98a18ef2",6103:"2fac58dc",6134:"664e9f31",6135:"64f7515a",6155:"c6a1d133",6182:"a51fa0ca",6198:"ce015fff",6218:"18733d1a",6223:"f63c905f",6258:"2588c8a2",6285:"a8fe3456",6336:"6721363c",6428:"dffb6c1d",6453:"9f3a14c4",6474:"a86b17b7",6526:"0362d8ae",6647:"26016b15",6715:"9279907e",6732:"a3d18858",6749:"32a795c0",6753:"afdd5351",6839:"67cdc1b8",6891:"115f04f2",6979:"2e4502a1",6992:"b199b90f",700:"81334661",7016:"2e78f1f7",7109:"fe23d399",7127:"130b4e34",7141:"f473d1ca",7146:"3376f5cc",7186:"3bc830d5",7200:"bfd00c3f",7233:"f9341c8b",7257:"d71af493",7284:"e18b4874",7291:"e92e4859",7356:"8aafa69d",7360:"327ec15d",7482:"60a84d33",7502:"00edceba",7538:"9220f1c1",754:"9c52b3e5",7554:"86d2abc6",7575:"320eeef1",7644:"84400d58",7716:"b48b66d9",7726:"8e304d9b",7729:"6edeff75",7796:"6c0fb6fc",7801:"6a858867",7859:"957dbd39",7862:"1a0ce6ce",7896:"beb65605",7921:"b40c3cbb",7981:"ece10f59",8051:"d94f0463",8052:"29e79fff",81:"54fe0482",8155:"5a0141ee",8166:"deb21518",8167:"d0b9d59c",8207:"6c3c8de5",821:"724dfd3a",8211:"b9cd99de",8255:"40d16460",8268:"1028e4f2",8277:"5ac241c2",8319:"9851d9fb",8332:"a711845b",8339:"2ccc441f",8402:"b66f7f7f",8428:"8d71c775",8487:"a7db3a46",8547:"4392f91f",8559:"6b34ddad",8574:"ce42a157",858:"84374dc7",8634:"4b8ddea3",8656:"afc9c6e5",8662:"56f311d7",8678:"a0ad2cb2",87:"35dd0965",8729:"1b2aefb1",8742:"1abeb981",8770:"04ec9910",8863:"d3d9107f",8897:"c87fc374",8919:"a22a799c",8932:"dca0f811",8968:"069cf880",897:"5e0152fc",8970:"3a7544b6",898:"1fd93beb",9022:"f39960c7",906:"b457547d",9071:"a9e0d43e",9081:"dacb1809",9091:"8368e3eb",9111:"551bb85b",9132:"ffc79f2e",9134:"4b0f738f",9182:"49f9c6e7",9214:"2ca66c92",9269:"712ee971",9270:"d7ac0282",9316:"81af62d8",9387:"82d9db18",9395:"2b704839",9421:"5886298e",9467:"1b10e3bd",95:"037bc6b5",959:"82012ddd",9740:"6c1af586",9763:"9d2d4c10",9764:"58cf53ee",9768:"e636f159",9779:"cdbfecc7",9794:"56234440",9845:"c9420889",9863:"91e76dd4",9899:"6d018680",9954:"07a4e2f0",9980:"bd7e02b4"})[e]+".chunk.min.js",f.miniCssF=e=>"5205"===e?"render-indicator.inline.d4591556.min.css":"7151"===e?"version-indicator.inline.7046c9c0.min.css":""+({1799:"BackgroundLayer",1818:"Repeater_FixedColumns",2304:"TPAModal",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",419:"TPAPopup",5187:"group_7",5976:"AppPart",6428:"ContentReflowBanner",7233:"FontRulersContainer",7360:"AppPart2",7726:"TPAUnavailableMessageOverlay",7796:"Repeater_FluidColumns",9863:"tpaWidgetNativeDeadComp"})[e]+"."+({1799:"0748fc04",1818:"17a84fdd",2304:"e96a6f61",2689:"88cd9698",2735:"44f745b9",419:"82254d4c",5187:"c472a333",5976:"a5efb1fa",6428:"91e2605c",7233:"3c707054",7360:"e5b1bfd5",7726:"2ffa98e3",7796:"564dd9aa",9863:"6f11f5af"})[e]+".chunk.min.css",f.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),f.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o={},f.l=function(e,r,a,t){if(o[e])return void o[e].push(r);if(void 0!==a)for(var i,c,n=document.getElementsByTagName("script"),d=0;d<n.length;d++){var l=n[d];if(l.getAttribute("src")==e){i=l;break}}i||(c=!0,(i=document.createElement("script")).timeout=120,f.nc&&i.setAttribute("nonce",f.nc),i.src=e),o[e]=[r];var s=function(r,a){i.onerror=i.onload=null,clearTimeout(p);var t=o[e];if(delete o[e],i.parentNode&&i.parentNode.removeChild(i),t&&t.forEach(function(e){return e(a)}),r)return r(a)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),c&&document.head.appendChild(i)},f.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a=[],f.O=(e,r,o,t)=>{if(r){t=t||0;for(var i=a.length;i>0&&a[i-1][2]>t;i--)a[i]=a[i-1];a[i]=[r,o,t];return}for(var c=1/0,i=0;i<a.length;i++){for(var[r,o,t]=a[i],n=!0,d=0;d<r.length;d++)(!1&t||c>=t)&&Object.keys(f.O).every(e=>f.O[e](r[d]))?r.splice(d--,1):(n=!1,t<c&&(c=t));if(n){a.splice(i--,1);var l=o();void 0!==l&&(e=l)}}return e},f.p="https://static.parastorage.com/services/wix-thunderbolt/dist/",f.rv=()=>"1.6.8","undefined"!=typeof document){var l=function(e,r,o,a,t){var i=document.createElement("link");return i.rel="stylesheet",i.type="text/css",f.nc&&(i.nonce=f.nc),i.href=r,i.onerror=i.onload=function(o){if(i.onerror=i.onload=null,"load"===o.type)a();else{var c=o&&("load"===o.type?"missing":o.type),n=o&&o.target&&o.target.href||r,d=Error("Loading CSS chunk "+e+" failed.\\n("+n+")");d.code="CSS_CHUNK_LOAD_FAILED",d.type=c,d.request=n,i.parentNode&&i.parentNode.removeChild(i),t(d)}},o?o.parentNode.insertBefore(i,o.nextSibling):document.head.appendChild(i),i},s=function(e,r){for(var o=document.getElementsByTagName("link"),a=0;a<o.length;a++){var t=o[a],i=t.getAttribute("data-href")||t.getAttribute("href");if(i&&(i=i.split("?")[0]),"stylesheet"===t.rel&&(i===e||i===r))return t}for(var c=document.getElementsByTagName("style"),a=0;a<c.length;a++){var t=c[a],i=t.getAttribute("data-href");if(i===e||i===r)return t}},p={404:0};f.f.miniCss=function(e,r){if(p[e])r.push(p[e]);else 0!==p[e]&&({1799:1,1818:1,2304:1,2689:1,2735:1,419:1,5187:1,5205:1,5976:1,6428:1,7151:1,7233:1,7360:1,7726:1,7796:1,9863:1})[e]&&r.push(p[e]=new Promise(function(r,o){var a=f.miniCssF(e),t=f.p+a;if(s(a,t))return r();l(e,t,null,r,o)}).then(function(){p[e]=0},function(r){throw delete p[e],r}))}}t={404:0},f.f.j=function(e,r){var o=f.o(t,e)?t[e]:void 0;if(0!==o)if(o)r.push(o[2]);else if(404!=e){var a=new Promise((r,a)=>o=t[e]=[r,a]);r.push(o[2]=a);var i=f.p+f.u(e),c=Error();f.l(i,function(r){if(f.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+a+": "+i+")",c.name="ChunkLoadError",c.type=a,c.request=i,o[1](c)}},"chunk-"+e,e)}else t[e]=0},f.O.j=e=>0===t[e],i=(e,r)=>{var o,a,[i,c,n]=r,d=0;if(i.some(e=>0!==t[e])){for(o in c)f.o(c,o)&&(f.m[o]=c[o]);if(n)var l=n(f)}for(e&&e(r);d<i.length;d++)a=i[d],f.o(t,a)&&t[a]&&t[a][0](),t[a]=0;return f.O(l)},(c=self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).forEach(i.bind(null,0)),c.push=i.bind(null,c.push.bind(c)),f.ruid="bundler=rspack@1.6.8"})(); | |
| 2438 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js.map</script> | |
| 2439 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["3033"],{17709(t){!function(e){"use strict";var i=function(){},n=e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.msRequestAnimationFrame||function(t){return setTimeout(t,16)};function s(){this.reads=[],this.writes=[],this.raf=n.bind(e),i("initialized",this)}function r(t){t.scheduled||(t.scheduled=!0,t.raf(a.bind(null,t)),i("flush scheduled"))}function a(t){i("flush");var e,n=t.writes,s=t.reads;try{i("flushing reads",s.length),t.runTasks(s),i("flushing writes",n.length),t.runTasks(n)}catch(t){e=t}if(t.scheduled=!1,(s.length||n.length)&&r(t),e)if(i("task errored",e.message),t.catch)t.catch(e);else throw e}function u(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}s.prototype={constructor:s,runTasks:function(t){var e;for(i("run tasks");e=t.shift();)e()},measure:function(t,e){i("measure");var n=e?t.bind(e):t;return this.reads.push(n),r(this),n},mutate:function(t,e){i("mutate");var n=e?t.bind(e):t;return this.writes.push(n),r(this),n},clear:function(t){return i("clear",t),u(this.reads,t)||u(this.writes,t)},extend:function(t){if(i("extend",t),"object"!=typeof t)throw Error("expected object");var e=Object.create(this);return function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i])}(e,t),e.fastdom=this,e.initialize&&e.initialize(),e},catch:null},t.exports=e.fastdom=e.fastdom||new s}("undefined"!=typeof window?window:void 0!==this?this:globalThis)}}]); | |
| 2440 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js.map</script> | |
| 2441 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1619"],{26350(e,t,i){i.r(t),i.d(t,{STATIC_MEDIA_URL:()=>eH,fileType:()=>v,fittingTypes:()=>r,getData:()=>eR,MEDIA_ROOT_URL:()=>ez,sdk:()=>eB,isWEBP:()=>S,alignTypes:()=>h,htmlTag:()=>u,getPlaceholder:()=>eC,getResponsiveImageProps:()=>e$,upscaleMethods:()=>m,getFileExtension:()=>k,populateGlobalFeatureSupport:()=>q});let r={SCALE_TO_FILL:"fill",SCALE_TO_FIT:"fit",STRETCH:"stretch",ORIGINAL_SIZE:"original_size",TILE:"tile",TILE_HORIZONTAL:"tile_horizontal",TILE_VERTICAL:"tile_vertical",FIT_AND_TILE:"fit_and_tile",LEGACY_STRIP_TILE:"legacy_strip_tile",LEGACY_STRIP_TILE_HORIZONTAL:"legacy_strip_tile_horizontal",LEGACY_STRIP_TILE_VERTICAL:"legacy_strip_tile_vertical",LEGACY_STRIP_SCALE_TO_FILL:"legacy_strip_fill",LEGACY_STRIP_SCALE_TO_FIT:"legacy_strip_fit",LEGACY_STRIP_FIT_AND_TILE:"legacy_strip_fit_and_tile",LEGACY_STRIP_ORIGINAL_SIZE:"legacy_strip_original_size",LEGACY_ORIGINAL_SIZE:"actual_size",LEGACY_FIT_WIDTH:"fitWidth",LEGACY_FIT_HEIGHT:"fitHeight",LEGACY_FULL:"full",LEGACY_BG_FIT_AND_TILE:"legacy_tile",LEGACY_BG_FIT_AND_TILE_HORIZONTAL:"legacy_tile_horizontal",LEGACY_BG_FIT_AND_TILE_VERTICAL:"legacy_tile_vertical",LEGACY_BG_NORMAL:"legacy_normal"},n="fill",a="fill_focal",o="crop",s="legacy_crop",l="legacy_fill",h={CENTER:"center",TOP:"top",TOP_LEFT:"top_left",TOP_RIGHT:"top_right",BOTTOM:"bottom",BOTTOM_LEFT:"bottom_left",BOTTOM_RIGHT:"bottom_right",LEFT:"left",RIGHT:"right"},c={[h.CENTER]:{x:.5,y:.5},[h.TOP_LEFT]:{x:0,y:0},[h.TOP_RIGHT]:{x:1,y:0},[h.TOP]:{x:.5,y:0},[h.BOTTOM_LEFT]:{x:0,y:1},[h.BOTTOM_RIGHT]:{x:1,y:1},[h.BOTTOM]:{x:.5,y:1},[h.RIGHT]:{x:1,y:.5},[h.LEFT]:{x:0,y:.5}},d={center:"c",top:"t",top_left:"tl",top_right:"tr",bottom:"b",bottom_left:"bl",bottom_right:"br",left:"l",right:"r"},u={BG:"bg",IMG:"img",SVG:"svg"},m={AUTO:"auto",CLASSIC:"classic",SUPER:"super"},g={radius:"0.66",amount:"1.00",threshold:"0.01"},p={uri:"",css:{img:{},container:{}},attr:{img:{},container:{}},transformed:!1},f=[1.5,2,4],_={HIGH:{size:196e4,quality:90,maxUpscale:1},MEDIUM:{size:36e4,quality:85,maxUpscale:1},LOW:{size:16e4,quality:80,maxUpscale:1.2},TINY:{size:0,quality:80,maxUpscale:1.4}},b="HIGH",T="MEDIUM",I="contrast",E="brightness",w="saturation",L="blur",v={JPG:"jpg",JPEG:"jpeg",JPE:"jpe",PNG:"png",WEBP:"webp",WIX_ICO_MP:"wix_ico_mp",WIX_MP:"wix_mp",GIF:"gif",SVG:"svg",AVIF:"avif",UNRECOGNIZED:"unrecognized"};function A(e,...t){return function(...i){let r=i[i.length-1]||{},n=[e[0]];return t.forEach(function(t,a){let o=Number.isInteger(t)?i[t]:r[t];n.push(o,e[a+1])}),n.join("")}}function O(e){return e[e.length-1]}v.JPG,v.JPEG,v.JPE,v.PNG,v.GIF,v.WEBP;let y=[v.PNG,v.JPEG,v.JPG,v.JPE,v.WIX_ICO_MP,v.WIX_MP,v.WEBP,v.AVIF],C=[v.JPEG,v.JPG,v.JPE];function R(e,t,i){var n;return i&&t&&!(!(n=t.id)||!n.trim()||"none"===n.toLowerCase())&&Object.values(r).includes(e)}function M(e,t,i,r){var n;if(n=e,/(^https?)|(^data)|(^\/\/)/.test(n)||(S(e)||P(e))&&t&&!i)return!1;let a=y.includes(k(e)),o=!!G(e)&&!!(i||r);return a||o}function x(e){return k(e)===v.PNG}function S(e){return k(e)===v.WEBP}function G(e){return k(e)===v.GIF}function P(e){return k(e)===v.AVIF}let N=["/","\\","?","<",">","|","\u201C",":",'"'].map(encodeURIComponent),F=["\\.","\\*"];function k(e){return(/[.]([^.]+)$/.exec(e)&&/[.]([^.]+)$/.exec(e)[1]||"").toLowerCase()}function $(e,t,i,r,a){let o;return o=a===n?Math.max(i/e,r/t):"fit"===a?Math.min(i/e,r/t):1}function B(e,t,i,r,a,o){let{scaleFactor:s,width:l,height:h}=function(e,t,i,r,n){let a,o=i,s=r;if(a=$(e,t,i,r,n),"fit"===n&&(o=e*a,s=t*a),o&&s&&o*s>25e6){let i=Math.sqrt(25e6/(o*s));o*=i,s*=i,a=$(e,t,o,s,n)}return{scaleFactor:a,width:o,height:s}}(e=e||r.width,t=t||r.height,r.width*a,r.height*a,i);return function(e,t,i,r,a,o,s){let{optimizedScaleFactor:l,upscaleMethodValue:h,forceUSM:c}=function(e,t,i,r){if("auto"===r)return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1};if("super"===r)return{optimizedScaleFactor:O(f),upscaleMethodValue:2,forceUSM:!(f.includes(i)||i>O(f))};return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1}}(e,t,o,a),d=i,u=r;if(o<=l)return{width:d,height:u,scaleFactor:o,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!1};switch(s){case n:d=l/o*i,u=l/o*r;break;case"fit":d=e*l,u=t*l}return{width:d,height:u,scaleFactor:l,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!0}}(e,t,l,h,o,s,i)}function H(e){return e.alignment&&d[e.alignment]||d[h.CENTER]}function z(e){let t;return!e||"number"!=typeof e.x||isNaN(e.x)||"number"!=typeof e.y||isNaN(e.y)||(t={x:W(Math.max(0,Math.min(100,e.x))/100,2),y:W(Math.max(0,Math.min(100,e.y))/100,2)}),t}function U(e,t){let i=e*t;return i>_[b].size?b:i>_[T].size?T:i>_.LOW.size?"LOW":"TINY"}function W(e,t){let i=Math.pow(10,t||0);return(e*i/i).toFixed(t)}let Y={isMobile:!1},D=function(e,t){Y[e]=t};function q(){if("undefined"!=typeof window&&"undefined"!=typeof navigator){let e=window.matchMedia&&window.matchMedia("(max-width: 767px)").matches,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);D("isMobile",e&&t)}}function j(e,t){let i={css:{container:{}}},{css:n}=i,{fittingType:a}=e;switch(a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.LEGACY_STRIP_ORIGINAL_SIZE:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FIT:case r.LEGACY_STRIP_SCALE_TO_FIT:n.container.backgroundSize="contain",n.container.backgroundRepeat="no-repeat";break;case r.STRETCH:n.container.backgroundSize="100% 100%",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FILL:case r.LEGACY_STRIP_SCALE_TO_FILL:n.container.backgroundSize="cover",n.container.backgroundRepeat="no-repeat";break;case r.TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.TILE_VERTICAL:case r.LEGACY_STRIP_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.TILE:case r.LEGACY_STRIP_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_STRIP_FIT_AND_TILE:n.container.backgroundSize="contain",n.container.backgroundRepeat="repeat";break;case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.LEGACY_BG_NORMAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat"}switch(t.alignment){case h.CENTER:n.container.backgroundPosition="center center";break;case h.LEFT:n.container.backgroundPosition="left center";break;case h.RIGHT:n.container.backgroundPosition="right center";break;case h.TOP:n.container.backgroundPosition="center top";break;case h.BOTTOM:n.container.backgroundPosition="center bottom";break;case h.TOP_RIGHT:n.container.backgroundPosition="right top";break;case h.TOP_LEFT:n.container.backgroundPosition="left top";break;case h.BOTTOM_RIGHT:n.container.backgroundPosition="right bottom";break;case h.BOTTOM_LEFT:n.container.backgroundPosition="left bottom"}return i}let V={[h.CENTER]:"center",[h.TOP]:"top",[h.TOP_LEFT]:"top left",[h.TOP_RIGHT]:"top right",[h.BOTTOM]:"bottom",[h.BOTTOM_LEFT]:"bottom left",[h.BOTTOM_RIGHT]:"bottom right",[h.LEFT]:"left",[h.RIGHT]:"right"},Z={position:"absolute",top:"auto",right:"auto",bottom:"auto",left:"auto"};function J(e,t){let i={css:{container:{},img:{}}},{css:n}=i,{fittingType:a}=e,o=t.alignment;switch(n.container.position="relative",a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:e.parts&&e.parts.length?(n.img.width=e.parts[0].width,n.img.height=e.parts[0].height):(n.img.width=e.src.width,n.img.height=e.src.height);break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="contain",n.img.objectPosition=V[o]||"unset";break;case r.LEGACY_BG_NORMAL:n.img.width="100%",n.img.height="100%",n.img.objectFit="none",n.img.objectPosition=V[o]||"unset";break;case r.STRETCH:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="fill";break;case r.SCALE_TO_FILL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="cover"}if("number"==typeof n.img.width&&"number"==typeof n.img.height&&(n.img.width!==t.width||n.img.height!==t.height)){let e=Math.round((t.height-n.img.height)/2),i=Math.round((t.width-n.img.width)/2);Object.assign(n.img,Z,{[h.TOP_LEFT]:{top:0,left:0},[h.TOP_RIGHT]:{top:0,right:0},[h.TOP]:{top:0,left:i},[h.BOTTOM_LEFT]:{bottom:0,left:0},[h.BOTTOM_RIGHT]:{bottom:0,right:0},[h.BOTTOM]:{bottom:0,left:i},[h.RIGHT]:{top:e,right:0},[h.LEFT]:{top:e,left:0},[h.CENTER]:{width:t.width,height:t.height,objectFit:"none"}}[o])}return i}function X(e,t){let i,a={css:{container:{}},attr:{container:{},img:{}}},{css:o,attr:s}=a,{fittingType:l}=e,c=t.alignment,{width:d,height:u}=e.src;switch(o.container.position="relative",l){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.TILE:e.parts&&e.parts.length?(s.img.width=e.parts[0].width,s.img.height=e.parts[0].height):(s.img.width=d,s.img.height=u),s.img.preserveAspectRatio="xMidYMid slice";break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:s.img.width="100%",s.img.height="100%",s.img.transform="",s.img.preserveAspectRatio="";break;case r.STRETCH:s.img.width=t.width,s.img.height=t.height,s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="none";break;case r.SCALE_TO_FILL:if(M(e.src.id))s.img.width=t.width,s.img.height=t.height;else{var m;let e;m=t.width,e=$(d,u,m,t.height,n),i={width:Math.round(d*e),height:Math.round(u*e)},s.img.width=i.width,s.img.height=i.height}s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="xMidYMid slice"}if("number"==typeof s.img.width&&"number"==typeof s.img.height&&(s.img.width!==t.width||s.img.height!==t.height)){let e,i,n=0,a=0;l===r.TILE?(e=t.width%s.img.width,i=t.height%s.img.height):(e=t.width-s.img.width,i=t.height-s.img.height);let o=Math.round(e/2),d=Math.round(i/2);switch(c){case h.TOP_LEFT:n=0,a=0;break;case h.TOP:n=o,a=0;break;case h.TOP_RIGHT:n=e,a=0;break;case h.LEFT:n=0,a=d;break;case h.CENTER:n=o,a=d;break;case h.RIGHT:n=e,a=d;break;case h.BOTTOM_LEFT:n=0,a=i;break;case h.BOTTOM:n=o,a=i;break;case h.BOTTOM_RIGHT:n=e,a=i}s.img.x=n,s.img.y=a}return s.container.width=t.width,s.container.height=t.height,s.container.viewBox=["0 0",t.width,t.height].join(" "),a}function K(e,t){let i=B(e.src.width,e.src.height,"fit",t,e.devicePixelRatio,e.upscaleMethod);return{transformType:e.src.width&&e.src.height?n:"fit",width:Math.round(i.width),height:Math.round(i.height),alignment:d.center,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}function Q(e){return{transformType:o,x:Math.round(e.x),y:Math.round(e.y),width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}function ee(e,t,i){return"number"==typeof e&&!isNaN(e)&&0!==e&&e>=t&&e<=i}function et(e,t,i,o){var d,u,p,f,b,T,A;let R,Y=o?.isSEOBot??!1,D=function(e){if(C.includes(k(e)))return v.JPG;if(x(e))return v.PNG;if(S(e))return v.WEBP;if(G(e))return v.GIF;if(P(e))return v.AVIF;return v.UNRECOGNIZED}(t.id),q=function(e,t){let i=/\.([^.]*)$/,r=RegExp(`(${N.concat(F).join("|")})`,"g");if(t&&t.length){let e=t,n=t.match(i);return n&&y.includes(n[1])&&(e=t.replace(i,"")),encodeURIComponent(e).replace(r,"_")}let n=e.match(/\/(.*?)$/);return(n?n[1]:e).replace(i,"")}(t.id,t.name),j=Y?1:Math.min(i.pixelAspectRatio||1,2),V=k(t.id),Z=M(t.id,o?.hasAnimation,o?.allowAnimatedTransform,o?.allowFullGIFTransformation),J={fileName:q,fileExtension:V,fileType:D,fittingType:e,preferredExtension:V,src:{id:t.id,width:t.width,height:t.height,isCropped:!1,isAnimated:(d=t.id,u=o?.hasAnimation,R=S(d)||P(d),k(d)===v.GIF||R&&u)},focalPoint:{x:t.focalPoint&&t.focalPoint.x,y:t.focalPoint&&t.focalPoint.y},parts:[],devicePixelRatio:j,quality:0,upscaleMethod:o&&o.upscaleMethod&&m[o.upscaleMethod.toUpperCase()]||m.AUTO,progressive:!0,watermark:"",unsharpMask:{},filters:{},transformed:Z,allowFullGIFTransformation:o?.allowFullGIFTransformation,isPlaceholderFlow:o?.isPlaceholderFlow};if(Z){let e,d,u,m,y,C;!function(e,t,i){var o,d,u,m,g,p,f,_,b,T,I;let E,w,L,v,A,O;if(t.crop){let i,r;o=t.crop,i=Math.max(0,Math.min(t.width,o.x+o.width)-Math.max(0,o.x)),r=Math.max(0,Math.min(t.height,o.y+o.height)-Math.max(0,o.y)),(E=i&&r&&(t.width!==i||t.height!==r)?{x:Math.max(0,o.x),y:Math.max(0,o.y),width:i,height:r}:null)&&(e.src.width=E.width,e.src.height=E.height,e.src.isCropped=!0,e.parts.push(Q(E)))}switch(e.fittingType){case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:e.parts.push(K(e,i));break;case r.SCALE_TO_FILL:e.parts.push((g=e,p=i,w=B(g.src.width,g.src.height,n,p,g.devicePixelRatio,g.upscaleMethod),{transformType:(L=z(g.focalPoint))?a:n,width:Math.round(w.width),height:Math.round(w.height),alignment:H(p),focalPointX:L&&L.x,focalPointY:L&&L.y,upscale:w.scaleFactor>1,forceUSM:w.forceUSM,scaleFactor:w.scaleFactor,cssUpscaleNeeded:w.cssUpscaleNeeded,upscaleMethodValue:w.upscaleMethodValue}));break;case r.STRETCH:e.parts.push((f=e,_=i,v=$(f.src.width,f.src.height,_.width,_.height,n),(A={..._}).width=f.src.width*v,A.height=f.src.height*v,K(f,A)));break;case r.TILE_HORIZONTAL:case r.TILE_VERTICAL:case r.TILE:case r.LEGACY_ORIGINAL_SIZE:case r.ORIGINAL_SIZE:d=e.src,u=e.focalPoint,m=i.alignment,O=z(u)||function(e=h.CENTER){return c[e]}(m),E={x:Math.max(0,Math.min(d.width-i.width,O.x*d.width-i.width/2)),y:Math.max(0,Math.min(d.height-i.height,O.y*d.height-i.height/2)),width:Math.min(d.width,i.width),height:Math.min(d.height,i.height)},e.src.isCropped?(Object.assign(e.parts[0],E),e.src.width=E.width,e.src.height=E.height):e.parts.push(Q(E));break;case r.LEGACY_STRIP_TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_VERTICAL:case r.LEGACY_STRIP_TILE:case r.LEGACY_STRIP_ORIGINAL_SIZE:e.parts.push({transformType:s,width:Math.round((b=i).width),height:Math.round(b.height),alignment:H(b),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FIT:case r.LEGACY_STRIP_FIT_AND_TILE:e.parts.push({transformType:"fit",width:Math.round((T=i).width),height:Math.round(T.height),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FILL:e.parts.push({transformType:l,width:Math.round((I=i).width),height:Math.round(I.height),alignment:H(I),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1})}}(J,t,i),J.quality=function(e,t){let i=e.fileType===v.PNG,r=e.fileType===v.JPG,n=e.fileType===v.WEBP,a=e.fileType===v.AVIF;if(r||i||n||a){let r=O(e.parts),n=_[U(r.width,r.height)].quality,a=t.quality&&t.quality>=5&&t.quality<=90?t.quality:n;return i?a+5:a}return 0}(J,p=(p=o)||{}),J.progressive=!1!==p.progressive,J.watermark=p.watermark,J.autoEncode=p.autoEncode??!0,J.encoding=p?.encoding,f=J,e="number"==typeof(T=(T=(b=p).unsharpMask)||{}).radius&&!isNaN(T.radius)&&T.radius>=.1&&T.radius<=500,d="number"==typeof T.amount&&!isNaN(T.amount)&&T.amount>=0&&T.amount<=10,u="number"==typeof T.threshold&&!isNaN(T.threshold)&&T.threshold>=0&&T.threshold<=255,J.unsharpMask=e&&d&&u?{radius:W(b.unsharpMask?.radius,2),amount:W(b.unsharpMask?.amount,2),threshold:W(b.unsharpMask?.threshold,2)}:"number"==typeof(A=(A=b.unsharpMask)||{}).radius&&!isNaN(A.radius)&&0===A.radius&&"number"==typeof A.amount&&!isNaN(A.amount)&&0===A.amount&&"number"==typeof A.threshold&&!isNaN(A.threshold)&&0===A.threshold||(m=O(f.parts)).scaleFactor>=1&&!m.forceUSM&&"fit"!==m.transformType?void 0:g,y=p.filters||{},C={},ee(y[I],-100,100)&&(C[I]=y[I]),ee(y[E],-100,100)&&(C[E]=y[E]),ee(y[w],-100,100)&&(C[w]=y[w]),ee(y.hue,-180,180)&&(C.hue=y.hue),ee(y[L],0,100)&&(C[L]=y[L]),J.filters=C}return J}function ei(e,t,i){let n={...i},a=Y.isMobile;switch(e){case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:n.width=Math.min(a?1e3:1920,t.width),n.height=Math.min(a?1e3:1920,Math.round(n.width/(t.width/t.height))),n.pixelAspectRatio=1}return n}let er=A`fit/w_${"width"},h_${"height"}`,en=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,ea=A`fill/w_${"width"},h_${"height"},fp_${"focalPointX"}_${"focalPointY"}`,eo=A`crop/x_${"x"},y_${"y"},w_${"width"},h_${"height"}`,es=A`crop/w_${"width"},h_${"height"},al_${"alignment"}`,el=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,eh=A`,lg_${"upscaleMethodValue"}`,ec=A`,q_${"quality"}`,ed=A`,quality_auto`,eu=A`,usm_${"radius"}_${"amount"}_${"threshold"}`,em=A`,bl`,eg=A`,wm_${"watermark"}`,ep={[I]:A`,con_${"contrast"}`,[E]:A`,br_${"brightness"}`,[w]:A`,sat_${"saturation"}`,hue:A`,hue_${"hue"}`,[L]:A`,blur_${"blur"}`},ef=A`,enc_auto`,e_=A`,enc_avif`,eb=A`,enc_pavif`,eT=A`,pstr`,eI=A`,anm_all`;function eE(e,t,i,r={},h){if(M(t.id,r?.hasAnimation,r?.allowAnimatedTransform,r?.allowFullGIFTransformation)){if((S(t.id)||P(t.id))&&!r.allowWebpAvifTransforms){let{alignment:n,...a}=i;t.focalPoint={x:void 0,y:void 0},delete t?.crop,h=et(e,t,a,r)}else h=h||et(e,t,i,r);return function(e){let t=[];e.parts.forEach(e=>{switch(e.transformType){case o:t.push(eo(e));break;case s:t.push(es(e));break;case l:let i=el(e);e.upscale&&(i+=eh(e)),t.push(i);break;case"fit":let r=er(e);e.upscale&&(r+=eh(e)),t.push(r);break;case n:let h=en(e);e.upscale&&(h+=eh(e)),t.push(h);break;case a:let c=ea(e);e.upscale&&(c+=eh(e)),t.push(c)}});let i=t.join("/");if(e.quality&&(i+=ec(e)),e.unsharpMask&&(i+=eu(e.unsharpMask)),e.progressive||(i+=em(e)),e.watermark&&(i+=eg(e)),e.filters&&(i+=Object.keys(e.filters).map(t=>ep[t](e.filters)).join("")),e.fileType!==v.GIF&&("AVIF"===e.encoding?(i+=e_(e),i+=ed(e)):"PAVIF"===e.encoding?(i+=eb(e),i+=ed(e)):e.autoEncode&&(i+=ef(e))),e.src?.isAnimated&&e.transformed){let t=G(e.src.id),r=!0===e.isPlaceholderFlow,n=!0===e.allowFullGIFTransformation;r?i+=eT(e):t&&n&&(i+=eI(e))}return`${e.src.id}/v1/${i}/${e.fileName}.${e.preferredExtension}`}(h)}return t.id}let ew={[h.CENTER]:"50% 50%",[h.TOP_LEFT]:"0% 0%",[h.TOP_RIGHT]:"100% 0%",[h.TOP]:"50% 0%",[h.BOTTOM_LEFT]:"0% 100%",[h.BOTTOM_RIGHT]:"100% 100%",[h.BOTTOM]:"50% 100%",[h.RIGHT]:"100% 50%",[h.LEFT]:"0% 50%"},eL=Object.entries(ew).reduce((e,[t,i])=>(e[i]=t,e),{}),ev=[r.TILE,r.TILE_HORIZONTAL,r.TILE_VERTICAL,r.LEGACY_BG_FIT_AND_TILE,r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL,r.LEGACY_BG_FIT_AND_TILE_VERTICAL],eA=[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE,r.LEGACY_BG_NORMAL];function eO(e,t,{width:i,height:n}){return e===r.TILE&&t.width>i&&t.height>n}let ey={width:"100%",height:"100%"};function eC(e,t,i,n={}){var a;let o,{autoEncode:s=!0,isSEOBot:l,shouldLoadHQImage:h,hasAnimation:c,allowAnimatedTransform:d,encoding:u}=n;if(!R(e,t,i))return p;let m=d??!0,g=M(t.id,c,m);if(!g||h)return eR(e,t,i,{...n,autoEncode:s,useSrcset:g});let f={...i,...function(e,{width:t,height:i}){if(!t||!i){let r=t||Math.min(980,e.width),n=r/e.width;return{width:r,height:i||e.height*n}}return{width:t,height:i}}(t,i)},{alignment:_,htmlTag:b}=f,T=eO(e,t,f),I=function(e,t,{width:i,height:r},n=!1){var a,o;if(n)return{width:i,height:r};let s=!eA.includes(e),l=eO(e,t,{width:i,height:r}),h=!l&&ev.includes(e),c=h?t.width:i,d=h?t.height:r,u=s?(a=c,o=x(t.id),a>900?o?.05:.15:a>500?o?.1:.18:a>200?.25:1):1;return{width:l?1920:c*u,height:d*u}}(e,t,f,l),E=(a=f.width,l?0:ev.includes(e)?1:a>200?2:3),w=(o=ev.includes(e)&&!T,e===r.SCALE_TO_FILL||o?r.SCALE_TO_FIT:e),L=function(e,t,i,n="center"){let a={img:{},container:{}};if(e===r.SCALE_TO_FILL){var o;let e=t.focalPoint&&(o=t.focalPoint,eL[`${o.x}% ${o.y}%`]||"");t.focalPoint&&!e?a.img={objectPosition:function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(t,i,t.focalPoint)}:a.img={objectPosition:ew[e||n]}}else[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE].includes(e)?a.img={objectFit:"none",top:"auto",left:"auto",right:"auto",bottom:"auto"}:ev.includes(e)&&(a.container={backgroundSize:`${t.width}px ${t.height}px`});return a}(e,t,i,_),{uri:v}=eR(w,t,{...I,alignment:_,htmlTag:b},{autoEncode:s,filters:E?{blur:E}:{},hasAnimation:c,allowAnimatedTransform:m,encoding:u,isPlaceholderFlow:!0}),{attr:A={},css:O}=eR(e,t,{...f,alignment:_,htmlTag:b},{});return O.img=O.img||{},O.container=O.container||{},Object.assign(O.img,L.img,ey),Object.assign(O.container,L.container),{uri:v,css:O,attr:A,transformed:!0}}function eR(e,t,i,r){let n={};if(R(e,t,i)){var a;let o,s=ei(e,t,i),l=et(e,t,s,r);n.uri=eE(e,t,s,r,l),r?.useSrcset&&(n.srcset=(a=n,o=s.pixelAspectRatio||1,{dpr:[`${1===o?a.uri:eE(e,t,{...s,pixelAspectRatio:1},r)} 1x`,`${2===o?a.uri:eE(e,t,{...s,pixelAspectRatio:2},r)} 2x`]})),Object.assign(n,(s.htmlTag===u.BG?j:s.htmlTag===u.SVG?X:J)(l,s),{transformed:l.transformed})}else n=p;return n}function eM(e,t,i,r){if(R(e,t,i)){let n=ei(e,t,i),a=et(e,t,n,r);return{uri:eE(e,t,n,r||{},a)}}return{uri:""}}let ex="https://static.wixstatic.com/",eS="https://static.wixstatic.com/media/",eG=/^media\//i,eP="undefined"!=typeof window?window.devicePixelRatio:1,eN=(e,t)=>{let i=t&&t.baseHostURL;return i?`${i}${e}`:eG.test(e)?`${ex}${e}`:`${eS}${e}`};q();let eF="center",ek=[1920,1536,1366,1280,980],e$=(e,t,i)=>{let{displayMode:r,uri:n,width:a,height:o,name:s,crop:l,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,encoding:p,siteMargin:f,widthProportion:_,allowFullGIFTransformation:b,baseHostURL:T}=e;if(_){let e,g,I=(e="original_size"===r,g=a/o,ek.map((r,I)=>{let E=980===r,w=e=>E?t:_/100*(e-2*(f||0)),L=w(ek[I+1]),v=w(r),A=L/i,O=!(e||E)&&((e,t,i,r,n,a,o,s=eF)=>{if(e>t){let e=Math.round(r/(a/n)),t=Math.round(i/2-e/2);return s.includes("top")?t=0:s.includes("bottom")&&(t=i-e),{width:r,height:e,x:0,y:t}}{let e=Math.round(i/(n/o)),t=Math.round(r/2-e/2);return s.includes("left")?t=0:s.includes("right")&&(t=r-e),{width:e,height:i,x:t,y:0}}})(A,g,o,a,i,L,v,c),{srcset:y,fallbackSrc:C,css:R}=e$({displayMode:e?"original_size":E?"fill":"fit",uri:n,width:a,height:o,crop:l||O,name:s,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,encoding:p,allowFullGIFTransformation:b,baseHostURL:T},v,i);return e&&R&&(R.img.objectFit="cover"),{srcset:y||"",sizes:E?`${_}vw`:`${v}px`,media:`(max-width: ${r}px)`,fallbackSrc:C,imgStyle:R?.img}})).filter(Boolean).reverse();return{fallbackSrc:I[0].fallbackSrc,sources:I,css:I[0].imgStyle}}{let{srcset:e,css:f,uri:_}=eR(r,{id:n,width:a,height:o,name:s,crop:l,focalPoint:h},{width:t,height:i,alignment:c},{focalPoint:h,name:s,quality:d?.quality,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,useSrcset:!0,encoding:p,allowFullGIFTransformation:b}),I=T||eH,E=e?.dpr?.map(e=>/^[a-z]+:/.test(e)?e:`${I}${e}`);return{fallbackSrc:`${I}${_}`,srcset:E?.join(", ")||"",css:f}}};q();let eB={getScaleToFitImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FIT,{id:e,width:t,height:i,name:o&&o.name},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getScaleToFillImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:o&&o.name,focalPoint:{x:o&&o.focalPoint&&o.focalPoint.x,y:o&&o.focalPoint&&o.focalPoint.y}},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getCropImageURL:function(e,t,i,n,a,o,s,l,c,d){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:d&&d.name,crop:{x:n,y:a,width:o,height:s}},{width:l,height:c,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:d?.devicePixelRatio??eP},d).uri,d)}},eH=eS,ez=ex},55901(e,t,i){(0,i(16858).Rr)()},19787(e,t,i){var r=i(16858),n=i(99090);((e=window)=>{let{mediaServices:t,environmentConsts:i,requestUrl:a,staticVideoUrl:o}=e.customElementNamespace;(0,r.EH)(e,t,{...i,prefersReducedMotion:(0,n.O)(window,a),staticVideoUrl:o}),(0,r.jh)(e),(0,r.p7)(e,t,i)})(),window.resolveExternalsRegistryModule("imageClientApi")},16858(e,t,i){i.d(t,{_o:()=>s,NL:()=>O,yO:()=>w,vk:()=>c,EH:()=>k,KU:()=>l,Rr:()=>x,jh:()=>G,p7:()=>A,Aq:()=>h});var r=i(17709),n=i.n(r);let a=(e,t,i)=>{let r=1,n=0;for(let a=0;a<e.length;a++){let o=e[a];if(o>t||(n+=o)>t&&(r++,n=o,r>i))return!1}return!0};function o(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function s(){class e extends HTMLElement{setContainerHeight(e){this.style.setProperty("--flex-columns-height",`${e}px`)}removeContainerHeight(){this.style.removeProperty("--flex-columns-height")}getColumnCount(e){return parseInt(e.getPropertyValue("--flex-column-count"),10)}getRowGap(e){return parseInt(e.getPropertyValue("row-gap")||"0",10)}activate(){this.isActive=!0,this.attachObservers(),this.recalcHeight()}deactivate(){this.isActive=!1,this.detachHeightCalcObservers(),this.removeContainerHeight()}calcActive(){return"multi-column-layout"===getComputedStyle(this).getPropertyValue("--container-layout-type")}get itemsHeights(){return Array.from(this.children).map(e=>{let t=getComputedStyle(e),i=parseFloat(t.height||"0");return i+=parseFloat(t.marginTop||"0"),{height:i+=parseFloat(t.marginBottom||"0")}})}setIsActive(){let e=this.calcActive();this.isActive!==e&&(e?this.activate():this.deactivate())}connectedCallback(){this.cleanUp(),this.createObservers(),this.setIsActive(),window.document.body&&this.isActiveObserver?.observe(window.document.body)}disconnectedCallback(){this.cleanUp()}constructor(...e){super(...e),o(this,"containerWidthObserver",void 0),o(this,"mutationObserver",void 0),o(this,"isActiveObserver",void 0),o(this,"childResizeObserver",void 0),o(this,"containerWidth",0),o(this,"isActive",!1),o(this,"isDuringCalc",!1),o(this,"attachObservers",()=>{this.mutationObserver?.observe(this,{childList:!0,subtree:!0}),this.containerWidthObserver?.observe(this),Array.from(this.children).forEach(e=>{this.handleItemAdded(e)})}),o(this,"detachHeightCalcObservers",()=>{this.mutationObserver?.disconnect(),this.containerWidthObserver?.disconnect(),this.childResizeObserver?.disconnect()}),o(this,"recalcHeight",()=>{this.isActive&&n().measure(()=>{if(!this.isActive||this.isDuringCalc)return;this.isDuringCalc=!0;let e=getComputedStyle(this),t=((e,t,i)=>{let r=-1/0,n=e.map(e=>(e.height+t>r&&(r=e.height+t),e.height+t)),o=r,s=r*e.length,l=r;for(;o<s;){let e=Math.floor((o+s)/2);a(n,e,i)?s=e:o=e+1,l=o}return l-t})(this.itemsHeights,this.getRowGap(e),this.getColumnCount(e));this.isDuringCalc=!1,n().mutate(()=>{this.setContainerHeight(t),this.style.setProperty("visibility",null)})})}),o(this,"cleanUp",()=>{this.detachHeightCalcObservers(),this.removeContainerHeight(),this.isActiveObserver?.disconnect()}),o(this,"handleItemAdded",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.observe(e)}),o(this,"handleItemRemoved",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.unobserve(e)}),o(this,"createObservers",()=>{this.containerWidthObserver=new ResizeObserver(e=>{let t=e[0];if(t.contentRect.width!==this.containerWidth){if(0===this.containerWidth){this.containerWidth=t.contentRect.width;return}this.containerWidth=t.contentRect.width,this.recalcHeight()}}),this.mutationObserver=new MutationObserver(e=>{e.forEach(e=>{Array.from(e.removedNodes).forEach(this.handleItemRemoved),Array.from(e.addedNodes).forEach(this.handleItemAdded)}),this.recalcHeight()}),this.childResizeObserver=new ResizeObserver(()=>{this.recalcHeight()}),this.isActiveObserver=new ResizeObserver(()=>{this.setIsActive()})})}}return e}let l="multi-column-layouter",h=()=>{let e={observedElementToRelayoutTarget:new Map,getLayoutTargets(t){let i=new Set;return t.forEach(t=>i.add(e.observedElementToRelayoutTarget.get(t))),i},observe:i=>{e.observedElementToRelayoutTarget.set(i,i),t.observe(i)},unobserve:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)},observeChild:(i,r)=>{e.observedElementToRelayoutTarget.set(i,r),t.observe(i)},unobserveChild:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)}},t=new window.ResizeObserver(t=>{e.getLayoutTargets(t.map(e=>e.target)).forEach(e=>e.reLayout())});return e},c=(e,t=window)=>{let i=!1;return(...r)=>{i||(i=!0,t.requestAnimationFrame(()=>{i=!1,e(...r)}))}};function d(...e){let t=e[0];for(let i=1;i<e.length;++i)t=`${t.replace(/\/$/,"")}/${e[i].replace(/^\//,"")}`;return t}var u=i(26350);let m={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},g=(e,t)=>e&&t&&Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),p=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||m[i]?r:`${r}px`;else e.style.removeProperty(i)}),f=(e,t,i=!0)=>{var r;return e&&i?(r=e.dataset[t])?"true"===r||"false"!==r&&("null"===r?null:`${+r}`===r?+r:r):r:e.dataset[t]},_=(e,t)=>e&&t&&Object.assign(e.dataset,t),b=e=>e||document.documentElement.clientHeight||window.innerHeight||0,T={fit:"contain",fill:"cover"};var I=i(69654);let E=(e,t,i)=>{void 0===e.customElements.get(t)&&e.customElements.define(t,i)};function w(e,t=window){class i extends t.HTMLElement{reLayout(){}connectedCallback(){this.observeResize(),this.reLayout()}disconnectedCallback(){this.unobserveResize(),this.unobserveChildren()}observeResize(){e.resizeService.observe(this)}unobserveResize(){e.resizeService.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new t.MutationObserver(()=>this.reLayout())),this.childListObserver.observe(e,{childList:!0})}observeChildAttributes(e,i=[]){this.childrenAttributesObservers||(this.childrenAttributesObservers=[]);let r=new t.MutationObserver(()=>this.reLayout());r.observe(e,{attributeFilter:i}),this.childrenAttributesObservers.push(r)}observeChildResize(t){this.childrenResizeObservers||(this.childrenResizeObservers=[]),e.resizeService.observeChild(t,this),this.childrenResizeObservers.push(t)}unobserveChildrenResize(){this.childrenResizeObservers&&(this.childrenResizeObservers.forEach(t=>{e.resizeService.unobserveChild(t)}),this.childrenResizeObservers=null)}unobserveChildren(){if(this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null),this.childrenAttributesObservers){for(let e of this.childrenAttributesObservers)e.disconnect(),e=null;this.childrenAttributesObservers=null}this.unobserveChildrenResize()}constructor(){super()}}return i}let L=e=>{if(e.customElementNamespace||(e.customElementNamespace={}),void 0===e.customElementNamespace.WixElement){let t=w({resizeService:h()},e);return e.customElementNamespace.WixElement=t,t}return e.customElementNamespace.WixElement},v="wix-bg-image",A=(e=globalThis.window,t={},i={experiments:{}})=>{if(e&&void 0===e.customElements.get(v)){let r=function(e,t,i,r=window){let n=((e=window)=>({measure:function(e,t,i,{containerId:r,bgEffectName:n},a){let o=i[e],s=i[r],{width:l,height:h}=a.getMediaDimensionsByEffect(n,s.offsetWidth,s.offsetHeight,b(a.getScreenHeightOverride?.()));t.width=l,t.height=h,t.currentSrc=o.style.backgroundImage,t.bgEffectName=o.dataset.bgEffectName},patch:function(t,i,r,n,a){let o=r[t];n.targetWidth=i.width,n.targetHeight=i.height;let s=((e,t,i)=>{var r;let n,{targetWidth:a,targetHeight:o,imageData:s,filters:l,displayMode:h=u.fittingTypes.SCALE_TO_FILL}=e;if(!a||!o||!s.uri)return{uri:"",css:{}};let{width:c,height:d,crop:m,name:g,focalPoint:p,upscaleMethod:f,quality:_,devicePixelRatio:b=t.devicePixelRatio}=s,T={filters:l,upscaleMethod:f,..._,hasAnimation:e?.hasAnimation||s?.hasAnimation},I=(r=b,((n=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0].toLowerCase().includes("devicepixelratio")))?Number(n[1]):null)||r||1),E={id:s.uri,width:c,height:d,...m&&{crop:m},...p&&{focalPoint:p},...g&&{name:g}},w={width:a,height:o,htmlTag:"bg",pixelAspectRatio:I,alignment:e.alignType||u.alignTypes.CENTER},L=(0,u.getData)(h,E,w,T),v=s.baseHostURL||t.staticMediaUrl;return L.uri=((e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=`${t}/`;return e&&(/^micons\//.test(e)?r=i:"ico"===/[^.]+$/.exec(e)[0]&&(r=r.replace("media","ficons"))),r+e})(L.uri,v,t.mediaRootUrl),L})(n,a,0);if(function(e="",t){return!e.includes(t)||!!e!=!!t}(i.currentSrc,s.uri)){let t,i;t={backgroundImage:`url("${s.uri}")`,...s.css.container},(i=new e.Image).onload=p.bind(null,o,t),i.src=s.uri}else p(o,s.css.container)}}))(r);return class extends e{reLayout(){if(t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")||t.isExperimentOpen("specs.thunderbolt.final_force_webp")||t.isExperimentOpen("specs.thunderbolt.final_force_no_webp"))return;let e={},a={},o=(0,I.ZH)(this,{experiments:i.experiments,logger:i.logger,document:r.document}),s=JSON.parse(this.dataset.tiledImageInfo),{bgEffectName:l}=this.dataset,{containerId:h}=s,c=(0,I.qc)(h,{experiments:i.experiments,logger:i.logger,document:r.document});e[o]=this,e[h]=c,s.displayMode=s.imageData.displayMode,t.mutationService.measure(()=>{n.measure(o,a,e,{containerId:h,bgEffectName:l},t)}),t.mutationService.mutate(()=>{n.patch(o,a,e,s,i,t)})}attributeChangedCallback(e,t){t&&this.reLayout()}disconnectedCallback(){super.disconnectedCallback()}static get observedAttributes(){return["data-tiled-image-info"]}constructor(){super()}}}(L(e),t,i,e);E(e,v,r)}};function O(e,t,i,r=window){let n={width:void 0,height:void 0,left:void 0};return class extends e{reLayout(){let{containerId:e,pageId:a,useCssVars:o,bgEffectName:s}=this.dataset,l=(0,I.hW)(this,e)||(0,I.qc)(`${e}`,{experiments:i.experiments,logger:i.logger,document:r.document}),h=(0,I.hW)(this,a)||(0,I.qc)(`${a}`,{experiments:i.experiments,logger:i.logger,document:r.document}),c={};t.mutationService.measure(()=>{let e="fixed"===r.getComputedStyle(this).position,i=b(t.getScreenHeightOverride?.()),n=l.getBoundingClientRect(),a=t.getMediaDimensionsByEffect(s,n.width,n.height,i),{hasParallax:d}=a,u=h&&(r.getComputedStyle(h).transition||"").includes("transform"),{width:m,height:g}=a,p=`${m}px`,f=`${g}px`,_=`${(n.width-m)/2}px`;if(e){let e=r.document.documentElement.clientLeft;_=u?`${l.offsetLeft-e}px`:`${n.left-e}px`}let T=e||d?0:`${(n.height-g)/2}px`;Object.assign(c,o?{"--containerW":p,"--containerH":f,"--containerL":_,"--screenH_val":`${i}`}:{width:p,height:f,left:_,top:T})}),t.mutationService.mutate(()=>{if(o){let e;p(this,n),e=this,e&&c&&Object.keys(c).forEach(t=>{e.style.setProperty(t,c[t])})}else p(this,c)})}connectedCallback(){super.connectedCallback(),t.windowResizeService.observe(this)}disconnectedCallback(){super.disconnectedCallback(),t.windowResizeService.unobserve(this)}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-is-full-height","data-container-size"]}constructor(){super()}}}let y="__more__",C="moreContainer";function R(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let M="wix-dropdown-menu",x=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(M)){let t=h(),i=function(e,t,i=window){let r=((e=window)=>{let t=(e,t,i,r,n,a,o,s)=>{if(e-=n*(o?r.length:r.length-1),e-=s.left+s.right,t&&(r=r.map(()=>a)),r.some(e=>0===e))return null;let l=0,h=r.reduce((e,t)=>e+t,0);if(h>e)return null;if(t){if(i){let t=Math.floor(e/r.length),i=r.map(()=>t);if((l=t*r.length)<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r}if(i){let t=Math.floor((e-h)/r.length);l=0;let i=r.map(e=>(l+=e+t,e+t));if(l<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r},i=e=>{let t=parseFloat(e);return isFinite(t)?t:0},r=e=>!isNaN(parseFloat(e))&&isFinite(e);return{measure:(r,n)=>{var a;let o,s,l,h,c,d,u,m,g,p,_={},b={};b[r]=n;let T=1,I=n.getRootNode().querySelector("[id^=site-root]");I&&(T=I.getBoundingClientRect().width/I.offsetWidth);let E=(o=+f(b[r],"numItems"))<=0||o>Number.MAX_SAFE_INTEGER?[]:Array(o).fill(0).map((e,t)=>String(t)),w=["moreContainer","itemsContainer","dropWrapper"].concat(E,[y]);w.forEach(e=>{let t=`${r}${e}`;b[t]=n.getRootNode().getElementById(`${t}`)}),a=T,s={},w.forEach(e=>{let t=`${r}${e}`,i=b[t];i&&(s[t]={width:i.offsetWidth,boundingClientRectWidth:Math.round(i.getBoundingClientRect().width/a),height:i.offsetHeight})}),_.children=s;let L=b[r],v=b[`${r}itemsContainer`],A=v.childNodes,O=b[`${r}moreContainer`],C=O.childNodes,R=f(L,"stretchButtonsToMenuWidth"),M=f(L,"sameWidthButtons");_.absoluteLeft=L.getBoundingClientRect().left,_.bodyClientWidth=e.document.body.clientWidth,_.alignButtons=f(L,"dropalign"),_.hoverListPosition=f(L,"drophposition"),_.menuBorderY=parseInt(f(L,"menuborderY"),10),_.ribbonExtra=parseInt(f(L,"ribbonExtra"),10),_.ribbonEls=parseInt(f(L,"ribbonEls"),10),_.labelPad=parseInt(f(L,"labelPad"),10),_.menuButtonBorder=parseInt(f(L,"menubtnBorder"),10),l=v.lastChild,_.menuItemContainerMargins=(parseInt((h=e.getComputedStyle(l)).marginLeft,10)||0)+(parseInt(h.marginRight,10)||0),d=i((c=e.getComputedStyle(v)).borderTopWidth)+i(c.paddingTop),u=i(c.borderBottomWidth)+i(c.paddingBottom),m=i(c.borderLeftWidth)+i(c.paddingLeft),g=i(c.borderRightWidth)+i(c.paddingRight),d+=i(c.marginTop),u+=i(c.marginBottom),m+=i(c.marginLeft),g+=i(c.marginRight),_.menuItemContainerExtraPixels={top:d,bottom:u,left:m,right:g,height:d+u,width:m+g},_.needToOpenMenuUp=L.getBoundingClientRect().top>e.innerHeight/2,_.menuItemMarginForAllChildren=!R||"false"!==v.getAttribute("data-marginAllChildren"),_.moreSubItem=[],_.labelWidths={},_.linkIds={},_.parentId={},_.menuItems={},_.labels={},C.forEach((t,i)=>{_.parentId[t.id]=f(t,"parentId");let r=f(t,"dataId");_.menuItems[r]={dataId:r,parentId:f(t,"parentId"),moreDOMid:t.id,moreIndex:i},b[t.id]=t;let n=t.querySelector("p");b[n.id]=n,_.labels[n.id]={width:n.offsetWidth,height:n.offsetHeight,left:n.offsetLeft,lineHeight:parseInt(e.getComputedStyle(n).fontSize,10)},_.moreSubItem.push(t.id)}),A.forEach((e,t)=>{let i,r,n=f(e,"dataId");_.menuItems[n]=_.menuItems[n]||{},_.menuItems[n].menuIndex=t,_.menuItems[n].menuDOMid=e.id,_.children[e.id].left=e.offsetLeft;let a=e.querySelector("p");b[a.id]=a,_.labelWidths[a.id]=(i=a,r=T,Math.round(i.getBoundingClientRect().width/r));let o=e.querySelector("p");b[o.id]=o,_.linkIds[e.id]=o.id});let x=L.offsetHeight;_.height=x,_.width=L.offsetWidth,p=x-_.menuBorderY-_.labelPad-_.ribbonEls-_.menuButtonBorder-_.ribbonExtra,_.lineHeight=`${p}px`;let S=((e,i,r,n,a)=>{let o=i.width;i.hasOriginalGapData={},i.originalGapBetweenTextAndBtn={};let s=a.map(t=>{let r,a=f(n[e+t],"originalGapBetweenTextAndBtn");return(void 0===a?(i.hasOriginalGapData[t]=!1,r=i.children[e+t].boundingClientRectWidth-i.labelWidths[`${e+t}label`],i.originalGapBetweenTextAndBtn[e+t]=r):(i.hasOriginalGapData[t]=!0,r=parseFloat(a)),i.children[e+t].width>0)?Math.floor(i.labelWidths[`${e+t}label`]+r):0}),l=s.pop(),h=r.sameWidthButtons,c=r.stretchButtonsToMenuWidth,d=!1,u=i.menuItemContainerMargins,m=i.menuItemMarginForAllChildren,g=i.menuItemContainerExtraPixels,p=s.reduce((e,t)=>e>t?e:t,-1/0),_=t(o,h,c,s,u,p,m,g);if(!_){for(let e=1;e<=s.length;e++)if(_=t(o,h,c,s.slice(0,-1*e).concat(l),u,p,m,g)){d=!0;break}_||(d=!0,_=[l])}if(d){let e=_[_.length-1];for(_=_.slice(0,-1);_.length<a.length;)_.push(0);_[_.length-1]=e}return{realWidths:_,moreShown:d}})(r,_,{sameWidthButtons:M,stretchButtonsToMenuWidth:R},b,E.concat(y));return _.realWidths=S.realWidths,_.isMoreShown=S.moreShown,_.menuItemIds=E,_.hoverState=f(O,"hover",!1),{measures:_,domNodes:b}},patch:(e,t,i)=>{let n=i[e];p(n,{overflowX:"visible"});let{menuItemIds:a,needToOpenMenuUp:o}=t,s=a.concat(y);_(n,{dropmode:o?"dropUp":"dropDown"});let l=0;if(t.hoverState===y){let e,r,n=t.realWidths.indexOf(0),o=t.menuItems[e=t.menuItems,r=e=>e.menuIndex===n,Object.keys(e).find(t=>r(e[t],t))],s=o.moreIndex,h=s===a.length-1;o.moreDOMid&&g(i[o.moreDOMid],{"data-listposition":h?"dropLonely":"top"}),Object.values(t.menuItems).filter(e=>!!e.moreDOMid).forEach(e=>{if(e.moreIndex<s)p(i[e.moreDOMid],{display:"none"});else{let i=`${e.moreDOMid}label`;l=Math.max(t.labels[i].width,l)}})}else t.hoverState&&t.moreSubItem.forEach((i,r)=>{let n=`${e+C+r}label`;l=Math.max(t.labels[n].width,l)});((e,t,i,n)=>{let{hoverState:a}=t;if("-1"!==a){let{menuItemIds:o}=t,s=o.indexOf(a);if(r(t.hoverState)||a===y){if(!t.realWidths)return;let a=Math.max(n,t.children[-1!==s?e+s:e+y].width),o=Math.max(n,t.children[`${e}dropWrapper`].width),l=(0!==t.moreSubItem.length?t.labels[`${t.moreSubItem[0]}label`].lineHeight:0)+15+t.menuBorderY+t.labelPad+t.menuButtonBorder;t.moreSubItem.forEach(e=>{p(i[e],{minWidth:`${a}px`}),p(i[`${e}label`],{minWidth:"0px",lineHeight:`${l}px`})});let h=r(t.hoverState)?t.hoverState:"__more__",c={width:t.children[e+h].width,left:t.children[e+h].left},d=((e,t,i,r,n)=>{let{width:a,height:o,alignButtons:s,hoverListPosition:l,menuItemContainerExtraPixels:h}=t,c=t.absoluteLeft,d=((e,t,i,r,n,a,o,s,l,h)=>{let c="0px",d="auto",u=a.left,m=a.width;if("left"===t?c="left"===n?0:`${u+e.left}px`:"right"===t?(d="right"===n?0:`${r-u-m-e.right}px`,c="auto"):"left"===n?c=`${u+(m+e.left-i)/2}px`:"right"===n?(c="auto",d=`${(m+e.right-(i+e.width))/2}px`):c=`${e.left+u+(m-(i+e.width))/2}px`,"auto"!==c){let e=o+parseInt(c,10);e+h>l?(c="auto",d=0):c=e<0?0:c}return"auto"!==d&&(d=s-parseInt(d,10)>l?0:d),{moreContainerLeft:c,moreContainerRight:d}})(h,s,r,a,l,i,c,c+a,t.bodyClientWidth,n);return{left:d.moreContainerLeft,right:d.moreContainerRight,top:t.needToOpenMenuUp?"auto":`${o}px`,bottom:t.needToOpenMenuUp?`${o}px`:"auto"}})(0,t,c,a,o);p(i[`${e}${C}`],{left:d.left,right:d.right}),p(i[`${e}dropWrapper`],{left:d.left,right:d.right,top:d.top,bottom:d.bottom})}}})(e,t,i,l),t.originalGapBetweenTextAndBtn&&s.forEach(r=>{t.hasOriginalGapData[r]||_(i[`${e}${r}`],{originalGapBetweenTextAndBtn:t.originalGapBetweenTextAndBtn[`${e}${r}`]})}),((e,t,i,r)=>{let{realWidths:n,height:a,menuItemContainerExtraPixels:o}=i,s=0,l=null,h=null,c=i.lineHeight,d=a-o.height;for(let a=0;a<r.length;a++){let o=n[a],u=o>0,m=e+r[a];h=i.linkIds[m],u?(s++,l=m,p(t[m],{width:`${o}px`,height:`${d}px`,position:"relative","box-sizing":"border-box",overflow:"visible",visibility:"inherit"}),p(t[`${m}label`],{"line-height":c}),g(t[m],{"aria-hidden":!1})):(p(t[m],{height:"0px",overflow:"hidden",position:"absolute",visibility:"hidden"}),g(t[m],{"aria-hidden":!0}),g(t[h],{tabIndex:-1}))}1===s&&(_(t[`${e}moreContainer`],{listposition:"lonely"}),_(t[l],{listposition:"lonely"}))})(e,i,t,s)}}})(i);return class extends e{static get observedAttributes(){return["data-hovered-item"]}attributeChangedCallback(){this._isVisible()&&this.reLayout()}connectedCallback(){this._id=this.getAttribute("id"),this._hideElement(),this._waitForDomLoad().then(()=>{super.observeResize(),this._observeChildrenResize(),this.reLayout()})}disconnectedCallback(){t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),super.disconnectedCallback()}_waitForDomLoad(){let e,t=new Promise(t=>{e=t});return this._isDomReady()?e():(this._waitForDomReadyObserver=new i.MutationObserver(()=>this._onRootMutate(e)),this._waitForDomReadyObserver.observe(this,{childList:!0,subtree:!0})),t}_isDomReady(){return this._itemsContainer=this.getRootNode().getElementById(`${this._id}itemsContainer`),this._dropContainer=this.getRootNode().getElementById(`${this._id}dropWrapper`),this._itemsContainer&&this._dropContainer}_onRootMutate(e){this._isDomReady()&&(this._waitForDomReadyObserver.disconnect(),e())}_observeChildrenResize(){let e=Array.from(this._itemsContainer.childNodes);this._labelItems=e.map(e=>this.getRootNode().getElementById(`${e.getAttribute("id")}label`)),this._labelItems.forEach(e=>super.observeChildResize(e))}_setVisibility(e){this._visible=e,this.style.visibility=e?"inherit":"hidden"}_isVisible(){return this._visible}_hideElement(){this._setVisibility(!1)}_showElement(){this._setVisibility(!0)}reLayout(){let e,i;t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),this._mutationIds.read=t.mutationService.measure(()=>{let t=r.measure(this._id,this);e=t.measures,i=t.domNodes}),this._mutationIds.write=t.mutationService.mutate(()=>{r.patch(this._id,e,i),this._showElement()})}constructor(...e){super(...e),R(this,"_visible",!1),R(this,"_mutationIds",{read:null,write:null}),R(this,"_itemsContainer",null),R(this,"_dropContainer",null),R(this,"_labelItems",[])}}}(L(e),{resizeService:t,mutationService:n()},e);e.customElements.define(M,i)}},S="wix-iframe",G=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(S)){var t;let i=(t=L(e),class extends t{reLayout(){let e=this.querySelector("iframe");if(e){let t=e.dataset.src;t&&e.src!==t&&(e.src=t,e.dataset.src="",this.dataset.src="")}}attributeChangedCallback(e,t,i){i&&this.reLayout()}static get observedAttributes(){return["data-src"]}constructor(){super()}});E(e,S,i)}},P={measure(e,t,{hasBgScrollEffect:i,videoWidth:r,videoHeight:n,fittingType:a,alignType:o="center",qualities:s,staticVideoUrl:l,videoId:h,videoFormat:c,focalPoint:m}){var g,p,f,_,b,I,E,w,L,v;let A,O,y,C=i?t.offsetWidth:e.parentElement.offsetWidth,R=e.parentElement.offsetHeight,M=parseInt(r,10),x=parseInt(n,10),S=(g=a,p={wScale:C/M,hScale:R/x},f=M,_=x,{width:Math.round(f*(A=g===u.fittingTypes.SCALE_TO_FIT?Math.min(p.wScale,p.hScale):Math.max(p.wScale,p.hScale))),height:Math.round(_*A)}),G=(b=function(e,{width:t,height:i}){var r;return(r=e=>e.size,Object.values(e.reduce((e,t)=>(e[r(t)]=t,e),{}))).find(e=>e.size>t*i)||e[e.length-1]}(s,S),I=l,E=h,"mp4"===(w=c)?b.url?d(I,b.url):d(I,E,b.quality,w,"file.mp4"):""),P=(L=e,v=G,O=L.networkState===L.NETWORK_NO_SOURCE,y=!L.currentSrc.endsWith(v),v&&(y||O)),N=T[a]||"cover",F=m?function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(S,{width:C,height:R},m):"",k=o.replace("_"," ");return{videoSourceUrl:G,needsSrcUpdate:P,videoStyle:{height:"100%",width:"100%",objectFit:N,objectPosition:F||k}}},mutate(e,t,i,r,n,a,o,s,l,h,c){var d,u,m;if(n?i.setAttribute("autoplay",""):i.removeAttribute("autoplay"),t){let{width:e,height:i,...n}=r;p(t,n)}else(function(e,t,i,r,n,a){a&&t.paused&&(i.style.opacity="1",t.style.opacity="0");let o=t.paused||""===t.currentSrc;if((e||a)&&o)if(t.ontimeupdate=null,t.onseeked=null,t.onplay=null,!a&&n){let e=t.muted;t.muted=!0,t.ontimeupdate=()=>{t.currentTime>0&&(t.ontimeupdate=null,t.onseeked=()=>{t.onseeked=null,t.muted=e,N(t,i,r)},t.currentTime=0)}}else t.onplay=()=>{a||(t.onplay=null),N(t,i,r)}})(o,i,e,s,n,c),p(i,r);d=o,u=i,m=a,d&&(u.src=m,u.load()),i.playbackRate=h}};function N(e,t,i){"fade"===i&&(t.style.transition="opacity 1.6s ease-out"),t.style.opacity="0",e.style.opacity="1"}let F="wix-video",k=(e=globalThis.window,t,i={experiments:{}})=>{if(e&&void 0===e.customElements.get(F)){var r,n;let a=L(e),o=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"50% 100%"});E(e,F,(r=a,n={...t,intersectionObserver:o},class extends r{connectedCallback(){i.disableImagesLazyLoading?this.reLayout():n.intersectionObserver.observe(this)}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}unobserveIntersect(){n.intersectionObserver?.unobserve(this)}reLayout(){let{isVideoDataExists:e,videoWidth:t,videoHeight:r,qualities:a,videoId:o,videoFormat:s,alignType:l,fittingType:h,focalPoint:c,hasBgScrollEffect:d,autoPlay:u,animatePoster:m,containerId:g,isEditorMode:p,playbackRate:f,hasAlpha:_}=JSON.parse(this.dataset.videoInfo);if(!e)return;let b=!i.prefersReducedMotion&&u,T=this.querySelector(`video[id^="${g}"]`),E=this.querySelector(`.bgVideoposter[id^="${g}"]`);if(this.unobserveChildren(),!(T&&E))return void this.observeChildren(this);let w=(0,I.qc)(g,{document:this.getRootNode(),experiments:i.experiments,logger:i.logger}),L=(0,I.iT)(`.webglcanvas[id^="${g}"]`,{element:w,experiments:i.experiments,logger:i.logger});(_||"true"===w.dataset.hasAlpha)&&!L?requestAnimationFrame(()=>this.reLayout()):n.mutationService.measure(()=>{let{videoSourceUrl:e,needsSrcUpdate:u,videoStyle:g}=P.measure(T,w,{hasBgScrollEffect:d,videoWidth:t,videoHeight:r,fittingType:h,alignType:l,qualities:a,staticVideoUrl:i.staticVideoUrl,videoId:o,videoFormat:s,focalPoint:c});n.mutationService.mutate(()=>{P.mutate(E,L,T,g,b,e,u,m,s,f,p)})})}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-video-info"]}constructor(){super()}}))}}},46418(e,t,i){var r=i(17709),n=i.n(r),a=i(33842),o=i(26350),s=i(16858);let l=o,h=function(e,t=window){!function(e){if(void 0===e.Reflect||void 0===e.customElements||e.customElements.hasOwnProperty("polyfillWrapFlushCallback"))return;let t=e.HTMLElement;e.HTMLElement=function(){return e.Reflect.construct(t,[],this.constructor)},e.HTMLElement.prototype=t.prototype,e.HTMLElement.prototype.constructor=e.HTMLElement,e.Object.setPrototypeOf(e.HTMLElement,t),e.Object.defineProperty(e.HTMLElement,"name",{value:t.name})}(t);let i={registry:new Set,observe(e){i.registry.add(e)},unobserve(e){i.registry.delete(e)}};e.windowResizeService.init((0,s.vk)(()=>i.registry.forEach(e=>e.reLayout())),t);let r=(0,s.Aq)(),n=(e,i)=>{void 0===t.customElements.get(e)&&t.customElements.define(e,i)},a=(0,s.yO)({resizeService:r},t);return t.customElementNamespace={WixElement:a},n("wix-element",a),{contextWindow:t,defineWixBgMedia:e=>{n("wix-bg-media",(0,s.NL)(a,{windowResizeService:i,...e},t))},defineMultiColumnRepeaterElement:()=>{let e=(0,s._o)();n(s.KU,e)}}};var c=i(91534),d=i(76526);let u=()=>({getSiteScale:()=>{let e=document.querySelector("#site-root");return e?e.getBoundingClientRect().width/e.offsetWidth:1}}),m=(e,t,i,r)=>{let{getMediaDimensions:n,...o}=a[e]||{};return n?{...n(t,i,r),...o}:{width:t,height:i,...o}},{experiments:g,media:p,requestUrl:f,site:_}=window.viewerModel,b=(0,d.isExperimentOpen)(g,"specs.thunderbolt.customImageDomain");((e,t,i,r)=>{var a,o,s;let g,p,f,_,b,T,{environmentConsts:I,wixCustomElements:E,media:w,requestUrl:L,mediaServices:v}=(a=void 0,o=void 0,s=void 0,p={"specs.thunderbolt.useClassSelectorsForLookup":(g=t=>(0,d.isExperimentOpen)(e.experiments,t))("specs.thunderbolt.useClassSelectorsForLookup"),"specs.thunderbolt.addIdAsClassName":g("specs.thunderbolt.addIdAsClassName")},f={staticMediaUrl:e.media.staticMediaUrl,mediaRootUrl:e.media.mediaRootUrl,externalBaseUrl:e.externalBaseUrl??"",userDomainMediaPrefixes:e.userDomainMediaPrefixes??[],experiments:p,isViewerMode:!0,devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,...s},b={getMediaDimensionsByEffect:m,..._={mutationService:n(),isExperimentOpen:g,siteService:u()},...o},{...e,wixCustomElements:a||(T=u(),h({resizeService:{init:e=>new ResizeObserver(e)},windowResizeService:{init:e=>window.addEventListener("resize",e)},siteService:T})),services:_,environmentConsts:f,mediaServices:b}),A=E?.contextWindow||window;A.wixCustomElements=E,Object.assign(A.customElementNamespace,{mediaServices:v,environmentConsts:I,requestUrl:L,staticVideoUrl:w.staticVideoUrl}),(0,c.g)({...v},E.contextWindow,I),E.defineWixBgMedia(v),E.defineMultiColumnRepeaterElement(),window.__imageClientApi__=l})({experiments:g,media:p,requestUrl:f,externalBaseUrl:_?.externalBaseUrl,userDomainMediaPrefixes:b?p?.userDomainMediaPrefixes:void 0})},13176(e,t,i){i.d(t,{z:()=>r});let r=["MENU_AS_CONTAINER_TOGGLE","MENU_AS_CONTAINER_EXPANDABLE_MENU","BACK_TO_TOP_BUTTON","SCROLL_TO_","TPAMultiSection_","TPASection_","comp-","TINY_MENU","MENU_AS_CONTAINER","SITE_HEADER","SITE_FOOTER","SITE_PAGES","PAGES_CONTAINER","BACKGROUND_GROUP","POPUPS_ROOT"]},69654(e,t,i){i.d(t,{C5:()=>c,Xx:()=>d,ZH:()=>h,hW:()=>g,iT:()=>u,kp:()=>p,qc:()=>l,vP:()=>m});var r=i(13176);function n(e,t){return["true","new","b","enabled"].includes(`${e?.[t]}`.toLowerCase())}function a(e={}){let t=e?.experiments;if(!t&&"undefined"!=typeof window)try{let e=window;t=e.viewerModel?.experiments}catch{}if(!t)return!1;let i=n(t,"specs.thunderbolt.useClassSelectorsForLookup"),r=n(t,"specs.thunderbolt.addIdAsClassName");return!!(i&&r)}function o(e={}){return e.document||("undefined"!=typeof document?document:null)}function s(e,t,i){e&&"function"==typeof e.meter&&e.meter("dom_selector_id_fallback",{customParams:{compId:t,selectorType:i}}),"undefined"!=typeof console&&console.warn&&console.warn(`[DOM Selectors] Fallback to ID for '${t}' (${i}).`)}function l(e,t={}){let i=o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=i.querySelector(`.${e}`);if(t)return t}let n=i.getElementById(e);return n&&r&&s(t?.logger,e,"getElementById"),n}function h(e,t={}){if(!e)return"";if(!a(t))return e.id;let i=Array.from(e.classList||[]),o=n(t.experiments,"specs.thunderbolt.preserveWixSelectClass");if(t.isEditor&&o&&!i.includes("wix-select"))return"";if(t.componentIds?.size){for(let e of i.filter(e=>e.includes("__"))){let i=e.indexOf("__"),r=e.substring(0,i);if(t.componentIds.has(r))return e}for(let e of i)if(t.componentIds.has(e))return e}let l=t.prefixes??r.z,c=null;for(let e of i)if(l.some(t=>e.startsWith(t))){if(e.includes("__"))return e;(!c||e.length<c.length)&&(c=e)}return c||(e.id&&s(t.logger,e.id,"getElementCompId"),e.id||"")}function c(e){return e.replace(/#([a-zA-Z0-9_-]+)/g,".$1").replace(/\[id="([^"]+)"\]/g,'[class~="$1"]').replace(/\[id\^="([^"]+)"\]/g,':is([class^="$1"],[class*=" $1"])').replace(/\[id\*="([^"]+)"\]/g,'[class*="$1"]').replace(/\[id\$="([^"]+)"\]/g,'[class$="$1"]')}function d(e,t,i=!1){if(!t)return e;let r=c(e);return`:is(${r}${i?".wix-select":""}, ${e})`}function u(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=c(e),r=i.querySelector(t);if(r)return r}let n=i.querySelector(e);return n&&r&&s(t.logger,e,"querySelector"),n}function m(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return[];let r=a(t);if(r){let t=c(e),r=Array.from(i.querySelectorAll(t));if(r.length>0)return r}let n=Array.from(i.querySelectorAll(e));return n.length>0&&r&&s(t.logger,e,"querySelectorAll"),n}function g(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=e.closest(`.${t}`);if(i)return i}let n=e.closest(`#${t}`);return n&&r&&s(i.logger,t,"getClosestByCompId"),n}function p(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=c(t),r=e.closest(i);if(r)return r}let n=e.closest(t);return n&&r&&s(i.logger,t,"closest"),n}}}]); | |
| 2442 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js.map</script> | |
| 2443 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6901"],{33842(e,t,i){i.r(t),i.d(t,{BackgroundParallax:()=>n,BackgroundParallaxZoom:()=>o,BackgroundReveal:()=>l,BgCloseUp:()=>d,BgExpand:()=>c,BgFabeBack:()=>h,BgFadeIn:()=>u,BgFadeOut:()=>g,BgFake3D:()=>m,BgPanLeft:()=>f,BgPanRight:()=>b,BgParallax:()=>p,BgPullBack:()=>v,BgReveal:()=>w,BgRotate:()=>M,BgShrink:()=>y,BgSkew:()=>I,BgUnwind:()=>x,BgZoomIn:()=>L,BgZoomOut:()=>D,ImageParallax:()=>O,ImageReveal:()=>P});var r=i(16956);let a=(e,t)=>({width:e,height:t}),s=(e,t,i)=>({width:e,height:Math.max(t,i)}),n={hasParallax:!0,getMediaDimensions:s},o={hasParallax:!0,getMediaDimensions:s},l={hasParallax:!0,getMediaDimensions:s},d={getMediaDimensions:a},c={getMediaDimensions:a},h={getMediaDimensions:a},u={getMediaDimensions:a},g={getMediaDimensions:a},m={hasParallax:!0,getMediaDimensions:s},f={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},b={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},p={hasParallax:!0,getMediaDimensions:s},v={getMediaDimensions:a},w={hasParallax:!0,getMediaDimensions:s},M={getMediaDimensions:(e,t)=>{let i,a,s,n,o;return i=(0,r.kU)(22),a=Math.hypot(e,t)/2,s=Math.acos(e/2/a),n=e*Math.abs(Math.cos(i))+t*Math.abs(Math.sin(i)),o=e*Math.abs(Math.sin(i))+t*Math.abs(Math.cos(i)),{width:Math.ceil(i<s?n:2*a),height:Math.ceil(i<(0,r.kU)(90)-s?o:2*a)}}},y={getMediaDimensions:a},I={getMediaDimensions:(e,t)=>({width:e,height:e*Math.tan((0,r.kU)(20))+t})},x={getMediaDimensions:a},L={hasParallax:!0,getMediaDimensions:s},D={getMediaDimensions:(e,t)=>({width:1.15*e,height:1.15*t})},O={getMediaDimensions:(e,t)=>({width:e,height:1.5*t})},P={getMediaDimensions:(e,t,i)=>({width:e,height:i})}},16956(e,t,i){function r(e,t,i,r,a){return(a-e)*(r-i)/(t-e)+i}function a(e,t){let[i,r]=e,[a,s]=t;return Math.sqrt((a-i)**2+(s-r)**2)}function s(e){return e*Math.PI/180}function n(e,t,i){return void 0===e&&(e=[0,0]),void 0===t&&(t=[0,0]),void 0===i&&(i=0),(360+i+180*Math.atan2(t[1]-e[1],t[0]-e[0])/Math.PI)%360}i.d(t,{Io:()=>a,Rb:()=>n,_b:()=>r,kU:()=>s})},91534(e,t,i){i.d(t,{g:()=>b});var r=i(26350);let a={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},s=(e,t)=>(Array.isArray(t)?t:[t]).reduce((t,i)=>{let r=e[i];return void 0!==r?Object.assign(t,{[i]:r}):t},{}),n=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||a[i]?r.toString():`${r}px`;else e.style.removeProperty(i)}),o=e=>e.endsWith("/")?e:`${e}/`,l=(e,t,i)=>{if(!e.targetWidth||!e.targetHeight||!e.imageData.uri)return{uri:"",css:{},transformed:!1};let{imageData:a}=e,n=e.displayMode||r.fittingTypes.SCALE_TO_FILL,l=Object.assign(s(a,["upscaleMethod"]),s(e,["filters","encoding","allowFullGIFTransformation","allowWebpAvifTransforms"]),e.quality||a.quality,{hasAnimation:e?.hasAnimation||a?.hasAnimation}),h=c(e.imageData.devicePixelRatio||t.devicePixelRatio),u=Object.assign(s(a,["width","height","crop","name","focalPoint"]),{id:a.uri}),g={width:e.targetWidth,height:e.targetHeight,htmlTag:i||"img",pixelAspectRatio:h,alignment:e.alignType||r.alignTypes.CENTER},m=(0,r.getData)(n,u,g,l),f=a.userDomainMediaURL?a.userDomainMediaURL:(({uri:e,envConsts:t})=>{let{externalBaseUrl:i,userDomainMediaPrefixes:r=[],staticMediaUrl:a}=t;return r.some(t=>e.startsWith(`${t}_`))&&i?`${o(i)}_media/`:o(a)})({uri:a.uri,envConsts:t});return m.uri=d(m.uri,f,t.mediaRootUrl),m},d=(e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=o(t);return e&&(/^micons\//.test(e)?r=o(i):/[^.]+$/.exec(e)?.[0]==="ico"&&(r=r.replace("media","ficons"))),r+e},c=e=>{let t=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0]?.toLowerCase().includes("devicepixelratio"));return(t?.[1]?Number(t[1]):null)||e||1},h=function(e,t,i,{containerElm:r,bgEffect:a="none",sourceSets:s},n){var o,l;let d,c=i.image,h=i[e],u=n.getScreenHeightOverride?.()||document.documentElement.clientHeight||window.innerHeight||0,g=r?.dataset.mediaHeightOverrideType,m=a&&"none"!==a||s&&s.some(e=>e.scrollEffect),f=r&&m?r:h,b=window.getComputedStyle(h).getPropertyValue("--bg-scrub-effect"),{width:p,height:v}=n.getMediaDimensionsByEffect?.(b||a,f.offsetWidth,f.offsetHeight,u)||{width:h.offsetWidth,height:h.offsetHeight};if(s&&(o=f.offsetWidth,l=f.offsetHeight,d={},s.forEach(({mediaQuery:e,scrollEffect:t})=>{d[e]=n.getMediaDimensionsByEffect?.(t,o,l,u).height||l}),t.sourceSetsTargetHeights=d),!c)return;let w=c.getAttribute("src");b&&(t.top=.5*(h.offsetHeight-v),t.left=.5*(h.offsetWidth-p)),t.width=p,t.height="fixed"===g||"viewport"===g?document.documentElement.clientHeight+80:v,t.screenHeight=u,t.imgSrc=w,t.boundingRect=h.getBoundingClientRect(),t.mediaHeightOverrideType=g,t.srcset=c.srcset},u=function(e,t,i,a,s,o,d,c,h,u){if(!Object.keys(t).length)return;let{imageData:g}=a,m=i[e],f=i.image;h&&(g.devicePixelRatio=1);let b=a.targetScale||1,p=s.isExperimentOpen?.("specs.thunderbolt.allowFullGIFTransformation"),v=s.isExperimentOpen?.("specs.thunderbolt.allowWebpAvifTransforms"),w={...a,...!a.skipMeasure&&{targetWidth:(t.width||0)*b,targetHeight:(t.height||0)*b},displayMode:g.displayMode,allowFullGIFTransformation:p,allowWebpAvifTransforms:v},M=l(w,o,"img"),y=M?.css?.img||{};n(f,function(e,t,i,r,a){let s=function(e,t=1){return 1!==t?{...e,width:"100%",height:"100%"}:e}(t,r);if(a&&(delete s.height,s.width="100%"),!e)return s;let n={...s};return"fill"===i?(n.position="absolute",n.top="0"):"fit"===i&&(n.height="100%"),"fixed"===e&&(n["will-change"]="transform"),n.objectPosition&&(n.objectPosition=t.objectPosition.replace(/(center|bottom)$/,"top")),n}(t.mediaHeightOverrideType,y,g.displayMode,b,c)),(t.top||t.left)&&n(m,{top:`${t.top}px`,left:`${t.left}px`});let I=M?.uri||"",x=g?.hasAnimation||a?.hasAnimation,L=function(e,t,i){let{sourceSets:r}=t;if(!r||!r.length)return;let a={};return r.forEach(({mediaQuery:r,crop:s,focalPoint:n})=>{let o=l({...t,targetHeight:(e.sourceSetsTargetHeights||{})[r]||0,imageData:{...t.imageData,crop:s,focalPoint:n}},i,"img");a[r]=o.uri||""}),a}(t,w,o);if(u&&(f.dataset.ssrSrcDone="true"),!a.isLQIP||!a.lqipTransition||"transitioned"in m.dataset||(m.dataset.transitioned="",f.complete?f.onload=function(){f.dataset.loadDone=""}:f.onload=function(){f.complete?f.dataset.loadDone="":f.onload=function(){f.dataset.loadDone=""}}),d){let e;(e=g.uri,(0,r.getFileExtension)(e)===r.fileType.GIF||(0,r.getFileExtension)(e)===r.fileType.WEBP&&x)?(f.setAttribute("fetchpriority","low"),f.setAttribute("loading","lazy"),f.setAttribute("decoding","async")):f.setAttribute("fetchpriority","high"),f.currentSrc!==I&&f.setAttribute("src",I),t.srcset&&!t.srcset.split(", ").some(e=>e.split(" ")[0]===I)&&f.setAttribute("srcset",I),i.picture&&w.sourceSets&&Array.from(i.picture.querySelectorAll("source")).forEach(e=>{let t=e.media||"",i=L?.[t];e.srcset!==i&&e.setAttribute("srcset",i||"")})}},g={parallax:"ImageParallax",fixed:"ImageReveal"};var m=i(17709),f=i.n(m);function b(e={},t=null,i={}){if("undefined"==typeof window)return;let a={staticMediaUrl:r.STATIC_MEDIA_URL,mediaRootUrl:r.MEDIA_ROOT_URL,experiments:{},devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,disableImagesLazyLoading:(()=>{try{return"true"===new URL(window.location.href).searchParams.get("disableLazyLoading")}catch{return!1}})(),...i},s=function(e,t){let i="wow-image";if(void 0===(e=e||window).customElements.get(i)){let r,a;return e.ResizeObserver&&(r=new e.ResizeObserver(e=>e.map(e=>e.target.reLayout()))),e.IntersectionObserver&&(a=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"150% 100%"})),function(s){var n,o;let l=(n={resizeService:r,intersectionService:a,mutationService:f(),...t},o=e,class extends o.HTMLElement{constructor(){super(),this.childListObserver=null,this.timeoutId=null}attributeChangedCallback(e,t){t&&this.reLayout()}connectedCallback(){s.disableImagesLazyLoading?this.reLayout():this.observeIntersect()}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}static get observedAttributes(){return["data-image-info"]}reLayout(){let e={},t={},i=this.getAttribute("id"),r=JSON.parse(this.dataset.imageInfo||""),a="true"===this.dataset.isResponsive,{bgEffectName:l}=this.dataset,{scrollEffect:d}=r.imageData,{sourceSets:c}=r,m=l||d&&g[d];c&&c.length&&c.forEach(e=>{e.scrollEffect&&(e.scrollEffect=g[e.scrollEffect])}),e[i]=this,r.containerId&&(e[r.containerId]=o.document.getElementById(`${r.containerId}`));let f=r.containerId?e[r.containerId]:void 0;if(e.image=this.querySelector("img"),e.picture=this.querySelector("picture"),!e.image)return void this.observeChildren(this);this.unobserveChildren(),this.observeChildren(this),n.mutationService.measure(()=>{h(i,t,e,{containerElm:f,bgEffect:m,sourceSets:c},n)});let b=(o,l)=>{n.mutationService.mutate(()=>{u(i,t,e,r,n,s,o,a,m,l)})},p=e.image,v=this.dataset.hasSsrSrc&&!p.dataset.ssrSrcDone;!p.getAttribute("src")||v?b(!0,!0):this.debounceImageLoad(b)}debounceImageLoad(e){clearTimeout(this.timeoutId),this.timeoutId=o.setTimeout(()=>{e(!0)},250),e(!1)}observeResize(){n.resizeService?.observe(this)}unobserveResize(){n.resizeService?.unobserve(this)}observeIntersect(){n.intersectionService?.observe(this)}unobserveIntersect(){n.intersectionService?.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new o.MutationObserver(()=>{this.reLayout()})),this.childListObserver.observe(e,{childList:!0})}unobserveChildren(){this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null)}});e.customElements.define(i,l)}}}(t,e);s&&s(a)}},76526(e,t,i){i.d(t,{isExperimentOpen:()=>s});var r=i(7073);let a=[],s=(e,t)=>a.includes(t)||(0,r.kg)(e,t)},7073(e,t,i){i.d(t,{kg:()=>a});var r=["true","b","c","new","enabled"];function a(e,t){let i=e[t];return!0===i||"string"==typeof i&&r.includes(i.toLowerCase())}}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=46418)}),e.O()}]); | |
| 2444 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js.map</script> | |
| 2445 | + | |
| 2446 | + | |
| 2447 | +<!-- preloading pre-scripts --> | |
| 2448 | + | |
| 2449 | + | |
| 2450 | + <link href="https://siteassets.parastorage.com/pages/pages/thunderbolt?appDefinitionIdToSiteRevision=%7B%2227fcc256-f3f8-47df-a66a-8f8176cc7f99%22%3A%2245%22%2C%22a5dd7ce8-07c2-4251-8d58-9657c1a43163%22%3A%22219%22%2C%2214271d6f-ba62-d045-549b-ab972ae1f70e%22%3A%2225%22%2C%2214bcded7-0066-7c35-14d7-466cb3f09103%22%3A%221335%22%2C%227479d596-137c-4fa3-89cd-d7091042ba61%22%3A%22132%22%2C%2275d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3%22%3A%22305%22%2C%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%3A%226855%22%2C%22b976560c-3122-4351-878f-453f337b7245%22%3A%221358%22%2C%2213d21c63-b5ec-5912-8397-c3a5ddb27a97%22%3A%22440%22%7D&appDefinitionIdsWithCustomCss=%5B%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%5D&beckyExperiments=.DatePickerPortal%2C.DisableDocumentScrollWhenLightBoxOpen%2C.EnableCustomCSSVarsForLoginSocialBar%2C.FreemiumBannerOdeditor%2C.LoginBarEnableLoggingInStateInSSR%2C.TextInputAutoFillFix%2C.UseLoginSocialBarCustomMenu%2C.UseNestedLoginSocialBarMenuItems%2C.UseNewLoginBarDropdownMenuAlignment%2C.UseNewLoginSocialBarElementStructure%2C.UseNewLoginSocialBarMemberInitialsAvatar%2C.WixFreeSiteBannerDesktop%2C.WixFreeSiteBannerMobile%2C.a11yContrast%2C.addIdAsClassName%2C.allowWebpAvifTransforms%2C.builderBoxSizingBorderBox%2C.buttonUdp%2C.calculateCollapsibleTextLineHeightByFont%2C.dom_store%2C.dontApplyDacOverridesOnBoBApps%2C.dynamicPageLinkTarget%2C.dynamicSlots%2C.fiveGridLineStudioSkins%2C.fixFirefoxLinkBarIntrinsicSizing%2C.fixRemappedFullNameCompType%2C.imageEncodingAVIF%2C.isClassNameToRootEnabled%2C.motionTimeAnimationsCSS%2C.plainClassSelectors%2C.responsiveContainerRoleGroup%2C.sectionA11yProps%2C.shouldIgnoreWidgetsPageData%2C.shouldUseResponsiveImages%2C.splitSlotSelectors%2C.svgResolver_2%2C.updateRichTextSemanticClassNamesOnCorvid%2C.useClassnameInResponsiveAppWidget%2C.useFragmentHrefForTopBottomAnchor%2C.useImageAvifFormatInNativeProGallery%2C.useResponsiveImgClassicFixed%2C.useSvgLoaderFeature%2C.useSvgLoaderFeatureOnBuilderComps%2C.useWowImageInFastGallery&blocksBuilderManifestGeneratorVersion=1.129.0&commonConfig=%7B%22siteRevision%22%3A%224%22%2C%22branchId%22%3A%22f815f8fb-8f6e-40d3-b375-054107669a53%22%7D&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.5507.0&disableStaticPagesUrlHierarchy=false&editorName=Studio&experiments=dm_bgScrubToMotionFixer%2Cdm_masterPageVariablesQueryFixer%2Cdm_migrateOldHoverBoxToNewFixer&externalBaseUrl=https%3A%2F%2Fwww.leshabitationssf.com&fileId=d1e4c663.bundle.min&formFactor=desktop&hasTPAWorkerOnSite=false&hasUserDomainMedia=false&isBuilderComponentModel=false&isClientSdkOnSite=true&isHttps=true&isInSeo=false&isMultilingualEnabled=true&isPremiumDomain=true&isResponsive=true&isTrackClicksAnalyticsEnabled=false&isUrlMigrated=true&isWixCodeOnPage=false&isWixCodeOnSite=true&language=fr&languageResolutionMethod=QueryParam&metaSiteId=39b9882f-9e71-4f93-bb6d-a87166c85cda&module=thunderbolt-features&originalLanguage=fr&pageId=5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json&pilerExperiments=specs.piler.useEditorReactComponents&quickActionsMenuEnabled=false®istryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22wixui%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%2C%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22dsgnsys%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%5D&remoteWidgetStructureBuilderVersion=1.251.0&siteId=452071c1-a99b-44c2-b686-dd15b11264a3&siteRevision=4&staticHTMLComponentUrl=https%3A%2F%2Fwww-leshabitationssf-com.filesusr.com%2F&useSandboxInHTMLComp=false&viewMode=desktop" id="features_masterPage" as="fetch" position="post-scripts" rel="prefetch" crossorigin="anonymous"></link> | |
| 2451 | + | |
| 2452 | + | |
| 2453 | + | |
| 2454 | + | |
| 2455 | + | |
| 2456 | + <!-- sentryOnLoad Setup Script --> | |
| 2457 | + <script id="sentryOnLoadSetup"> | |
| 2458 | + function _extends(){_extends=Object.assign||function(target){for(var i=1;i<arguments.length;i++){var source=arguments[i];for(var key in source){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key]}}}return target};return _extends.apply(this,arguments)}(function(){var SENTRY_REROUTED_MARK_KEY="_REROUTED";var SENTRY_IS_NON_WIX_TPA_MARK_KEY="_isTPA";var SENTRY_REROUTE_DATA_KEY="_ROUTE_TO";var addRerouteDataToSentryEvent=function(event){var _event_extra,_event_exception_values__stacktrace,_event_exception_values,_event_exception;if(event==null?void 0:(_event_extra=event.extra)==null?void 0:_event_extra[SENTRY_REROUTE_DATA_KEY]){return}if(event==null?void 0:(_event_exception=event.exception)==null?void 0:(_event_exception_values=_event_exception.values)==null?void 0:(_event_exception_values__stacktrace=_event_exception_values[0].stacktrace)==null?void 0:_event_exception_values__stacktrace.frames){var frames=event.exception.values[0].stacktrace.frames;var framesModuleMetadata=frames.filter(function(frame){return frame.module_metadata&&frame.module_metadata.appId}).map(function(v){return{appId:v.module_metadata.appId,release:v.module_metadata.release,dsn:v.module_metadata.dsn}});var routeTo=framesModuleMetadata.slice(-1);if(routeTo.length){var _window_wixEmbedsAPI,_app_monitoringComponent_monitoring,_app_monitoringComponent;var appId=routeTo[0].appId;var app=(_window_wixEmbedsAPI=window.wixEmbedsAPI)==null?void 0:_window_wixEmbedsAPI.getMonitoringConfig(appId);if((app==null?void 0:(_app_monitoringComponent=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring=_app_monitoringComponent.monitoring)==null?void 0:_app_monitoringComponent_monitoring.type)==="SENTRY"){var _app_monitoringComponent_monitoring_sentryOptions,_app_monitoringComponent_monitoring1,_app_monitoringComponent1;var dsn=app==null?void 0:(_app_monitoringComponent1=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring1=_app_monitoringComponent1.monitoring)==null?void 0:(_app_monitoringComponent_monitoring_sentryOptions=_app_monitoringComponent_monitoring1.sentryOptions)==null?void 0:_app_monitoringComponent_monitoring_sentryOptions.dsn;if(dsn){if(!routeTo[0].dsn&&dsn){routeTo[0].dsn=dsn}}}if(app){var _obj;event.extra=_extends({},event.extra,(_obj={},_obj[SENTRY_IS_NON_WIX_TPA_MARK_KEY]=!app.isWixTPA,_obj))}var _obj1;event.extra=_extends({},event.extra,(_obj1={},_obj1[SENTRY_REROUTE_DATA_KEY]=routeTo,_obj1[SENTRY_REROUTED_MARK_KEY]=true,_obj1))}}};function overrideSentryInitOptions(){var Sentry=window.Sentry;var makeMultiplexedTransport=Sentry.makeMultiplexedTransport,makeFetchTransport=Sentry.makeFetchTransport;var transport=makeMultiplexedTransport?makeMultiplexedTransport(makeFetchTransport,function(args){var event=args.getEvent();if(event&&event.extra&&event.extra[SENTRY_REROUTE_DATA_KEY]&&Array.isArray(event.extra[SENTRY_REROUTE_DATA_KEY])){return event.extra[SENTRY_REROUTE_DATA_KEY]}return[]}):makeFetchTransport;Sentry.init({transport:transport,integrations:[Sentry.browserTracingIntegration({instrumentNavigation:false,instrumentPageLoad:false})],tracePropagationTargets:[/^https:\/\/[a-zA-Z0-9-]+\.wix-app\.run\/.*/],attachStacktrace:true,beforeSend:function(event,hint){var customEvent=new CustomEvent("sentry-error",{cancelable:true,detail:{sentryEvent:event,sentryHint:hint}});var dispatchEventRes=window.dispatchEvent(customEvent);if(!dispatchEventRes){return null}if(event.extra){if(event.extra[SENTRY_REROUTED_MARK_KEY]){delete event.extra[SENTRY_REROUTED_MARK_KEY]}if(event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]){delete event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]}}return event}});if(Sentry.moduleMetadataIntegration){Sentry.addIntegration(Sentry.moduleMetadataIntegration());Sentry.addGlobalEventProcessor(function(event){addRerouteDataToSentryEvent(event);return event})}}window.sentryOnLoad=overrideSentryInitOptions})(); | |
| 2459 | + </script> | |
| 2460 | + <!-- Sentry Loader Script --> | |
| 2461 | + <script id="sentry"> | |
| 2462 | + !function(n,e,r,t,o,i,a,c,s){for(var u=s,f=0;f<document.scripts.length;f++)if(document.scripts[f].src.indexOf(i)>-1){u&&"no"===document.scripts[f].getAttribute("data-lazy")&&(u=!1);break}var p=[];function l(n){return"e"in n}function d(n){return"p"in n}function _(n){return"f"in n}var v=[];function y(n){u&&(l(n)||d(n)||_(n)&&n.f.indexOf("capture")>-1||_(n)&&n.f.indexOf("showReportDialog")>-1)&&L(),v.push(n)}function h(){y({e:[].slice.call(arguments)})}function g(n){y({p:n})}function E(){try{n.SENTRY_SDK_SOURCE="loader";var e=n[o],i=e.init;e.init=function(o){n.removeEventListener(r,h),n.removeEventListener(t,g);var a=c;for(var s in o)Object.prototype.hasOwnProperty.call(o,s)&&(a[s]=o[s]);!function(n,e){var r=n.integrations||[];if(!Array.isArray(r))return;var t=r.map((function(n){return n.name}));n.tracesSampleRate&&-1===t.indexOf("BrowserTracing")&&(e.browserTracingIntegration?r.push(e.browserTracingIntegration({enableInp:!0})):e.BrowserTracing&&r.push(new e.BrowserTracing));(n.replaysSessionSampleRate||n.replaysOnErrorSampleRate)&&-1===t.indexOf("Replay")&&(e.replayIntegration?r.push(e.replayIntegration()):e.Replay&&r.push(new e.Replay));n.integrations=r}(a,e),i(a)},setTimeout((function(){return function(e){try{"function"==typeof n.sentryOnLoad&&(n.sentryOnLoad(),n.sentryOnLoad=void 0)}catch(n){console.error("Error while calling `sentryOnLoad` handler:"),console.error(n)}try{for(var r=0;r<p.length;r++)"function"==typeof p[r]&&p[r]();p.splice(0);for(r=0;r<v.length;r++){_(i=v[r])&&"init"===i.f&&e.init.apply(e,i.a)}m()||e.init();var t=n.onerror,o=n.onunhandledrejection;for(r=0;r<v.length;r++){var i;if(_(i=v[r])){if("init"===i.f)continue;e[i.f].apply(e,i.a)}else l(i)&&t?t.apply(n,i.e):d(i)&&o&&o.apply(n,[i.p])}}catch(n){console.error(n)}}(e)}))}catch(n){console.error(n)}}var O=!1;function L(){if(!O){O=!0;var n=e.scripts[0],r=e.createElement("script");r.src=a,r.crossOrigin="anonymous",r.addEventListener("load",E,{once:!0,passive:!0}),n.parentNode.insertBefore(r,n)}}function m(){var e=n.__SENTRY__,r=void 0!==e&&e.version;return r?!!e[r]:!(void 0===e||!e.hub||!e.hub.getClient())}n[o]=n[o]||{},n[o].onLoad=function(n){m()?n():p.push(n)},n[o].forceLoad=function(){setTimeout((function(){L()}))},["init","addBreadcrumb","captureMessage","captureException","captureEvent","configureScope","withScope","showReportDialog"].forEach((function(e){n[o][e]=function(){y({f:e,a:arguments})}})),n.addEventListener(r,h),n.addEventListener(t,g),u||setTimeout((function(){L()}))}(window,document,"error","unhandledrejection","Sentry",'605a7baede844d278b89dc95ae0a9123','https://browser.sentry-cdn.com/7.120.3/bundle.tracing.es5.min.js',{"dsn":"https://605a7baede844d278b89dc95ae0a9123@sentry-next.wixpress.com/68","tracesSampleRate":1},true); | |
| 2463 | + </script> | |
| 2464 | + <!-- Sentry's makeMultiplexedTransport --> | |
| 2465 | + <script> | |
| 2466 | + !function(n){var r={},t=function(){return t=Object.assign||function(n){for(var r,t=1,e=arguments.length;t<e;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o]);return n},t.apply(this,arguments)};function e(n,r,t,e){return new(t||(t=Promise))((function(o,i){function u(n){try{f(e.next(n))}catch(n){i(n)}}function c(n){try{f(e.throw(n))}catch(n){i(n)}}function f(n){var r;n.done?o(n.value):(r=n.value,r instanceof t?r:new t((function(n){n(r)}))).then(u,c)}f((e=e.apply(n,r||[])).next())}))}function o(n,r){var t,e,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(c){return function(f){return function(c){if(t)throw new TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(u=0)),u;)try{if(t=1,e&&(o=2&c[0]?e.return:c[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,c[1])).done)return o;switch(e=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,e=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=r.call(n,u)}catch(n){c=[6,n],e=0}finally{t=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,f])}}}function i(n){var r="function"==typeof Symbol&&Symbol.iterator,t=r&&n[r],e=0;if(t)return t.call(n);if(n&&"number"==typeof n.length)return{next:function(){return n&&e>=n.length&&(n=void 0),{value:n&&n[e++],done:!n}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}function u(n,r){var t="function"==typeof Symbol&&n[Symbol.iterator];if(!t)return n;var e,o,i=t.call(n),u=[];try{for(;(void 0===r||r-- >0)&&!(e=i.next()).done;)u.push(e.value)}catch(n){o={error:n}}finally{try{e&&!e.done&&(t=i.return)&&t.call(i)}finally{if(o)throw o.error}}return u}function c(n){return n&&n.Math==Math?n:void 0}var f="object"==typeof globalThis&&c(globalThis)||"object"==typeof window&&c(window)||"object"==typeof self&&c(self)||"object"==typeof global&&c(global)||function(){return this}()||{},a={};var s=/^(?:(\w+):)\/\/(?:(\w+)(?::(\w+)?)?@)([\w.-]+)(?::(\d+))?\/(.+)/;function v(n){var r=s.exec(n);if(r){var t,e=u(r.slice(1),6),o=e[0],i=e[1],c=e[2],v=void 0===c?"":c,l=e[3],y=e[4],d=void 0===y?"":y,p="",h=e[5],b=h.split("/");if(b.length>1&&(p=b.slice(0,-1).join("/"),h=b.pop()),h){var w=h.match(/^\d+/);w&&(h=w[0])}return{protocol:(t={host:l,pass:v,path:p,projectId:h,port:d,protocol:o,publicKey:i}).protocol,publicKey:t.publicKey||"",pass:t.pass||"",host:t.host,port:t.port||"",path:t.path||"",projectId:t.projectId}}!function(n){if(!("console"in f))return n();var r=f.console,t={},e=Object.keys(a);e.forEach((function(n){var e=a[n];t[n]=r[n],r[n]=e}));try{n()}finally{e.forEach((function(n){r[n]=t[n]}))}}((function(){console.error("Invalid Sentry Dsn: ".concat(n))}))}function l(n,r){return e=t({sentry_key:n.publicKey,sentry_version:"7"},r&&{sentry_client:"".concat(r.name,"/").concat(r.version)}),Object.keys(e).map((function(n){return"".concat(encodeURIComponent(n),"=").concat(encodeURIComponent(e[n]))})).join("&");var e}function y(n,r){var t;return function(n,r){var t,e,o=n[1];try{for(var u=i(o),c=u.next();!c.done;c=u.next()){var f=c.value;if(r(f,f[0].type))return!0}}catch(n){t={error:n}}finally{try{c&&!c.done&&(e=u.return)&&e.call(u)}finally{if(t)throw t.error}}}(n,(function(n,e){return r.includes(e)&&(t=Array.isArray(n)?n[1]:void 0),!!t})),t}for(var d in r.makeMultiplexedTransport=function(n,r){return function(c){var f=n(c),a=new Map;function s(r,i){var u=i?"".concat(r,":").concat(i):r,f=a.get(u);if(!f){var s=v(r);if(!s)return;var d=function(n,r){void 0===r&&(r={});var t="string"==typeof r?r:r.tunnel,e="string"!=typeof r&&r.t?r.t.sdk:void 0;return t||"".concat(function(n){return"".concat(function(n){var r=n.protocol?"".concat(n.protocol,":"):"",t=n.port?":".concat(n.port):"";return"".concat(r,"//").concat(n.host).concat(t).concat(n.path?"/".concat(n.path):"","/api/")}(n)).concat(n.projectId,"/envelope/")}(n),"?").concat(l(n,e))}(s,c.tunnel);f=i?function(n,r){var i=this;return function(u){var c=n(u);return t(t({},c),{send:function(n){return e(i,void 0,void 0,(function(){var t;return o(this,(function(e){return(t=y(n,["event","transaction","profile","replay_event"]))&&(t.release=r),[2,c.send(n)]}))}))}})}}(n,i)(t(t({},c),{url:d})):n(t(t({},c),{url:d})),a.set(u,f)}return[r,f]}return{send:function(n){return e(this,void 0,void 0,(function(){function e(r){var t=r&&r.length?r:["event"];return y(n,t)}var i;return o(this,(function(o){switch(o.label){case 0:return 0===(i=r({envelope:n,getEvent:e}).map((function(n){return"string"==typeof n?s(n,void 0):s(n.dsn,n.release)})).filter((function(n){return!!n}))).length&&i.push(["",f]),[4,Promise.all(i.map((function(r){var e=u(r,2),o=e[0];return e[1].send(function(n,r){return e=r?t(t({},n[0]),{dsn:r}):n[0],void 0===(o=n[1])&&(o=[]),[e,o];var e,o}(n,o))})))];case 1:return[2,o.sent()[0]]}}))}))},flush:function(n){return e(this,void 0,void 0,(function(){var r,t,e,c,s,v,l,y,d,p;return o(this,(function(o){switch(o.label){case 0:return[4,f.flush(n)];case 1:r=[o.sent()],o.label=2;case 2:o.trys.push([2,7,8,9]),t=i(a),e=t.next(),o.label=3;case 3:return e.done?[3,6]:(c=u(e.value,2),s=c[1],l=(v=r).push,[4,s.flush(n)]);case 4:l.apply(v,[o.sent()]),o.label=5;case 5:return e=t.next(),[3,3];case 6:return[3,9];case 7:return y=o.sent(),d={error:y},[3,9];case 8:try{e&&!e.done&&(p=t.return)&&p.call(t)}finally{if(d)throw d.error}return[7];case 9:return[2,r.every((function(n){return n}))]}}))}))}}}},n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,d)&&(n.Sentry.Integrations[d]=r[d],n.Sentry[d]=r[d])}(window); | |
| 2467 | + </script> | |
| 2468 | + <!-- Sentry's moduleMetadataIntegration --> | |
| 2469 | + <script src="https://browser.sentry-cdn.com/7.120.3/modulemetadata.es5.min.js" crossorigin="anonymous" async></script> | |
| 2470 | + | |
| 2471 | + | |
| 2472 | +<script> | |
| 2473 | + window.resolveExternalsRegistryPromise = null | |
| 2474 | + const externalRegistryPromise = new Promise((r) => window.resolveExternalsRegistryPromise = r) | |
| 2475 | + window.resolveExternalsRegistryModule = (name) => externalRegistryPromise.then(() => window.externalsRegistry[name].onload()) | |
| 2476 | +</script> | |
| 2477 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["7101"],{78635(){window.__imageClientApi__=window.__imageClientApi__||{sdk:{}};let{lodash:e,react:o,reactDOM:n,imageClientApi:d,clientSdk:a}=window.externalsRegistry={lodash:{},react:{},reactDOM:{},imageClientApi:{},clientSdk:{}};d.loaded=new Promise(e=>{d.onload=e}),e.loaded=new Promise(o=>{e.onload=o}),a.loaded=new Promise(e=>{a.onload=e}),window.ReactDOM||(window.reactDOMReference=window.ReactDOM={loading:!0}),n.loaded=new Promise(e=>{n.onload=()=>{Object.assign(window.reactDOMReference||{},window.ReactDOM,{loading:!1}),e()}}),window.React||(window.reactReference=window.React={loading:!0}),o.loaded=new Promise(e=>{o.onload=()=>{Object.assign(window.reactReference||{},window.React,{loading:!1}),e()}}),window.reactAndReactDOMLoaded=Promise.all([o.loaded,n.loaded]),window.resolveExternalsRegistryPromise()}},function(e){e(e.s=78635)}]); | |
| 2478 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js.map</script> | |
| 2479 | + | |
| 2480 | +<!-- Add the rest of the ViewerModel --> | |
| 2481 | +<script type="application/json" id="wix-viewer-model">{"siteFeaturesConfigs":{"accessibilityBrowserZoom":{"isBuilder":false,"isStudio":true},"appMonitoring":{"appsWithMonitoring":[{"appId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"panoramaConfigByArtifactId":{"abandoned-carts-bm":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"externalIdByComponentId":{}},{"appId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"panoramaConfigByArtifactId":{"cms-compliance-dashboard-extensions":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"externalIdByComponentId":{}},{"appId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"panoramaConfigByArtifactId":{"site-search-builder":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"externalIdByComponentId":{"8244af1e-c249-4dd6-9308-e59e9d03556d":"site-search-builder"}}]},"assetsLoader":{"isStylableComponentInStructure":true,"hasBuilderComponents":false},"businessLoggerService":{},"businessLogger":{"isBuilderComponentModel":false},"clientSdk":{"appDefinitionIds":["27fcc256-f3f8-47df-a66a-8f8176cc7f99"]},"componentsRegistry":{"librariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}]},"consentPolicy":{"isWixSite":false,"isBuilderComponentModel":false},"cookiesManager":{"cookieSitePath":"\/","cookieSiteDomain":"www.leshabitationssf.com"},"customCss":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","appsWithCustomCss":{"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"gridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","filePath":"styles\/widget.css"}},"baseUrl":"https:\/\/www.leshabitationssf.com"},"cyclicTabbing":{"isBuilderComponentModel":false},"dataWixCodeSdk":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","environment":"LIVE","cloudDataUrlWithExternalBase":"https:\/\/www.leshabitationssf.com\/_api\/cloud-data"},"dynamicPages":{"prefixToRouterFetchData":{"location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"id":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5"}},"routerPrefix":"\/location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true},"pageRole":"02f40a08-ae1a-41b9-9ce4-a486105584ec","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"copy-of-location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"id":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1"}},"routerPrefix":"\/copy-of-location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true,"sort":[{"disponibilite":"desc"}]},"pageRole":"c8c6f29b-49c3-4685-b0e5-7f8174f91b94","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","Authorization":"ET7CsWtCZfxK7gZk7MxrXAIJp40wsVNLQyfXubJsMAA.eyJpbnN0YW5jZUlkIjoiYTFmNDUyMzQtODUwYS00YTc0LWE1M2QtNTY4MzQ0YTM0ODQ4IiwiYXBwRGVmSWQiOiJlNTkzYjBiZC1iNzgzLTQ1YjgtOTdjMi04NzNkNDJhYWNhZjQiLCJtZXRhU2l0ZUlkIjoiMzliOTg4MmYtOWU3MS00ZjkzLWJiNmQtYTg3MTY2Yzg1Y2RhIiwic2lnbkRhdGUiOiIyMDI2LTA4LTA5VDA2OjM0OjIzLjYxOVoiLCJkZW1vTW9kZSI6ZmFsc2UsImJpVG9rZW4iOiI5ODRkZGExYi0xYjdiLTA1ZTctMWU1MC1mZWYyMjI2YjE0OTIiLCJzaXRlT3duZXJJZCI6IjVhZTE3MDI5LWIyN2YtNDJmNi04YmMwLTVjYWZiZjYzYTIzNSIsImNhY2hlIjp0cnVlLCJzY2QiOiIyMDI0LTEwLTMxVDIzOjU4OjAwLjk5N1oifQ"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"routerPagesSeoToIdMap":{"blank-5":"x1rjp","category-page":"lbsg6","blank-5-1":"ebqqm"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticRoutedPageId":""},"editorWixCodeSdk":{"isBuilderComponentModel":false},"elementorySupportWixCodeSdk":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview","relativePath":"\/\/_api\/wix-code-public-dispatcher-ng\/siteview","gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","viewMode":"site","siteRevision":4},"environmentWixCodeSdk":{},"environment":{"editorType":"","domain":"leshabitationssf.com","previewMode":false,"isBuilderComponentModel":false},"fedopsWixCodeSdk":{"isWixSite":false,"shouldReportFedops":false},"lightbox":{"prefixToRouterFetchData":{"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"pageIdToPrefix":{"lbsg6":"category"},"isBuilderComponentModel":false},"locationWixCodeSdk":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"urlMappings":null},"mpaNavigation":{"forceMpaNavigation":false,"isRunningInDifferentSiteContext":false},"multilingual":{"originalLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"isOriginalLanguage":true,"currentLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"siteLanguages":[{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"hasLanguageSelector":true,"isEnabled":true,"baseUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","isPremiumDomain":true,"flagsUrl":"https:\/\/static.parastorage.com\/services\/linguist-flags\/1.1005.0"},"ooiTpaSharedConfig":{"imageSpriteUrl":"https:\/\/static.parastorage.com\/services\/santa-resources\/resources\/viewer\/editorUI\/fonts.v19.png","wixStaticFontsLinks":["https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/fonts.hz267ac7fkkfb3a18o8z.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/wixMadefor.j95mkaziqjnrn77aekr8.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/google.i6q038anl30o3b4lfbu6.css"]},"ooi":{"ooiComponentsData":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14666402-0bc7-b763-e875-e99840d131bd":{"sentryDsn":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"13afb094-84f9-739f-44fd-78d036adb028":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"244576c9-d856-49b9-af14-216071924e3b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"sentryDsn":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"sentryDsn":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"sentryDsn":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"04462ba4-2137-41bd-9460-0814554aae07":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"sentryDsn":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"sentryDsn":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d","noCssComponentUrl":"","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"211b5287-14e2-4690-bb71-525908938c81":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","widgetId":"211b5287-14e2-4690-bb71-525908938c81","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false}},"viewMode":"Site","formFactor":"Desktop","blogMobileComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/feed-page-mobile-viewer.bundle.min.js","userDomainMedia":{"baseUrl":"","prefixes":[]}},"pagesService":{"pages":{},"currentPageId":"","mainPageId":"xbscd"},"protectedPages":{"passwordProtected":{},"publicPageIds":["nd5z8","xbscd","ir3c1","tbw7n","x1rjp","fcpv5","digmz","c1dmp","ebqqm","og9af","ee5l4","p8nxp","ycxvu","mwate","zoy0o","tjnio","lbsg6","o2kzs","wdvyd","quqwi","jlcw6","ua72s","yg0c4","xsdnd","msjef"],"pageUriSeoToRouterPrefix":{"blank-5":"location","category-page":"category","blank-5-1":"copy-of-location"}},"renderer":{"disabledComponents":{},"isBuilderComponentModel":false},"reporter":{"userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremium":true,"isFBServerEventsAppProvisioned":true,"dynamicPagesIds":["x1rjp","lbsg6","ebqqm"]},"routerFetch":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","viewMode":"desktop"},"router":{"baseUrl":"https:\/\/www.leshabitationssf.com","mainPageId":"xbscd","pagesMap":{"nd5z8":{"pageId":"nd5z8","title":"Gestion AIR BNB","pageUriSEO":"gestion-courte-duree","pageJsonFileName":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658"},"xbscd":{"pageId":"xbscd","title":"Accueil","pageUriSEO":"accueil","pageJsonFileName":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658"},"ir3c1":{"pageId":"ir3c1","title":"CHOIX DE SERVICE","pageUriSEO":"popup-xxnez-evf5t-1-1-1-1","pageJsonFileName":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658"},"tbw7n":{"pageId":"tbw7n","title":"Gestion de copropriété","pageUriSEO":"gestion-de-copropriete","pageJsonFileName":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658"},"x1rjp":{"pageId":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5","pageJsonFileName":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658"},"dkrww":{"pageId":"dkrww","title":"Test","pageUriSEO":"blank"},"fcpv5":{"pageId":"fcpv5","title":"Bienvenue","pageUriSEO":"blank-1","pageJsonFileName":"5ae170_bfa3a744011b18064588457b988e1a12_658"},"digmz":{"pageId":"digmz","title":"Blog","pageUriSEO":"blog","pageJsonFileName":"5ae170_8753b09b9c3e820a689be83f44036cce_658"},"c1dmp":{"pageId":"c1dmp","title":"Accueil-Old","pageUriSEO":"home","pageJsonFileName":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658"},"ebqqm":{"pageId":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1","pageJsonFileName":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658"},"og9af":{"pageId":"og9af","title":"Side Cart","pageUriSEO":"popup-og9af","pageJsonFileName":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658"},"ee5l4":{"pageId":"ee5l4","title":"Post","pageUriSEO":"post","pageJsonFileName":"5ae170_797441264f67257d2b398b280f9566f8_658"},"p8nxp":{"pageId":"p8nxp","title":"Member Page","pageUriSEO":"members-area","pageJsonFileName":"5ae170_0e06c7b14722b1df76d73a702836cd87_658"},"ycxvu":{"pageId":"ycxvu","title":"Gestion d'immeubles à revenus","pageUriSEO":"forfaits","pageJsonFileName":"5ae170_6ef9978913518d22e3ff9884b42e9766_658"},"mwate":{"pageId":"mwate","title":"Thank You Page","pageUriSEO":"thank-you-page","pageJsonFileName":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658"},"zoy0o":{"pageId":"zoy0o","title":"Product Page","pageUriSEO":"product-page","pageJsonFileName":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658"},"tjnio":{"pageId":"tjnio","title":"Checkout","pageUriSEO":"checkout","pageJsonFileName":"5ae170_b758cd293bd2e09407018e3925e51e65_658"},"lbsg6":{"pageId":"lbsg6","title":"Category Page","pageUriSEO":"category-page","pageJsonFileName":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658"},"o2kzs":{"pageId":"o2kzs","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658"},"wdvyd":{"pageId":"wdvyd","title":"Mise en marché d'un logement","pageUriSEO":"particulier","pageJsonFileName":"5ae170_b86b7b332566ae1077a701be4c21b168_658"},"quqwi":{"pageId":"quqwi","title":"Cart Page","pageUriSEO":"cart-page","pageJsonFileName":"5ae170_adf9bd4deafc8141e4494d55c958864f_658"},"jlcw6":{"pageId":"jlcw6","title":"Obtenir un devis","pageUriSEO":"devis","pageJsonFileName":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658"},"ua72s":{"pageId":"ua72s","title":"Gestion Résidentielle & Commerciale","pageUriSEO":"gestion-residentielle-commerciale","pageJsonFileName":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658"},"yg0c4":{"pageId":"yg0c4","title":"Search Results","pageUriSEO":"search","pageJsonFileName":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658"},"xsdnd":{"pageId":"xsdnd","title":"Mise en Marché - Formulaire","pageUriSEO":"formulaire-mise-en-marché","pageJsonFileName":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658"},"msjef":{"pageId":"msjef","title":"À Propos","pageUriSEO":"entreprise","pageJsonFileName":"5ae170_a275d88f982fef975679f7c85059c3df_658"}},"disableStaticPagesUrlHierarchy":false,"routes":{".\/gestion-courte-duree":{"type":"Static","pageId":"nd5z8"},".\/accueil":{"type":"Static","pageId":"xbscd"},".\/popup-xxnez-evf5t-1-1-1-1":{"type":"Static","pageId":"ir3c1"},".\/gestion-de-copropriete":{"type":"Static","pageId":"tbw7n"},".\/blank":{"type":"Static","pageId":"dkrww"},".\/blank-1":{"type":"Static","pageId":"fcpv5"},".\/blog":{"type":"Static","pageId":"digmz"},".\/home":{"type":"Static","pageId":"c1dmp"},".\/popup-og9af":{"type":"Static","pageId":"og9af"},".\/post":{"type":"Static","pageId":"ee5l4"},".\/members-area":{"type":"Static","pageId":"p8nxp"},".\/forfaits":{"type":"Static","pageId":"ycxvu"},".\/thank-you-page":{"type":"Static","pageId":"mwate"},".\/product-page":{"type":"Static","pageId":"zoy0o"},".\/checkout":{"type":"Static","pageId":"tjnio"},".\/fullscreen-page":{"type":"Static","pageId":"o2kzs"},".\/particulier":{"type":"Static","pageId":"wdvyd"},".\/cart-page":{"type":"Static","pageId":"quqwi"},".\/devis":{"type":"Static","pageId":"jlcw6"},".\/gestion-residentielle-commerciale":{"type":"Static","pageId":"ua72s"},".\/search":{"type":"Static","pageId":"yg0c4"},".\/formulaire-mise-en-marché":{"type":"Static","pageId":"xsdnd"},".\/entreprise":{"type":"Static","pageId":"msjef"},".\/location":{"type":"Dynamic","pageIds":["x1rjp"]},".\/category":{"type":"Dynamic","pageIds":["lbsg6"]},".\/copy-of-location":{"type":"Dynamic","pageIds":["ebqqm"]},".\/":{"type":"Static","pageId":"xbscd"}},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"isWixSite":false,"isBuilderComponentModel":false,"partialRouteMatchingAllowed":false},"searchWixCodeSdk":{"language":"fr"},"seo":{"context":{"siteName":"SF Habitations","siteUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","indexSite":true,"defaultUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","currLangIsOriginal":true,"siteOgImage":"https:\/\/static.wixstatic.com\/media\/5ae170_6fb7dcec7ab646f983b75f6ccc999a44%7Emv2.jpg","homePageTitle":"Accueil","businessName":"Les Habitations SF","businesDescription":"Gestion locative, entretien, réparations, relation locataires : un service complet pour alléger votre charge et garantir un suivi de qualité.","businesLocale":"fr-ca","businesLogo":"https:\/\/static.wixstatic.com\/media\/836e14_d7dc6e8ff93643cbad486bb4e6ff054a.svg","businessLocationCountry":"CA","businessLocationFormatted":"Joliette, QC, Canada","businesLocationsState":"QC","businessLocationCity":"Joliette","businessLocationCoordinates":{"latitude":46.0232315,"longitude":-73.442545},"businessSchedule":{},"currency":"CAD","experiments":{"specs.seo.EnableFaqSD":"false","specs.seo.enableLangCheck":"true","specs.seo.useChunkedSiteStructureForMembersArea":"true"},"platformAppsExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"meetings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}},"siteLanguages":[{"languageCode":"x-default","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"currLangCode":"fr","seoLang":"fr-ca","currLangResolutionMethod":"Subdirectory"},"userPatterns":[{"patternType":"BLOG_POST","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"ai-generation-disabled\"}}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-ebqqm","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"index\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-x1rjp","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"noarchive, nofollow, noindex, nosnippet\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"}],"metaTags":[{"name":"fb_admins_meta_tag","value":"","property":false},{"name":"google-site-verification","value":"10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM","property":false}],"customHeadTags":"","isInSEO":false,"hasBlogAmp":false,"mainPageId":"xbscd","listPageIds":[]},"serviceRegistrar":{},"sessionManager":{"isRunningInDifferentSiteContext":false,"expiryTimeoutOverride":0,"appsInstances":{},"sessionModel":{}},"siteMembersWixCodeSdk":{"isPreviewMode":false,"isEditMode":false,"smToken":"","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e"},"siteMembers":{"collectionExposure":"Public","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e","smToken":"","protectedHomepage":false,"isTemplate":false,"loginSocialBarOnSite":true,"routerPrefix":"","isCommunityInstalled":false,"baseUrl":"https:\/\/www.leshabitationssf.com","memberInfoAppId":17345},"siteScrollBlocker":{"isBuilderComponentModel":false},"siteWixCodeSdk":{"fontFaceServerUrl":"https:\/\/serverless.parastorage.com\/_serverless\/site-sdk-server\/v1\/style","siteDisplayName":"SF Habitations","siteRevision":4,"regionalSettings":"fr-ca","language":"fr","currency":"CAD","mainPageId":"xbscd","pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"routerPrefixes":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"name":"location","prefix":"\/location","type":"dynamicPages"},"category":{"name":"category","prefix":"\/category","type":"dynamicPages"},"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"name":"copy-of-location","prefix":"\/copy-of-location","type":"dynamicPages"}},"timezone":"America\/Toronto","pageIdToTitle":{"nd5z8":"Gestion AIR BNB","xbscd":"Accueil","ir3c1":"CHOIX DE SERVICE","tbw7n":"Gestion de copropriété","x1rjp":"Location (Item)","dkrww":"Test","fcpv5":"Bienvenue","digmz":"Blog","c1dmp":"Accueil-Old","ebqqm":"Copy of Location (Item)","og9af":"Side Cart","ee5l4":"Post","p8nxp":"Member Page","ycxvu":"Gestion d'immeubles à revenus","mwate":"Thank You Page","zoy0o":"Product Page","tjnio":"Checkout","lbsg6":"Category Page","o2kzs":"Fullscreen Page","wdvyd":"Mise en marché d'un logement","quqwi":"Cart Page","jlcw6":"Obtenir un devis","ua72s":"Gestion Résidentielle & Commerciale","yg0c4":"Search Results","xsdnd":"Mise en Marché - Formulaire","msjef":"À Propos"},"urlMappings":null,"viewMode":"Site"},"speculationRules":{"currentPagePath":"\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-"},"ssrCache":{},"tpaCommons":{"widgetsClientSpecMapData":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","tpaWidgetId":"shoutout_feed","appPage":{},"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","isWixTPA":true,"allowScrolling":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","appPage":{"id":"product_page","name":"product_page","defaultPage":"","hidden":true,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","tpaWidgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","appPage":{"id":"Side Cart","name":"Side Cart","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","tpaWidgetId":"add_to_cart_button","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","tpaWidgetId":"grid_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","tpaWidgetId":"","appPage":{"id":"Success Popup","name":"Success Popup","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","tpaWidgetId":"slider_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","tpaWidgetId":"shopping_cart_icon","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"244576c9-d856-49b9-af14-216071924e3b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","tpaWidgetId":"244576c9-d856-49b9-af14-216071924e3b","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","tpaWidgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetUrl":"\/","tpaWidgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","appPage":{"id":"Payment Request Page","name":"Payment Request Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","tpaWidgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","appPage":{"id":"Category Page","name":"Category Page","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","tpaWidgetId":"product_widget","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","tpaWidgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"widgetUrl":"\/","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"widgetUrl":"\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"499ca64c-5f50-4223-bb91-6d101eaaddae":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"3f1cd43a-87ec-4b1f-b07f-8a443a683fbd":{"widgetUrl":"\/","appPage":{},"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appDefinitionId":"cf06bdf3-5bab-4f20-b165-97fb723dac6a","isWixTPA":true,"allowScrolling":false},"8039fd6a-054b-4289-8bd3-36035c51ecad":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"55adbbae-6799-44b3-98e4-ad5b2667a85b":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"2421f8bc-e686-4c32-8ab6-bc8e0d8b7455":{"widgetUrl":"\/","appPage":{},"applicationId":61,"appDefinitionName":"Wix CMS","appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"allowScrolling":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","tpaWidgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","appPage":{},"applicationId":1934,"appDefinitionName":"Wix Forms","appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","isWixTPA":true,"allowScrolling":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetUrl":"https:\/\/progallery.wixapps.net\/gallery.html","mobileUrl":"https:\/\/progallery.wixapps.net\/gallery.html","tpaWidgetId":"pro-gallery","appPage":{},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":false},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetUrl":"https:\/\/progallery.wixapps.net\/fullscreen","mobileUrl":"https:\/\/progallery.wixapps.net\/fullscreen","appPage":{"id":"fullscreen_page","name":"Fullscreen Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":true,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":true},"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-comments-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-comments-page","appPage":{"id":"member-comments-page","name":"Blog Comments ","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","mobileUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","tpaWidgetId":"recent-posts-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","appPage":{"id":"blog","name":"Blog","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5fdc6c03-080d-4872-b567-24146c82fae5":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","tpaWidgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","tpaWidgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5940091f-797c-4e86-9c57-73fcfd87425f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5520a99-1725-4b88-a85f-c439916890c8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"68a2d745-328b-475d-9e36-661f678daa31":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","tpaWidgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-likes-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-likes-page","appPage":{"id":"member-likes-page","name":"Blog Likes","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","mobileUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","tpaWidgetId":"custom-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"26858b64-aad8-42ab-8c63-f19009198c7b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"d134b0c9-8085-415a-9479-b555374ba958":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","tpaWidgetId":"rss-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","tpaWidgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"211b5287-14e2-4690-bb71-525908938c81":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","appPage":{"id":"post","name":"Post","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","tpaWidgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","tpaWidgetId":"813eb645-c6bd-4870-906d-694f30869fd9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"bc7fa914-015b-4c32-a323-e5472563a798":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7466726a-84cf-41c8-be6b-1694445dc539":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","appPage":{"id":"member-drafts-page","name":"My Drafts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","tpaWidgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","appPage":{"id":"My Posts","name":"My Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-posts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-posts-page","appPage":{"id":"member-posts-page","name":"Blog Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"widgetUrl":"\/","appPage":{},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"97466558-6e7b-43e6-9734-82123ef4c3f3":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":6471,"appDefinitionName":"Category Header","appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","isWixTPA":true,"allowScrolling":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","tpaWidgetId":"faq_widget","appPage":{},"applicationId":8517,"appDefinitionName":"Wix FAQ","appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","isWixTPA":true,"allowScrolling":false},"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"widgetUrl":"\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"137d8ff3-4c89-dc2e-68f2-82c77743cee5":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","mobileUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","tpaWidgetId":"powr_twitter_feed","appPage":{},"applicationId":12583,"appDefinitionName":"Social Media Feed","appDefinitionId":"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f","isWixTPA":false,"allowScrolling":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","tpaWidgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","appPage":{},"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","isWixTPA":true,"allowScrolling":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","tpaWidgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","appPage":{},"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","isWixTPA":true,"allowScrolling":false},"33159c18-8226-4068-91e8-216f5f2c75f8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6e0d0836-6240-4688-b4c2-00095de015d9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"60039b18-5d94-45b7-bd03-b7008213f906":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"widgetUrl":"\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"9fa041da-f429-4a24-8579-46c57a985b33":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"17315fb1-7be4-4492-a196-c1abb2817309":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"f67f8f07-eac7-470e-99f5-213f121b5655":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"db646d31-6817-4184-87df-c5496c9da6b9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5956d247-32d0-43af-9a49-7d1090c1e666":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetUrl":"\/","tpaWidgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","appPage":{"id":"member_settings_page","name":"member_settings_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetUrl":"\/","tpaWidgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","appPage":{"id":"member_page","name":"member_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"596a6688-3ad7-46f7-bb9c-00023225876d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17128,"appDefinitionName":"My Addresses","appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","isWixTPA":true,"allowScrolling":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17345,"appDefinitionName":"Member Account Info","appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17947,"appDefinitionName":"My Wallet","appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","isWixTPA":true,"allowScrolling":false},"04462ba4-2137-41bd-9460-0814554aae07":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","tpaWidgetId":"04462ba4-2137-41bd-9460-0814554aae07","appPage":{"id":"Settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","tpaWidgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","appPage":{"id":"Notifications","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18469,"appDefinitionName":"Members About","appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","isWixTPA":true,"allowScrolling":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","tpaWidgetId":"profile","appPage":{},"applicationId":18823,"appDefinitionName":"Profile Card","appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"169204d8-21be-4b45-b263-a997d31723dc":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","appPage":{"id":"Booking Service Page","name":"Service Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","tpaWidgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","appPage":{"id":"bookings_member_area","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","tpaWidgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","appPage":{"id":"bookings_list","name":"Book Online","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":4,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","tpaWidgetId":"service_list_widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","tpaWidgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetUrl":"https:\/\/editor.wix.com\/","tpaWidgetId":"bookings_timetable_daily","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","tpaWidgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","appPage":{"id":"Booking Form","name":"Booking Form","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","tpaWidgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","tpaWidgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","appPage":{"id":"My Bookings","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","mobileUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","tpaWidgetId":"widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","tpaWidgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","appPage":{"id":"Booking Calendar","name":"Booking Calendar","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetUrl":"https:\/\/engage.wixapps.net\/chat-widget-server\/renderChatWidget\/index","tpaWidgetId":"wix_visitors","appPage":{},"applicationId":20574,"appDefinitionName":"Wix Chat","appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","isWixTPA":true,"allowScrolling":false}},"appsClientSpecMapData":{"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appFields":{"premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.3913.0","hipaaCompliant":true},"isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"applicationId":41,"appDefinitionName":"Checkout & Orders","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6749.0","hipaaCompliant":true,"platform":{"routerHttpMethod":"GET","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/editor.bundle.min.js","routerServiceUrl":"\/_api\/wixstores-tpa-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","errorReporting":{},"platformOnly":true,"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:serverless.wixstores-tpa-site-structure-service"}}},"isWixTPA":true},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^2.20.0","installedVersion":"^2.0.0"},"isWixTPA":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"applicationId":45,"appDefinitionName":"Instagram Feed Social","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.6.0","installedVersion":"^5.0.0"},"isWixTPA":false},"cf06bdf3-5bab-4f20-b165-97fb723dac6a":{"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.13.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"dad178e5-571d-45bf-89a0-c1f97242199f":{"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appFields":{"permissionsEnforced":true,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^1.6.0","installedVersion":"^1.0.0"},"isWixTPA":false},"e593b0bd-b783-45b8-97c2-873d42aacaf4":{"applicationId":61,"appDefinitionName":"Wix CMS","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-data-client-app\/1.29.0\/webworker\/wixDataEditor.umd.min.js","editorScriptUrlTemplate":"<%= serviceUrl('wix-data-client-app', 'webworker\/wixDataEditor.umd.min.js') %>"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^2.103.0","hipaaCompliant":true},"isWixTPA":true},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"applicationId":1934,"appDefinitionName":"Wix Forms","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"},"viewer":{"errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"}},"ooiInEditor":true},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.1326.0","hipaaCompliant":true},"isWixTPA":true},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"cloneAppDataUrl":"https:\/\/progallery.wixapps.net\/_api\/gallery\/clone","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"},"width":{"desktop":{},"tablet":{},"mobile":{}},"shouldCloneDataPerComponent":true,"viewer":{"errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"}},"studio":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.979.0","hipaaCompliant":true},"isWixTPA":true},"14bcded7-0066-7c35-14d7-466cb3f09103":{"applicationId":4774,"appDefinitionName":"Wix Blog","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/editorScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"migratedToNewPlatformApi":true,"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.2252.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"}},"studio":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.npm.communities-blog-node-api"}},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.5447.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"applicationId":5582,"appDefinitionName":"Wix Site Search","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3605.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.454.0","hipaaCompliant":true},"isWixTPA":true},"7479d596-137c-4fa3-89cd-d7091042ba61":{"applicationId":6471,"appDefinitionName":"Category Header","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"migratedToNewPlatformApi":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('blog-category-header-widget', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","errorReporting":{},"viewer":{"errorReporting":{}},"studio":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.194.0","hipaaCompliant":true},"isWixTPA":true},"14c92d28-031e-7910-c9a8-a670011e062d":{"applicationId":8517,"appDefinitionName":"Wix FAQ","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^5.341.0","hipaaCompliant":true,"installedVersion":"^5.0.0"},"isWixTPA":true},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"applicationId":10725,"appDefinitionName":"TikTok Feed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^3.12.0","installedVersion":"^3.0.0"},"isWixTPA":false},"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f":{"applicationId":12583,"appDefinitionName":"Social Media Feed","appFields":{"featuresForNewPackagePicker":[],"packagePickerV2":[{"model":{"features":[{"description":"Remove the POWr logo from the bottom of your Twitter Feed.","name":"No POWr Logo","id":"3656b178-e0c5-4b22-8c35-462d7f0f6311"},{"description":"The amount of time before your Twitter Feed is updated with new posts.","name":"Content Refresh Rate","id":"5d8f487a-5aa6-4574-93af-361c7cb5890a"},{"description":"The maximum number of tweets you can display in your feed.","name":"Number of Tweets","id":"d528cf92-5b75-47fb-ae3d-9753eaf5beff"},{"description":"The number of handles and\/or hashtags you can follow in one feed.","name":"Number of @Handles & #Hashtags","id":"86bb2ab2-35c0-4c59-9696-3be86a69ea77"},{"description":"Let visitors retweet or favorite posts from your Twitter Feed.","name":"Retweet\/Favorite Posts","id":"b11b6830-91bd-48c4-b4f1-93823f444870"},{"description":"Add custom CSS or JavaScript in advanced settings for further customization.","name":"Custom CSS & JavaScript","id":"d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57"}],"isExternalPricing":false,"languageCode":"en","isInAppPurchase":false,"freeTrialDays":0,"plans":[{"name":"Starter","vendorId":"premium","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"12 Hours","3656b178-e0c5-4b22-8c35-462d7f0f6311":"","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"5","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"2"},"id":"3e64f4a2-4a40-4e68-97a2-e8a6d14c94e8","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":3.9900000095367,"yearlyPrice":3.3099999427795}},{"name":"Pro","vendorId":"Pro","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"3 Hours","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"5","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"15","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"612c4229-6909-4b67-a7b3-d55295452319","mostPopular":true,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":30,"monthlyPrice":7.9899997711182,"yearlyPrice":5.5900001525879}},{"name":"Business","vendorId":"business","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"20 Minutes","d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57":"","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"10","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"50","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"121a889c-1d4e-445b-be2b-90febcc8dbd7","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":11.989999771118,"yearlyPrice":9.9499998092651}}],"businessModel":"FREEMIUM"},"appId":"a365d579-778c-4392-ba12-f5ed64901e1a","languageCode":"en"}],"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^3.28.0","installedVersion":"^3.0.0"},"isWixTPA":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('express-checkout-widget-ooi', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"df892fe9-626f-44c9-a328-e29f93880b38":{"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6.0","hipaaCompliant":true},"isWixTPA":true},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"applicationId":15442,"appDefinitionName":"Product Page Blocks","appFields":{"platform":{"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"},"width":{"desktop":{},"tablet":{},"mobile":{}},"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"viewer":{"errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"}},"studio":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^27.174.0","hipaaCompliant":true},"isWixTPA":true},"b976560c-3122-4351-878f-453f337b7245":{"applicationId":17071,"appDefinitionName":"Members Area","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"},"editorScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'editorScript.bundle.min.js') %>","viewer":{"errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"}},"studio":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.members.members-area-site-structure-api"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^12.453.0","hipaaCompliant":true},"isWixTPA":true},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"applicationId":17128,"appDefinitionName":"My Addresses","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"applicationId":17345,"appDefinitionName":"Member Account Info","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.265.0","hipaaCompliant":true},"isWixTPA":true},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"applicationId":17947,"appDefinitionName":"My Wallet","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"},"viewer":{"errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.80.0","hipaaCompliant":true},"isWixTPA":true},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications-preferences', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"},"viewer":{"errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.23.0","hipaaCompliant":true},"isWixTPA":true},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"},"viewer":{"errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.45.0","hipaaCompliant":true},"isWixTPA":true},"14dbef06-cc42-5583-32a7-3abd44da4908":{"applicationId":18469,"appDefinitionName":"Members About","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.223.0","hipaaCompliant":true},"isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"applicationId":18823,"appDefinitionName":"Profile Card","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.300.0","hipaaCompliant":true},"isWixTPA":true},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"applicationId":19310,"appDefinitionName":"Wix Bookings","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"routerServiceUrl":"\/_serverless\/bookings-viewer-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.10281.0","hipaaCompliant":true,"installedVersion":"^0.0.0","appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.bookings.services-2"}}},"isWixTPA":true},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"applicationId":20574,"appDefinitionName":"Wix Chat","appFields":{"platform":{"optionalApplication":true,"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/editor-script.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"mostPopularPackage":"Sales","premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"featuresForNewPackagePicker":[{"forPackages":[{"value":"50","packageId":"Professional"},{"value":"150","packageId":"Sales"},{"value":"Unlimited","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Teams"}]}],"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.190.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true}},"previewMode":false,"siteRevision":4,"viewMode":"site","editorOrSite":"site","userFileDomainUrl":"filesusr.com","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremiumDomain":true,"routersConfig":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"routerByPrefix":{"location":"routers-m338s9i0","category":"routers-m6saa70b","copy-of-location":"routers-m8omcibz"},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","tpaModalConfig":{"wixTPAs":{"139ef4fa-c108-8f9a-c7be-d5f492a2c939":true,"7efa9936-86f7-44c6-880b-7bae4e044a3d":true,"13ee94c1-b635-8505-3391-97919052c16f":true,"55cd9036-36bb-480b-8ddc-afda3cb2eb8d":true,"35aec784-bbec-4e6e-abcb-d3d724af52cf":true,"8ea9df15-9ff6-4acf-bbb8-8d3a69ae5841":true,"14ce1214-b278-a7e4-1373-00cebd1bef7c":true,"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":true,"141fbfae-511e-6817-c9f0-48993a7547d1":true,"d70b68e2-8d77-4e0c-9c00-c292d6e0025e":true,"146c0d71-352e-4464-9a03-2e868aabe7b9":true,"307ba931-689c-4b55-bb1d-6a382bad9222":true,"14b89688-9b25-5214-d1cb-a3fb9683618b":true,"ea2821fc-7d97-40a9-9f75-772f29178430":true,"9bead16f-1c73-4cda-b6c4-28cff46988db":true,"1480c568-5cbd-9392-5604-1148f5faffa0":true,"94bc563b-675f-41ad-a2a6-5494f211c47b":true,"14e12b04-943e-fd32-456d-70b1820a2ff2":true,"14bca956-e09f-f4d6-14d7-466cb3f09103":true,"150ae7ee-c74a-eecd-d3d7-2112895b988a":true,"f123e8f1-4350-4c9b-b269-04adfadda977":true,"4b10fcce-732d-4be3-9d46-801d271acda9":true,"9050a8e8-0fd3-4936-af2a-5ae4f84c41b8":true,"1973457f-c021-4da5-941f-58444ff761d4":true,"1380b703-ce81-ff05-f115-39571d94dfcd":true,"e4b5f1bc-c77a-4319-a60d-a46acb17f6fc":true,"14d7032a-0a65-5270-cca7-30f599708fed":true,"6580b7e9-4031-4a62-a0a5-8e2fa92e8e18":true,"7516f85b-0868-4c23-9fcb-cea7784243df":true,"57d13128-4a4c-494b-80b3-a6fb2e28018d":true,"45c44b27-ca7b-4891-8c0d-1747d588b835":true,"fc9314bc-a317-4a2b-a9d4-5ad21cc57856":true,"50d8c12f-715e-41ad-be25-d0f61375dbee":true,"f4d83b06-b408-4f3b-afd4-de8db311d7d8":true,"cf06bdf3-5bab-4f20-b165-97fb723dac6a":true,"e81d3ca5-7ca5-4188-bfac-f4997a34065e":true,"399a2612-a042-4fb7-aeff-ed331c7d1c39":true,"2f70e2b4-ff36-472e-bdb9-ce393b13669e":true,"e593b0bd-b783-45b8-97c2-873d42aacaf4":true,"225dd912-7dea-4738-8688-4b8c6955ffc2":true,"14271d6f-ba62-d045-549b-ab972ae1f70e":true,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":true,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":true,"215238eb-22a5-4c36-9e7b-e7c08025e04e":true,"47e245ca-1a42-4d6a-a69a-c125bc839b40":true,"df892fe9-626f-44c9-a328-e29f93880b38":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":true,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":true,"b976560c-3122-4351-878f-453f337b7245":true,"1505b775-e885-eb1b-b665-1e485d9bf90e":true,"14cffd81-5215-0a7f-22f8-074b0e2401fb":true,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":true,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":true,"14f25924-5664-31b2-9568-f9c5ed98c9b1":true,"14dbef06-cc42-5583-32a7-3abd44da4908":true,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":true,"14517e1a-3ff0-af98-408e-2bd6953c36a2":true,"14d84998-ae09-1abf-c6fc-3f3cace5bf19":true}},"appSectionParams":{},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","isMobileView":false,"isMobileDevice":false,"deviceType":"desktop","extras":{"currency":"CAD"},"tpaDebugParams":{"debugApp":null,"petri_ovr":null},"locale":"fr","timeZone":"America\/Toronto","shouldRenderTPAsIframe":true,"debug":false,"regionalLanguage":"fr","isBuilderComponentModel":false,"fragmentInstanceToPageId":{}},"widgetWixCodeSdk":{"isBuilderComponentModel":false},"windowWixCodeSdk":{"locale":"fr-ca","isMobileFriendly":true,"formFactor":"Desktop","pageIdToRouterAppDefinitionId":{"x1rjp":"dataBinding","lbsg6":"1380b703-ce81-ff05-f115-39571d94dfcd","ebqqm":"dataBinding"}},"wixCustomElementComponent":{"shouldLoadAllExternalScripts":true,"widgetsToRenderOnFreeSites":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":true,"8039fd6a-054b-4289-8bd3-36035c51ecad":true,"55adbbae-6799-44b3-98e4-ad5b2667a85b":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-ljbqi":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-fz6ni":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rluvr":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rmno8":true,"14bcded7-0066-7c35-14d7-466cb3f09103-sw47o":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ak2wd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-q8dzf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u5w25":true,"14bcded7-0066-7c35-14d7-466cb3f09103-hoxv1":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pit6d":true,"14bcded7-0066-7c35-14d7-466cb3f09103-prihd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-dqjva":true,"14bcded7-0066-7c35-14d7-466cb3f09103-nz8hi":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e9hqn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e3jvn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-gcv5t":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ghrxf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-liy9s":true,"14bcded7-0066-7c35-14d7-466cb3f09103-eii64":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u61rq":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pzdqd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-yrjyo":true,"14bcded7-0066-7c35-14d7-466cb3f09103-wzdp6":true,"14bcded7-0066-7c35-14d7-466cb3f09103-y3apm":true,"14bcded7-0066-7c35-14d7-466cb3f09103-bu1xw":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pz2i2":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e25z0":true,"14bcded7-0066-7c35-14d7-466cb3f09103-b0z74":true,"14bcded7-0066-7c35-14d7-466cb3f09103-h77jn":true,"7479d596-137c-4fa3-89cd-d7091042ba61-ruxce":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-rmno8":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-x5kmw":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-vh9q1":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-wubn4":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x7lat":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bkcdi":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bqb3v":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x4vxv":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-y4976":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-b4kha":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-h9lrc":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-hxdg5":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-z50e2":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-yl1zs":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-v8gqn":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-r7gvz":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-ish0i":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-uu804":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mp016":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-fgl5b":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mt2f0":true,"b976560c-3122-4351-878f-453f337b7245-aehnv":true,"b976560c-3122-4351-878f-453f337b7245-uuc0d":true,"b976560c-3122-4351-878f-453f337b7245-zuaoa":true,"b976560c-3122-4351-878f-453f337b7245-ng58u":true,"b976560c-3122-4351-878f-453f337b7245-a1ugz":true,"b976560c-3122-4351-878f-453f337b7245-xhv4l":true,"b976560c-3122-4351-878f-453f337b7245-mty3l":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-flb7a":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cv54f":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-drzkv":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cyng5":true},"wixCodeBundlersUrlData":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","appDefIdToWixCodeBundlerUrlData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/a9a3d486-0959-4998-8101-804533f57449\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_a9a3d486-0959-4998-8101-804533f57449\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9ebcb758-3944-4933-bba8-ff8a92a98050\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9ebcb758-3944-4933-bba8-ff8a92a98050\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/71869e96-79b7-49b9-b6f9-e32bcf00ac52\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_71869e96-79b7-49b9-b6f9-e32bcf00ac52\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/21056c2c-144a-488f-912d-5fb0e1262beb\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_21056c2c-144a-488f-912d-5fb0e1262beb\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9cd056c2-0ac6-492c-a87e-9077d75d5345\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9cd056c2-0ac6-492c-a87e-9077d75d5345\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/4741eabd-b87f-4c4a-8280-f696c07fc433\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_4741eabd-b87f-4c4a-8280-f696c07fc433\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/1f3cdaf3-1ef1-491b-8743-1894bb51257c\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_1f3cdaf3-1ef1-491b-8743-1894bb51257c\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"b976560c-3122-4351-878f-453f337b7245":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/5d5e1403-dffe-4565-948c-03a8e2f4251e\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_5d5e1403-dffe-4565-948c-03a8e2f4251e\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"}}},"customElementWidgets":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99-03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"scriptUrl":"https:\/\/hfkynx-feb58f81261918cf-certifiedcode.wix-host.com\/_wix_126f0f6e-custom-elements\/03721c8b-93e9-4a80-a4e5-88c51e3a2634-u95sDHB4.js","tagName":"tiktok-embed","scriptType":"ES_MODULE"}}},"wixEmbedsApi":{"isAdminPage":false},"platform":{"sdksStaticPaths":{"mainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/mainSdks.4ad69533.chunk.min.js","nonMainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/nonMainSdks.785ca7c9.chunk.min.js"},"clientWorkerUrl":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/clientWorker.1179f420.bundle.min.js","bootstrapData":{"isMobileView":false,"isMobileAppBuilder":false,"appsSpecData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","type":"public","instanceId":"664e3b24-55d5-4370-992a-906c83427cd5","appDefinitionName":"Old Wix Forms and Payments","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","type":"siteextension","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","isIdentityTokenAppSpec":false,"isModuleFederated":false},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","type":"public","instanceId":"b743bf2f-48be-4b91-bc2d-cae97bd2ebdb","appDefinitionName":"Checkout & Orders","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","type":"public","instanceId":"c182465f-40e5-45a3-8fe7-d4ed22dc4e25","appDefinitionName":"TikTok Videos & Profile Embed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","type":"public","instanceId":"aa397d12-cbcc-4918-9926-e9879ef7bc6e","appDefinitionName":"Instagram Feed Social","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","type":"public","instanceId":"511414b8-bd16-4b71-90f1-9ee07097cddb","appDefinitionName":"Wix Forms","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","type":"public","instanceId":"ea2e7592-fb1b-4285-8b45-6b6f7338002d","appDefinitionName":"Wix Pro Gallery","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","type":"public","instanceId":"8415270e-dd8b-4544-aa96-8bca40689dc9","appDefinitionName":"Wix Blog","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","type":"public","instanceId":"a68016c7-acaf-416c-86c2-82631aea2a69","appDefinitionName":"Wix Site Search","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","type":"public","instanceId":"ad56a9d7-29a5-415f-a257-ce34d1fe5c74","appDefinitionName":"Category Header","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","type":"public","instanceId":"09069977-8940-4543-97e9-68546fad2a50","appDefinitionName":"Wix FAQ","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","type":"public","instanceId":"f556be82-4770-42a8-ad1e-82c9933fd877","appDefinitionName":"TikTok Feed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefinitionId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","type":"public","instanceId":"b0d1b4e0-5f76-4ddf-9654-45abb578c2f4","appDefinitionName":"Wix Stores","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","type":"public","instanceId":"d37f86b4-371b-4434-a667-fbfc23f03483","appDefinitionName":"Express Checkout Widget OOI","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","type":"public","instanceId":"2b3d7f83-14f9-44e1-a1d5-c4f0be5dbfbe","appDefinitionName":"payment-methods-banner-ooi","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","type":"public","instanceId":"535d4bff-e6c4-4eaa-a555-298288a6ba25","appDefinitionName":"Product Page Blocks","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","type":"public","instanceId":"84def387-15a6-4e37-b80b-fc3b83890bc8","appDefinitionName":"Wix Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"b976560c-3122-4351-878f-453f337b7245":{"appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","type":"public","instanceId":"eff1dc0f-a6b0-4a73-bb81-c85fe49c84dc","appDefinitionName":"Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","type":"public","instanceId":"fe4e40e2-d8ce-4715-b242-b30ca7e90de9","appDefinitionName":"Member Account Info","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","type":"public","instanceId":"d9f00b70-8471-4f01-a4cd-27e9747c31c4","appDefinitionName":"My Wallet","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","type":"public","instanceId":"f29e5990-ce72-4f78-81d3-2406ad116dea","appDefinitionName":"Members Notifications Settings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","type":"public","instanceId":"d8f1700d-8126-4081-9f7f-77394d926ed5","appDefinitionName":"Wix Members Area Notifications","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","type":"public","instanceId":"b99f6262-6691-4942-9425-3bb22ef14b19","appDefinitionName":"Members About","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","type":"public","instanceId":"7314d009-0de2-4512-a7b8-fd99f85f3ddf","appDefinitionName":"Profile Card","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","type":"public","instanceId":"59320de1-6ceb-4eb6-a60b-43de000c7f21","appDefinitionName":"Wix Bookings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","type":"public","instanceId":"29aace14-1ee3-46e9-ba9c-34223d769672","appDefinitionName":"Wix Chat","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"dataBinding":{"appDefinitionId":"dataBinding","type":"application","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","appDefinitionName":"Data Binding","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false}},"appsUrlData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefName":"Old Wix Forms and Payments","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.883.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefName":"Checkout & Orders","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"widgets":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidgetNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","cssPerBreakpoint":true},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","cssPerBreakpoint":true},"14666402-0bc7-b763-e875-e99840d131bd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","errorReportingUrl":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","widgetId":"14666402-0bc7-b763-e875-e99840d131bd"},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidgetNoCss.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","cssPerBreakpoint":true},"13afb094-84f9-739f-44fd-78d036adb028":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","cssPerBreakpoint":true},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidgetNoCss.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","cssPerBreakpoint":true},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14"},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","cssPerBreakpoint":true},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4"},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb"},"1380bba0-253e-a800-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","cssPerBreakpoint":true},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","cssPerBreakpoint":true},"244576c9-d856-49b9-af14-216071924e3b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","cssPerBreakpoint":true},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","cssPerBreakpoint":true},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a"},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","cssPerBreakpoint":true},"14fd5970-8072-c276-1246-058b79e70c1a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a"},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetNoCss.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd"},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a"},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"215f8ab7-97c3-4838-a6d0-ad4a61747158"}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefId":"225dd912-7dea-4738-8688-4b8c6955ffc2","appDefName":"Wix Forms","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"errorReportingUrl":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615","widgets":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","cssPerBreakpoint":true}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefName":"Wix Site Search","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"widgets":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"4a60a434-d08a-4bd4-a323-4c2479db87ea"},"44c66af6-4d25-485a-ad9d-385f5460deef":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","cssPerBreakpoint":true}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefId":"14c92d28-031e-7910-c9a8-a670011e062d","appDefName":"Wix FAQ","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","cssPerBreakpoint":true}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","appDefName":"Wix Stores","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/storesViewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","appDefName":"Express Checkout Widget OOI","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"widgets":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744"}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefId":"df892fe9-626f-44c9-a328-e29f93880b38","appDefName":"payment-methods-banner-ooi","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"widgets":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4"}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefName":"Wix Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.2869.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appDefName":"Member Account Info","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","cssPerBreakpoint":true}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appDefName":"My Wallet","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","cssPerBreakpoint":true}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appDefName":"Members Notifications Settings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"errorReportingUrl":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097","widgets":{"04462ba4-2137-41bd-9460-0814554aae07":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","cssPerBreakpoint":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","cssPerBreakpoint":false}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appDefName":"Wix Members Area Notifications","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f"},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7"}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefId":"14dbef06-cc42-5583-32a7-3abd44da4908","appDefName":"Members About","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","cssPerBreakpoint":true}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefName":"Profile Card","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidgetNoCss.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","cssPerBreakpoint":true}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","appDefName":"Wix Bookings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"widgets":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"c7fddce1-ebf5-46b0-a309-7865384ba63f"},"169204d8-21be-4b45-b263-a997d31723dc":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"169204d8-21be-4b45-b263-a997d31723dc"},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","cssPerBreakpoint":true},"3c675d25-41c7-437e-b13d-d0f99328e347":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidgetNoCss.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","cssPerBreakpoint":true},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","cssPerBreakpoint":true},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","cssPerBreakpoint":true},"621bc837-5943-4c76-a7ce-a0e38185301f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidgetNoCss.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","cssPerBreakpoint":true},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","cssPerBreakpoint":true},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","cssPerBreakpoint":true},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"89c4023a-027e-4d2a-b6b7-0b9d345b508d"},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidgetNoCss.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","cssPerBreakpoint":true},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","cssPerBreakpoint":true},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"3dc66bc5-5354-4ce6-a436-bd8394c09b0e"},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","cssPerBreakpoint":true},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","noCssComponentUrl":"","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80"},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidgetNoCss.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","cssPerBreakpoint":true}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","appDefName":"Wix Chat","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","baseUrls":{},"widgets":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14517f3f-ffc5-eced-f592-980aaa0bbb5c"}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","appDefName":"TikTok Videos & Profile Embed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"widgets":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"03721c8b-93e9-4a80-a4e5-88c51e3a2634"},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"dfa30e37-50c9-45a6-92a9-1ca066308259"},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"0c2fe29b-9577-40e9-8944-8b4f27ae8ead"}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","appDefName":"Instagram Feed Social","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"widgets":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"499ca64c-5f50-4223-bb91-6d101eaaddae"},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"1eb642dd-23c7-4aac-86ab-af33ba891b2a"},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94"},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"9b3f6bc6-0638-45bb-a924-9e62664f7de0"}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefId":"14271d6f-ba62-d045-549b-ab972ae1f70e","appDefName":"Wix Pro Gallery","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgets":{"142bb34d-3439-576a-7118-683e690a1e0d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d"},"144f04b9-aab4-fde7-179b-780c11da4f46":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"144f04b9-aab4-fde7-179b-780c11da4f46"}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefId":"14bcded7-0066-7c35-14d7-466cb3f09103","appDefName":"Wix Blog","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgets":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ea40bb32-ddfc-4f68-a163-477bd0e97c8e"},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260f9-c2eb-50e8-9b3c-4d21861fe58f"},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6"},"14e5b36b-e545-88a0-1475-2487df7e9206":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b36b-e545-88a0-1475-2487df7e9206"},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6"},"5fdc6c03-080d-4872-b567-24146c82fae5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5fdc6c03-080d-4872-b567-24146c82fae5"},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa"},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03"},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2d4ed2d3-75f8-4942-9787-71e3d182e256"},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9"},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","cssPerBreakpoint":true},"5940091f-797c-4e86-9c57-73fcfd87425f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5940091f-797c-4e86-9c57-73fcfd87425f"},"e5520a99-1725-4b88-a85f-c439916890c8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5520a99-1725-4b88-a85f-c439916890c8"},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1b5b448c-a39f-4515-9445-c6b4ceace1c2"},"68a2d745-328b-475d-9e36-661f678daa31":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"68a2d745-328b-475d-9e36-661f678daa31"},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5e123a45-f3aa-4157-a47a-e58d8cb246eb"},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","cssPerBreakpoint":true},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"b27ea74b-1c6f-4bdb-bda7-8242323ba20b"},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"25ab36f9-f8bd-4799-a887-f10b6822fc2e"},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26109-514f-f9a8-9b3c-4d21861fe58f"},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"76359954-edd4-4c46-ad14-a7c5e65cc30c"},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b39b-6d47-99c3-3ee5-cee1c2574c89"},"26858b64-aad8-42ab-8c63-f19009198c7b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"26858b64-aad8-42ab-8c63-f19009198c7b"},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"129259f6-06e4-42a3-9877-81a1fa9de95c"},"d134b0c9-8085-415a-9479-b555374ba958":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"d134b0c9-8085-415a-9479-b555374ba958"},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","cssPerBreakpoint":true},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","cssPerBreakpoint":true},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd"},"211b5287-14e2-4690-bb71-525908938c81":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"211b5287-14e2-4690-bb71-525908938c81","cssPerBreakpoint":true},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7"},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7"},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ce8e832b-c34f-4b80-b2a6-6cfd6d573751"},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a"},"813eb645-c6bd-4870-906d-694f30869fd9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9"},"bc7fa914-015b-4c32-a323-e5472563a798":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"bc7fa914-015b-4c32-a323-e5472563a798"},"7466726a-84cf-41c8-be6b-1694445dc539":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7466726a-84cf-41c8-be6b-1694445dc539"},"14f260e4-ea13-f861-b0ba-4577df99b961":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260e4-ea13-f861-b0ba-4577df99b961"},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"091d05b7-f44d-4a76-9163-0c7ed5312769"},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"763aa9a8-0531-426f-a4b1-61a7291ce292"},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046"},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26118-b65b-b1c1-b6db-34d5da9dd623"}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefId":"7479d596-137c-4fa3-89cd-d7091042ba61","appDefName":"Category Header","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"widgets":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"97466558-6e7b-43e6-9734-82123ef4c3f3"}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","appDefName":"TikTok Feed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"widgets":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"6aaf0b7d-32c6-4384-b128-d47e22ba1087"},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"f4877f7b-3730-4bf6-ab04-f8a2b47fe642"},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"b07b31e4-3a98-4859-abca-0854eef13bc9"}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","appDefName":"Product Page Blocks","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgets":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"33159c18-8226-4068-91e8-216f5f2c75f8"},"6e0d0836-6240-4688-b4c2-00095de015d9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6e0d0836-6240-4688-b4c2-00095de015d9"},"60039b18-5d94-45b7-bd03-b7008213f906":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"60039b18-5d94-45b7-bd03-b7008213f906"},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"72c071a7-3808-4b0d-94ae-cc49bc51e0fe"},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45"},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ba708a2c-287b-4bfa-9daf-d04168e13e1f"},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5"},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2fb559c9-2297-43cc-9f28-aaf3e988063d"},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ddea5ffa-c473-4655-8c8f-241e10f9bd67"},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"cbd0cea6-4c0d-4199-b241-1254d1f02377"},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"56b08f4f-d99b-4da2-a049-ca218b626be2"},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"e3eb5d42-170a-41ad-a344-8489e54828ad"},"9fa041da-f429-4a24-8579-46c57a985b33":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"9fa041da-f429-4a24-8579-46c57a985b33"},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6a25b678-53ec-4b37-a190-65fcd1ca1a63"},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"a7a7c443-9ebe-442f-9339-b28804f8869e"},"17315fb1-7be4-4492-a196-c1abb2817309":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"17315fb1-7be4-4492-a196-c1abb2817309"},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1"},"f67f8f07-eac7-470e-99f5-213f121b5655":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"f67f8f07-eac7-470e-99f5-213f121b5655"},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"edb17e71-9a93-428e-87d8-26c07fb4cd3c"},"db646d31-6817-4184-87df-c5496c9da6b9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"db646d31-6817-4184-87df-c5496c9da6b9"}}},"b976560c-3122-4351-878f-453f337b7245":{"appDefId":"b976560c-3122-4351-878f-453f337b7245","appDefName":"Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgets":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5956d247-32d0-43af-9a49-7d1090c1e666"},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"2f6c5608-393f-4b15-bfd8-d4e15396787a"},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5ab312ae-0cf7-4093-bbf5-5e4d3690151c"},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b"},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b"},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"25d08a82-0ea5-40f4-8047-07aee3e73e40"},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"009081ab-9c3d-41d5-8b90-41af0e84c159"},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"a26fd26a-3dd9-42ca-b381-326a9c143e38"},"596a6688-3ad7-46f7-bb9c-00023225876d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"596a6688-3ad7-46f7-bb9c-00023225876d"}}},"dataBinding":{"appDefId":"dataBinding","appDefName":"Data Binding","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0\/app.js","baseUrls":{},"widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefId":"675bbcef-18d8-41f5-800e-131ec9e08762","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.751\/app.js","baseUrls":{},"widgets":{}}},"builderComponentsImportMapSdkUrls":{},"builderComponentsCompTypeSdkUrls":{},"builderPublicPackagesUrls":{"esm":{},"umd":{}},"blocksBootstrapData":{"blocksAppsData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2","packageImportName":"@s21797\/instagram-display-feed"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4","packageImportName":"@s21797\/tiktok-feed"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"},"b976560c-3122-4351-878f-453f337b7245":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"elevatedBlocksAppsOnReactNative":[],"experiments":{"specs.blocks-client.alwaysUseTokenInfoForDecode":"true"},"experimentsQueryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","widgetBundleUrls":{},"isVeloBundlerParastorageUrlEnabled":true,"parastorageTemplateUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_\/gridAppId_\/filePath_\/fileType_js\/compression_gzip\/depToken_3938\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_"},"window":{"csrfToken":"1786257261|eMUCwICxgYpb"},"location":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isPremiumDomain":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userFileDomainUrl":"filesusr.com"},"bi":{"ownerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","isMobileFriendly":true,"isPreview":false,"requestId":"1786257263.5573915036611374"},"platformAPIData":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"wixCodeBootstrapData":{"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","wixCodeInstanceId":"a1f45234-850a-4a74-a53d-568344a34848","wixCloudBaseDomain":"wix-code.com","dbsmViewerApp":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0","wixCodePlatformBaseUrl":"https:\/\/static.parastorage.com\/services\/wix-code-platform\/1.1097.93","wixCodeModel":{"appData":{"codeAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"},"signedAppRenderInfo":"70828d0c9d366f3e645260ae79c47a09273770f6.eyJncmlkQXBwSWQiOiIwMGRmYmM4Yy1iN2YzLTRkYzEtOTg5Yy1mNmEzYjI3OTFhODUiLCJodG1sU2l0ZUlkIjoiNDUyMDcxYzEtYTk5Yi00NGMyLWI2ODYtZGQxNWIxMTI2NGEzIiwiZGVtb0lkIjpudWxsLCJzaWduRGF0ZSI6MTc4NjI1NzI2MzY2NX0="},"wixCodePageIds":{"ebqqm":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ebqqm.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","ycxvu":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ycxvu.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","wdvyd":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_wdvyd.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"elementorySupport":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview"},"codePackagesData":[{"importName":"@s21797\/instagram-display-feed","gridAppId":"343ea3d2-8481-44a4-9766-e5cdf26a75ef","appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163"},{"importName":"@s21797\/tiktok-feed","gridAppId":"35b7ef5e-d3c5-4bb7-a9f5-c6f4f25a9423","appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3"}]},"autoFrontendModulesBaseUrl":"https:\/\/static.parastorage.com\/services\/auto-frontend-modules\/1.6238.0","disabledPlatformApps":{},"widgetsClientSpecMapData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{},"675bbcef-18d8-41f5-800e-131ec9e08762":{},"1380b703-ce81-ff05-f115-39571d94dfcd":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetName":"product_page","componentFields":{}},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetName":"49dbb2d9-d9e5-4605-a147-e926605bf164","componentFields":{}},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetName":"add_to_cart_button","componentFields":{}},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetName":"wishlist","componentFields":{}},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetName":"grid_gallery","componentFields":{}},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetName":"Success Popup","componentFields":{}},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetName":"shopping_cart","componentFields":{}},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetName":"slider_gallery","componentFields":{}},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetName":"thank_you_page","componentFields":{}},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetName":"order_history","componentFields":{}},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetName":"product_gallery","componentFields":{}},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetName":"shopping_cart_icon","componentFields":{}},"244576c9-d856-49b9-af14-216071924e3b":{"widgetName":"244576c9-d856-49b9-af14-216071924e3b","componentFields":{}},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetName":"abcd87fe-c51f-4538-848d-2902a2f50d2d","componentFields":{}},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetName":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","componentFields":{}},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetName":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","componentFields":{}},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetName":"checkout","componentFields":{}},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetName":"product_widget","componentFields":{}},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetName":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","componentFields":{}},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"componentFields":{}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"componentFields":{}},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"componentFields":{}},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"componentFields":{}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"componentFields":{}},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"componentFields":{}},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"componentFields":{}},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"componentFields":{}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetName":"371ee199-389c-4a93-849e-e35b8a15b7ca","componentFields":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetName":"pro-gallery","componentFields":{}},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetName":"fullscreen_page","componentFields":{}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"componentFields":{}},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetName":"member-comments-page","componentFields":{}},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"componentFields":{}},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetName":"recent-posts-widget","componentFields":{}},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetName":"blog","componentFields":{}},"5fdc6c03-080d-4872-b567-24146c82fae5":{"componentFields":{}},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"componentFields":{}},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"componentFields":{}},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"componentFields":{}},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetName":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","componentFields":{}},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetName":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","componentFields":{}},"5940091f-797c-4e86-9c57-73fcfd87425f":{"componentFields":{}},"e5520a99-1725-4b88-a85f-c439916890c8":{"componentFields":{}},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"componentFields":{}},"68a2d745-328b-475d-9e36-661f678daa31":{"componentFields":{}},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"componentFields":{}},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetName":"c0a125b8-2311-451e-99c5-89b6bba02b22","componentFields":{}},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"componentFields":{}},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"componentFields":{}},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetName":"member-likes-page","componentFields":{}},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"componentFields":{}},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetName":"custom-feed-widget","componentFields":{}},"26858b64-aad8-42ab-8c63-f19009198c7b":{"componentFields":{}},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"componentFields":{}},"d134b0c9-8085-415a-9479-b555374ba958":{"componentFields":{}},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetName":"rss-feed-widget","componentFields":{}},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetName":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","componentFields":{}},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"componentFields":{}},"211b5287-14e2-4690-bb71-525908938c81":{"widgetName":"post","componentFields":{}},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetName":"478911c3-de0c-469e-90e3-304f2f8cd6a7","componentFields":{}},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"componentFields":{}},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"componentFields":{}},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"componentFields":{}},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetName":"813eb645-c6bd-4870-906d-694f30869fd9","componentFields":{}},"bc7fa914-015b-4c32-a323-e5472563a798":{"componentFields":{}},"7466726a-84cf-41c8-be6b-1694445dc539":{"componentFields":{}},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetName":"member-drafts-page","componentFields":{}},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"componentFields":{}},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"componentFields":{}},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetName":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","componentFields":{}},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetName":"member-posts-page","componentFields":{}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"componentFields":{}},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetName":"search_results","componentFields":{}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"componentFields":{}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetName":"faq_widget","componentFields":{}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"componentFields":{}},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"componentFields":{}},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"componentFields":{}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetName":"54fb025c-61dc-4286-87c7-0ac416c58744","componentFields":{}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetName":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","componentFields":{}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"componentFields":{}},"6e0d0836-6240-4688-b4c2-00095de015d9":{"componentFields":{}},"60039b18-5d94-45b7-bd03-b7008213f906":{"componentFields":{}},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"componentFields":{}},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"componentFields":{}},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"componentFields":{}},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"componentFields":{}},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"componentFields":{}},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"componentFields":{}},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"componentFields":{}},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"componentFields":{}},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"componentFields":{}},"9fa041da-f429-4a24-8579-46c57a985b33":{"componentFields":{}},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"componentFields":{}},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"componentFields":{}},"17315fb1-7be4-4492-a196-c1abb2817309":{"componentFields":{}},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"componentFields":{}},"f67f8f07-eac7-470e-99f5-213f121b5655":{"componentFields":{}},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"componentFields":{}},"db646d31-6817-4184-87df-c5496c9da6b9":{"componentFields":{}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{},"b976560c-3122-4351-878f-453f337b7245":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"componentFields":{}},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"componentFields":{}},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"componentFields":{}},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetName":"31aadcb0-9add-42cb-9b21-72f41e91389b","componentFields":{}},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetName":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","componentFields":{}},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"componentFields":{}},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"componentFields":{}},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"componentFields":{}},"596a6688-3ad7-46f7-bb9c-00023225876d":{"componentFields":{}}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetName":"member_info","componentFields":{}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetName":"my_wallet","componentFields":{}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"04462ba4-2137-41bd-9460-0814554aae07":{"widgetName":"04462ba4-2137-41bd-9460-0814554aae07","componentFields":{}},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetName":"settings","componentFields":{}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetName":"notifications_app","componentFields":{}},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetName":"6ca9273a-a775-407c-87e1-9685588c9aa7","componentFields":{}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetName":"about","componentFields":{}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetName":"profile","componentFields":{}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"componentFields":{}},"169204d8-21be-4b45-b263-a997d31723dc":{"componentFields":{}},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetName":"Booking Service Page","componentFields":{}},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetName":"3c675d25-41c7-437e-b13d-d0f99328e347","componentFields":{}},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetName":"bookings_member_area","componentFields":{}},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetName":"e86ab26e-a14f-46d1-9d74-7243b686923b","componentFields":{}},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetName":"bookings_list","componentFields":{}},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetName":"service_list_widget","componentFields":{}},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetName":"0eadb76d-b167-4f19-88d1-496a8207e92b","componentFields":{}},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetName":"bookings_timetable_daily","componentFields":{}},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetName":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","componentFields":{}},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetName":"2f22f475-3ed1-41fd-90b7-221e92134f3c","componentFields":{}},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"componentFields":{}},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetName":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","componentFields":{}},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetName":"widget","componentFields":{}},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetName":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","componentFields":{}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetName":"wix_visitors","componentFields":{}}},"dataBinding":{}},"essentials":{"appsConductedExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"meetings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"false","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}}},"forceEmptySdks":false,"appDefIdToIsMigratedToGetPlatformApi":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":false,"675bbcef-18d8-41f5-800e-131ec9e08762":false,"1380b703-ce81-ff05-f115-39571d94dfcd":false,"27fcc256-f3f8-47df-a66a-8f8176cc7f99":false,"a5dd7ce8-07c2-4251-8d58-9657c1a43163":false,"225dd912-7dea-4738-8688-4b8c6955ffc2":false,"14271d6f-ba62-d045-549b-ab972ae1f70e":false,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":false,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":false,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":false,"215238eb-22a5-4c36-9e7b-e7c08025e04e":false,"47e245ca-1a42-4d6a-a69a-c125bc839b40":false,"df892fe9-626f-44c9-a328-e29f93880b38":false,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":false,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":false,"b976560c-3122-4351-878f-453f337b7245":false,"14cffd81-5215-0a7f-22f8-074b0e2401fb":false,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":false,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":false,"14f25924-5664-31b2-9568-f9c5ed98c9b1":false,"14dbef06-cc42-5583-32a7-3abd44da4908":false,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":false,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":false,"14517e1a-3ff0-af98-408e-2bd6953c36a2":false,"dataBinding":false}},"appsScripts":{"urls":{},"scope":"page"},"debug":{"disablePlatform":false,"disableSnapshots":false,"enableSnapshots":false},"isBuilderComponentModel":false}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"experiments":{"specs.thunderbolt.DisableSentry":true,"specs.thunderbolt.cmsDprNamedQueryParam":true,"specs.thunderbolt.viewport_hydration_extended_react_18":true,"specs.thunderbolt.inMemoryPaypalAuthToken":true,"specs.thunderbolt.roundBordersInResponsiveContainer":true,"specs.thunderbolt.PanoramaErrorMonitor":true,"specs.thunderbolt.userAsFactory":true,"specs.thunderbolt.getMemberDetailsFromMembersNg":true,"specs.thunderbolt.UseEEImpress":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.promote.ar.reportRestPurchaseEventsInsteadOfKafka":true,"specs.thunderbolt.guardAnonymousRequireJsDefine":true,"specs.thunderbolt.sendBiInlightbox":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.fixDisabledLinkButtonStyles":true,"specs.thunderbolt.UseEcomFemBi":true,"specs.thunderbolt.browserZoomHandler":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.siteMembersMultilingualLanguage":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.shouldRunCodEmbedsCallbackOnce":true,"specs.thunderbolt.componentCustomCss":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.useERCUndependentComp":true,"shouldUseEditorElementsLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.fedops_enableSampleRateForAppNames":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.dontTruncateScrollPosition":true,"specs.thunderbolt.excludeInstanceFromQueryParams":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.useLegacyLinkUtilsInPlatform":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.fullPageNavigationSpecificSites":true,"specs.thunderbolt.ComponentsRegistryFixAnonymousDefine":true,"specs.thunderbolt.newTransitionEndHandlerLogic":true,"specs.thunderbolt.postTransitionElementFocus":true,"specs.thunderbolt.LoginSocialBarSplitStateProps":true,"specs.thunderbolt.skipDecodeUri":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.uiTypeNativeMappers":true,"specs.thunderbolt.SetNoCacheOnAppError":true,"specs.thunderbolt.bundlerTrafficToAws":true,"specs.thunderbolt.HtmlComponentPropsMapper":true,"specs.thunderbolt.fixSafariTabHeight":true,"specs.thunderbolt.UseOriginalBlocksAppInstance":true,"specs.thunderbolt.showContentReflowBanner":true,"specs.thunderbolt.removeDynamicModelTopologyFromSiteAssets":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.pageUrlRegexIgnoreSpace":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.WRichTextPropsMapper":true,"specs.thunderbolt.wixRealtimeGetAppTokenFromPlatformUtils":true,"specs.thunderbolt.newLoginFlowOnProtectedCollection":true,"specs.thunderbolt.deprecatewixperf":true,"specs.thunderbolt.shouldSendCookiesForSiteMembersSettings":true,"specs.thunderbolt.calculateHeadEmbedsInSSR":true,"specs.thunderbolt.useNewRegisterLogin":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.shouldFixIosFlashBug":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.headerUseMargins":true,"specs.thunderbolt.popupCustom404":true,"specs.thunderbolt.TextInputPrefixWidthFix":true,"specs.thunderbolt.loadWebpackRuntimeInHead":true,"specs.thunderbolt.returnToPreviousPageOnProtectedPageClose":true,"specs.thunderbolt.lightboxFocusRestore":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.UseNewLoginSocialBarCustomMenuPositioning":true,"specs.thunderbolt.siteButtonKeyboardBehavior":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.os.EnableErrorHandlerInViewer":true,"specs.thunderbolt.lazySiteServicesManager":true,"shouldUseMABuilderLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.ShouldUseNewIAMSocialFlow":true,"specs.thunderbolt.lazy_load_iframe":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.useIAMEnabledConnections":true,"specs.thunderbolt.StoresCartNullOnShippingInfo":true,"specs.thunderbolt.logViewerModelDiff":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.useElementoryRelativePath":true,"specs.thunderbolt.HamburgerMenuOverflowFix":true,"specs.thunderbolt.preventGetMemberDetailsWaterfall":true,"specs.thunderbolt.linkBarNativeMapper":true,"specs.thunderbolt.outlineCss":true,"specs.thunderbolt.wrichtextListInRtl":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.addPlatformizationOptionSignUpFlow":true,"specs.thunderbolt.scrollToRetries":true,"specs.thunderbolt.addPlatformizationOptionLoginFlow":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.pageBGTransitionHandler":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.EmitSeoBodyRenderingMetadata":true,"specs.thunderbolt.shouldFetchLoginUrlByClientId":true,"specs.thunderbolt.shouldLoadGoogleSdkEarly":true,"specs.promote.ar.useFacebookSetupV1Service":true,"specs.thunderbolt.loadNewerSentrySdk":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.shouldUseMemberPrivacySettingsService":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.membersArea.LoginBarRemake":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.alwaysApplySessionTokenOnIAM":true,"specs.thunderbolt.sendFedopsLoadStartedReplaced":true,"specs.thunderbolt.SlideshowStopMediaInNonActiveSlides":true,"specs.thunderbolt.removeDynamicModelTopology":true,"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.routerDynamicPageOverride":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.biForBrowserZoom":true,"specs.thunderbolt.paidPlansSdkUseV2Orders":true,"specs.thunderbolt.shouldValidateRedirectUrl":true,"specs.thunderbolt.StoresCartZeroOnShippingAndTax":true,"specs.thunderbolt.cmsStandalone":true,"specs.thunderbolt.enableSignUpPrivacyNoteType":true,"specs.thunderbolt.vectorImageDecorativeClickElementTitle":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.veloWixMembersAmbassadorV2":true,"specs.thunderbolt.customElemCollapsedheight":true,"specs.thunderbolt.EagerSpeculationRules":true,"specs.thunderbolt.megaMenuMouseLeave":true,"specs.thunderbolt.useUrlFromBrowserWindowInsteadOfViewerModel":true,"specs.thunderbolt.fixMpaWorkerBi":true,"specs.thunderbolt.contextProviders":true,"specs.thunderbolt.WRichTextVerticalAlignTopSafariAndIOS":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.viewportOnBPChange":true,"specs.thunderbolt.vsmViewerModel":true,"specs.thunderbolt.resolveDocumentLink":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.UseWixDataItemService":true,"specs.thunderbolt.VerticalMenu_uiType_NativeMapper":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.splitLinkUtils":true,"specs.thunderbolt.recoverAnchorsOnClientRender":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.useNewBuilderSdkApi":true,"specs.thunderbolt.migrateStylableMenuUiTypeMapper":true,"specs.thunderbolt.UseCloudDataUrlWithBaseExternalUrl":true,"specs.thunderbolt.skipMasterPageComponentManifestCss":true,"specs.thunderbolt.dontCleanLightboxState":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.promote.ar.reportEcomPlatformPurchaseEvents":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.useIAMPlatform":true,"specs.thunderbolt.filterRobotsForConvertedDynamicPages":true,"specs.thunderbolt.veloBundlerParastorageUrl":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.fixSectionAnchorUrlHash":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.AddRegisterEventListenerToWixWindow":true,"specs.thunderbolt.fetchSVGfromNetworkInCSR":true,"specs.thunderbolt.runMappersWithSpecificDeps":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.LottieUseCanvasForIOSDevices":true,"specs.ident.usePlatformizedSMAuth":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.shouldSearchForRouterPrefix":true,"specs.thunderbolt.carouselGalleryImageFitting":true,"specs.thunderbolt.deduplicateSvgFetches":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.scrollToAnchorSsr":true,"specs.thunderbolt.pricingPlansUserOrdersV2":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.loginSocialBarEnableUrlChangeListeners":true,"specs.thunderbolt.pageTransitionScrollSmoothly":true,"specs.thunderbolt.buttonUdp_loggedIn":true,"specs.thunderbolt.preventAnchorReloadBeforeHydration":true,"specs.thunderbolt.InitPlatformApiProvider":true,"specs.thunderbolt.magnifyKeyboardOperability":true,"specs.thunderbolt.shouldMapFullContactInfoToIdentityProfile":true,"specs.thunderbolt.isClassNameToRootEnabledNext":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.render_dom_store_before_site":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.imageEncodingAVIF":true,"displayWixAdsNewVersion":true,"specs.thunderbolt.BundlerTypescriptListExportedFunctions":true,"specs.thunderbolt.smModalsShouldWaitForAppDidMount":true,"specs.thunderbolt.autoScrollingOnIphoneMPA":true,"specs.thunderbolt.ooi_css_optimization":true,"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.fixGapBelowTextboxonMobileSite":true,"specs.thunderbolt.useBuilderComponentTypeInBi":true,"specs.odeditor.socialPlayerChangeSource":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.overrideFloatInDistance":true,"specs.thunderbolt.editorElementsRegistryEnsureComponentLoaderFix":true,"specs.thunderbolt.moveFedopsLoadStartToBody":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.deduplicateFAQPageStructuredData":true,"specs.thunderbolt.shouldFetchLogoutUrlByClientId":true,"specs.thunderbolt.newIsScrollBlockedCondition":true,"specs.thunderbolt.routerFetchExtendedUrlLength":true,"specs.thunderbolt.retainInternalQueryParams":true,"specs.thunderbolt.convertBirthdateToISOString":true,"specs.thunderbolt.textMaskFontFallbacks":true,"specs.thunderbolt.dynamicPageServiceManager":true,"specs.thunderbolt.getAppTokenForCustomElement":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.previewRegion":true,"specs.thunderbolt.HeaderSectionAddVisibilityTransition":true,"specs.promote.ar.reportScheduleEventsOnPurchaseIfNeeded":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.newAuthorizedPagesFlow":true,"specs.thunderbolt.viewerWithoutWixDynamicCustomElements":true,"specs.thunderbolt.newControllersModel":true,"specs.thunderbolt.textScaleAdjust":true,"specs.thunderbolt.Panorama":true,"specs.thunderbolt.fetchCurrentMemberFromMembersNg":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.logoutOnIAM":true,"specs.thunderbolt.resolveElementPropsSlotRefs":true,"slideshowSlideLtrDirection":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.suspenseInSlots":true,"specs.thunderbolt.useNewTelemetryAPI":true,"specs.thunderbolt.UseNewLoginBarColorWiringOnE3":true},"formFactor":"desktop","isMobileDevice":false,"viewMode":"desktop","requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","interactionSampleRatio":0.01,"isPartialRouteMatching":false,"siteAssetsTestModuleVersion":"1.334.0","useLocalPiler":false,"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"deviceInfo":{"deviceClass":"Desktop"},"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"581c4737-f081-4a8b-afcb-ad4a6c98f9a2","isSEO":false,"appNameForBiEvents":"wix-studio"},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"language":{"userLanguage":"fr","userLanguageResolutionMethod":"QueryParam","siteLanguage":"fr","isMultilingualEnabled":true,"directionByLanguage":"ltr"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"anywhereConfig":{},"pilerExperiments":{"specs.piler.useEditorReactComponents":true},"rendererType":null,"siteAssets":{"dataFixersParams":{"experiments":{"dm_migrateOldHoverBoxToNewFixer":true,"dm_masterPageVariablesQueryFixer":true,"dm_bgScrubToMotionFixer":true},"dfVersion":"1.5507.0","isHttps":true,"isUrlMigrated":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","quickActionsMenuEnabled":false,"siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","siteRevision":4,"v":3,"cacheVersions":{"dataFixer":6}},"modulesParams":{"features":{"moduleName":"thunderbolt-features","contentType":"application\/json","resourceType":"features","languageResolutionMethod":"QueryParam","isMultilingualEnabled":true,"externalBaseUrl":"https:\/\/www.leshabitationssf.com","useSandboxInHTMLComp":false,"disableStaticPagesUrlHierarchy":false,"aboveTheFoldSectionsNum":null,"isTrackClicksAnalyticsEnabled":false,"isSocialElementsBlocked":false,"builderAppVersions":"","onlyInteractions":false},"platform":{"moduleName":"thunderbolt-platform","contentType":"application\/json","resourceType":"platform","externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/"},"css":{"moduleName":"thunderbolt-css","contentType":"application\/json","resourceType":"css","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"cssMappers":{"moduleName":"thunderbolt-css-mappers","contentType":"application\/json","resourceType":"cssMappers","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"siteMap":{"moduleName":"thunderbolt-site-map","contentType":"application\/json","resourceType":"siteMap","isDeployPreview":false},"mobileAppBuilder":{"moduleName":"thunderbolt-mobile-app-builder","resourceType":"mobileAppBuilder","contentType":"application\/json"},"builderComponentFeatures":{"moduleName":"builder-component-features","resourceType":"builderComponentFeatures","contentType":"application\/json"},"builderComponentCss":{"moduleName":"builder-component-css","resourceType":"builderComponentCss","contentType":"application\/json"},"builderComponentPlatform":{"moduleName":"builder-component-platform","resourceType":"builderComponentPlatform","contentType":"application\/json"},"componentManifestCss":{"moduleName":"component-manifest-css","resourceType":"componentManifestCss","contentType":"application\/json","builderAppVersions":""},"pilerSiteAssets":{"moduleName":"piler-siteassets","resourceType":"pilerSiteAssets","contentType":"application\/json","buildFullApp":"true","keepWidgetBuild":"false","modulesToHashes":"{\"builder-component-features\":\"4b88a47c.bundle.min\",\"builder-component-css\":\"9dbb5f79.bundle.min\",\"builder-component-platform\":\"dc429dc0.bundle.min\",\"component-manifest-css\":\"11b93432.bundle.min\",\"thunderbolt-css-mappers\":\"2cfa07a5.bundle.min\",\"thunderbolt-services-configs\":\"63fe9530.bundle.min\",\"thunderbolt-features\":\"d1e4c663.bundle.min\",\"thunderbolt-platform\":\"6e6fc8e8.bundle.min\",\"thunderbolt-css\":\"f5e0677a.bundle.min\",\"thunderbolt-site-map\":\"f7bcd51f.bundle.min\",\"thunderbolt-mobile-app-builder\":\"31087b5d.bundle.min\"}","nonBeckyModuleVersions":"{\"remote-widget-structure-builder\":\"1.251.0\",\"blocks-app-descriptor\":\"1.118.0\"}"}},"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"},"siteScopeParams":{"rendererType":null,"wixCodePageIds":["ebqqm","ycxvu","wdvyd"],"hasTPAWorkerOnSite":false,"formFactor":"desktop","viewMode":"desktop","freemiumBanner":false,"coBrandingBanner":false,"dayfulBanner":false,"mobileActionsMenu":false,"isWixSite":false,"isResponsive":true,"editorName":"Studio","urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"pageJsonFileNames":{"nd5z8":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658.json","xbscd":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658.json","ir3c1":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658.json","tbw7n":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658.json","x1rjp":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658.json","fcpv5":"5ae170_bfa3a744011b18064588457b988e1a12_658.json","digmz":"5ae170_8753b09b9c3e820a689be83f44036cce_658.json","c1dmp":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658.json","ebqqm":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658.json","og9af":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658.json","ee5l4":"5ae170_797441264f67257d2b398b280f9566f8_658.json","p8nxp":"5ae170_0e06c7b14722b1df76d73a702836cd87_658.json","ycxvu":"5ae170_6ef9978913518d22e3ff9884b42e9766_658.json","mwate":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658.json","zoy0o":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658.json","tjnio":"5ae170_b758cd293bd2e09407018e3925e51e65_658.json","lbsg6":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658.json","o2kzs":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658.json","wdvyd":"5ae170_b86b7b332566ae1077a701be4c21b168_658.json","quqwi":"5ae170_adf9bd4deafc8141e4494d55c958864f_658.json","jlcw6":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658.json","ua72s":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658.json","yg0c4":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658.json","xsdnd":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658.json","msjef":"5ae170_a275d88f982fef975679f7c85059c3df_658.json","masterPage":"5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json"},"protectedPageIds":["dkrww"],"routersInfo":{"configMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"isPremiumDomain":true,"disableSiteAssetsCache":false,"migratingToOoiWidgetIds":"","siteRevisionConfig":{"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53"},"registryLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"isInSeo":false,"language":"fr","originalLanguage":"fr","appDefinitionIdToSiteRevision":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":"45","a5dd7ce8-07c2-4251-8d58-9657c1a43163":"219","14271d6f-ba62-d045-549b-ab972ae1f70e":"25","14bcded7-0066-7c35-14d7-466cb3f09103":"1335","7479d596-137c-4fa3-89cd-d7091042ba61":"132","75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":"305","a0c68605-c2e7-4c8d-9ea1-767f9770e087":"6855","b976560c-3122-4351-878f-453f337b7245":"1358","13d21c63-b5ec-5912-8397-c3a5ddb27a97":"440"},"isClientSdkOnSite":true,"appDefinitionIdsWithCustomCss":["a0c68605-c2e7-4c8d-9ea1-767f9770e087"],"isBuilderComponentModel":false,"hasUserDomainMedia":false,"userDomainMediaPrefixes":[],"useViewerAssetsProxy":false},"beckyExperiments":{"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.thunderbolt.imageEncodingAVIF":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.addIdAsClassName":true},"manifests":{"node":{"modulesToHashes":{"builder-component-features":"4b88a47c.bundle.min","builder-component-css":"9dbb5f79.bundle.min","builder-component-platform":"dc429dc0.bundle.min","component-manifest-css":"11b93432.bundle.min","thunderbolt-css-mappers":"2cfa07a5.bundle.min","thunderbolt-services-configs":"63fe9530.bundle.min","thunderbolt-features":"d1e4c663.bundle.min","thunderbolt-platform":"6e6fc8e8.bundle.min","thunderbolt-css":"f5e0677a.bundle.min","thunderbolt-site-map":"f7bcd51f.bundle.min","thunderbolt-mobile-app-builder":"31087b5d.bundle.min"}},"web":{"modulesToHashes":{"thunderbolt-platform":"5964cb52.bundle.min","thunderbolt-css":"b0a1a83f.bundle.min","thunderbolt-site-map":"b9b1feb6.bundle.min","thunderbolt-mobile-app-builder":"f230dbce.bundle.min","builder-component-features":"0b72d3dd.bundle.min","builder-component-css":"59927667.bundle.min","builder-component-platform":"1edf9559.bundle.min","component-manifest-css":"c6491178.bundle.min","thunderbolt-css-mappers":"1a45a4a4.bundle.min","thunderbolt-services-configs":"adde9162.bundle.min","webpack-runtime":"e9817151.bundle.min","thunderbolt-features":"1a58e212.bundle.min"},"webpackRuntimeBundle":"e9817151.bundle.min"},"webWorker":{"modulesToHashes":{"thunderbolt-features":"1ef294b0.bundle.min","thunderbolt-platform":"00731b66.bundle.min","thunderbolt-css":"5f7bbbc8.bundle.min","thunderbolt-site-map":"55c26f60.bundle.min","thunderbolt-mobile-app-builder":"5f3ea117.bundle.min","builder-component-features":"bdcfc316.bundle.min","builder-component-css":"2aff705f.bundle.min","builder-component-platform":"308c31ea.bundle.min","component-manifest-css":"d471daee.bundle.min","thunderbolt-css-mappers":"adc1af89.bundle.min","thunderbolt-services-configs":"ed3b8b30.bundle.min"}}},"siteAssetsVersions":{"viewer-assets-generator":"1.0.0","santa-data-fixer":"1.5507.0","@wix\/santa-main-r":"1.1643.0","santa-main-r":"1.1643.0","@wix\/blocks-app-descriptor":"1.118.0","simple-all-pages":"1.0.0","blocks-builder-manifest-generator":"1.151.0","@wix\/santa-data-fixer":"1.5507.0","remote-widget-structure-builder":"1.251.0","remote-widget-metadata":"1.2593.0","santa-site-metadata":"1.3427.0","piler-siteassets":"1.937.0","stylable-santa-flatten":"2.0.222","@wix\/piler-siteassets":"1.937.0"},"staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/","remoteWidgetStructureBuilderVersion":"1.251.0","blocksBuilderManifestGeneratorVersion":"1.129.0"},"react18Compatible":true,"react18HydrationBlackListWidgets":["14756c3d-f10a-45fc-4df1-808f22aabe80"],"mpaBlacklistWidgets":[],"excludeCompsForSSRList":[""],"mpaNavigationCompatible":true,"mpaIncompatibleWidgetsList":[],"mpaExclusionReasons":[],"siteCacheable":true,"isolatedRenderer":true,"siteOwnerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","hasInteractions":false,"componentsExternalVersions":{}}</script> | |
| 2482 | +<script>window.viewerModel = JSON.parse(document.getElementById('wix-viewer-model').textContent)</script> | |
| 2483 | +<!-- renderIndicator --> | |
| 2484 | + | |
| 2485 | + | |
| 2486 | +<!-- versionIndicator --> | |
| 2487 | + | |
| 2488 | + | |
| 2489 | +<!-- used platform apis start --> | |
| 2490 | +<script type="application/json" id="used-platform-apis-data">["location","window","site","seo","user"]</script> | |
| 2491 | +<script>window.usedPlatformApis = JSON.parse(document.getElementById('used-platform-apis-data').textContent)</script> | |
| 2492 | +<!-- used platform apis end --> | |
| 2493 | + | |
| 2494 | +<!-- Business Manager --> | |
| 2495 | + | |
| 2496 | +<!-- initCustomElements #2 --> | |
| 2497 | + | |
| 2498 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6747"],{99090(e,t,o){o.d(t,{O:()=>c});let c=(e,t="")=>t.toLowerCase().includes("forcereducedmotion")||!!e?.matchMedia("(prefers-reduced-motion: reduce)").matches}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=19787)}),e.O()}]); | |
| 2499 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js.map</script> | |
| 2500 | + | |
| 2501 | +<!-- react --> | |
| 2502 | +<script crossorigin="" src="https://static.parastorage.com/unpkg/react@18.3.1/umd/react.production.min.js" onload="resolveExternalsRegistryModule('react')"></script> | |
| 2503 | +<!-- react-dom --> | |
| 2504 | +<script crossorigin="" defer="" src="https://static.parastorage.com/unpkg/react-dom@18.3.1/umd/react-dom.production.min.js" onload="resolveExternalsRegistryModule('reactDOM')"></script> | |
| 2505 | +<!-- lodash script --> | |
| 2506 | +<script async="" src="https://static.parastorage.com/unpkg/lodash@4.17.23/lodash.min.js" onload="resolveExternalsRegistryModule('lodash')"></script> | |
| 2507 | +<!-- initial scripts --> | |
| 2508 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/thunderbolt-commons.9eb9a4be.bundle.min.js"></script> | |
| 2509 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6008"],{68703(e,t,r){r.d(t,{L:()=>i});var a=r(8716),o=r(26778),n=r(49254);let i=(0,a.Og)([],()=>({definition:o.F,impl:n.J,config:{},platformConfig:{}}))},89973(e,t,r){r.d(t,{h:()=>i});var a=r(65672),o=r(48869);let n=({useBatch:e=!0,publishMethod:t=a.PublishMethods.Auto,endpoint:r,muteBi:o=!1,biStore:n,sessionManager:i,fetch:s,factory:d})=>d({useBatch:e,publishMethod:t,endpoint:r}).setMuted(o).withUoUContext({msid:n.msid}).withNonEssentialContext({visitorId:()=>i.getVisitorId(),siteMemberId:()=>i.getSiteMemberId()}).updateDefaults({vsi:n.viewerSessionId,_av:`thunderbolt-${n.viewerVersion}`,isb:n.is_headless,...n.is_headless&&{isbr:n.is_headless_reason}}),i={createBaseBiLoggerFactory:n,createBiLoggerFactoryForFedops:e=>{let{biStore:{session_id:t,initialTimestamp:r,initialRequestTimestamp:a,dc:i,microPop:s,is_headless:d,isCached:p,pageData:l,rolloutData:u,caching:c,checkVisibility:f=()=>"",viewerVersion:m,requestUrl:I,st:h,isSuccessfulSSR:A,mpaSessionId:_,siteOwnerId:E,uuid:S},muteBi:g=!1}=e;return n({...e,muteBi:g}).updateDefaults({ts:()=>Date.now()-r,tsn:()=>(function({initialRequestTimestamp:e,adjustForPrerender:t=!1}){if("undefined"==typeof window)return Math.round(performance.now()+(performance.timeOrigin-e));let r=t?(0,o.b)():0;return Math.round(performance.now()-r)})({initialRequestTimestamp:a,adjustForPrerender:!0}),dc:i,microPop:s,caching:c,session_id:t,st:h,url:I||l.pageUrl,ish:d,pn:l.pageNumber,isFirstNavigation:1===l.pageNumber,pv:f,pageId:l.pageId,isServerSide:!1,isSuccessfulSSR:A,is_lightbox:l.isLightbox,is_cached:p,is_sav_rollout:+!!u.siteAssetsVersionsRollout,is_dac_rollout:+!!u.isDACRollout,v:m,mpaSessionId:_,siteOwnerId:E,uuid:S,..."undefined"!=typeof document&&document.referrer&&{document_referrer:document.referrer},..."undefined"!=typeof navigator&&navigator.language&&{browserLanguage:navigator.language}})}}},48869(e,t,r){r.d(t,{b:()=>a});let a=()=>{let e=(()=>{if("undefined"==typeof performance||"function"!=typeof performance.getEntriesByType)return;let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e})();return e?.activationStart??0}},35499(e,t,r){r.d(t,{W:()=>p});var a=r(41394),o=r(41789),n=r(683),i=r(4291),s=r(6355),d=r(76526);let p=({biLoggerFactory:e,customParams:t={},phasesConfig:r="SEND_ON_FINISH",appName:p="thunderbolt",presetType:l=a.u.BOLT,reportBlackbox:u=!1,paramsOverrides:c={},factory:f,muteThunderboltEvents:m=!1,experiments:I={},monitoringData:h})=>{let A,_,E,S,g,N,R,b,v=f(p,{presetType:l,phasesConfig:r,isPersistent:!0,isServerSide:!1,reportBlackbox:u,customParams:t,biLoggerFactory:e,paramsOverrides:c,enableSampleRateForAppNames:(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames")??("undefined"!=typeof window&&(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames"))}),{interactionStarted:O,interactionEnded:w,appLoadingPhaseStart:T,appLoadingPhaseFinish:y,appLoadStarted:V,appLoaded:D}=v,C=(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedopsMuteErrors"),L=(0,d.isExperimentOpen)(I,"specs.thunderbolt.panoramaInSsr"),F="undefined"==typeof window,B=e=>e?.evid&&26===parseInt(e.evid,10),P=(A=(0,s.n)(),h?.viewerSessionId&&A.setSessionId(h.viewerSessionId),_=h?.metaSiteId??"",E=h?.dc??"",S=!!h?.isHeadless,g=!!h?.isCached,N=!!h?.rolloutData?.isTBRollout,R=!!h?.rolloutData?.isDACRollout,b=!!h?.rolloutData?.siteAssetsVersionsRollout,(0,n.V)({baseParams:{platform:i.OD.Viewer,msid:_,fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",artifactVersion:h?.artifactVersion,componentId:p},pluginParams:{useBatch:!0},data:{dataCenter:E,isHeadless:S,isCached:g,isRollout:N,isDacRollout:R,isSavRollout:b,isSsr:!1,presetType:l,customParams:t},reporterOptions:F?{fetchFn:fetch}:{}}).withGlobalConfig(A).client()),G=e=>{P&&(L||!F)&&(e?P.reportLoadStart():P.reportLoadFinish())},x=(e,t,r)=>{if(!P)return;let a=e.replaceAll(" ","_");t?P.transaction(a).start(r):P.transaction(a).finish(r)},M=(e,t,r,n)=>{if(o.iy.has(p))return!0;if(((e,t,r)=>{let n;return B(r)?C:(n=r?.siteAssetsModule??"",!(l!==a.u.BOLT||o.EQ.has(e)||t&&["thunderbolt-css","thunderbolt-features","thunderbolt-platform"].includes(n)))})(e,t,n))return!1;if(n?.siteAssetsModule)return!0;let i=!!r?.appId&&!o.S_.has(r.appId),s=o.S2.has(e),d=o.wV.has(e);return s||i||!d&&!m};return v.interactionStarted=(e,t)=>{if(B(t?.paramsOverrides)?((e={})=>{if(!P)return;let{errorInfo:t,errorType:r}=e,a=Error(t);P?.errorMonitor().reportError(a,{errorName:r,environment:"Viewer"})})(t?.paramsOverrides):(L||e.startsWith("platform_")||!F)&&x(e,!0),M(e,!0,void 0,t?.paramsOverrides))return O.call(v,e,t);try{performance.mark(`${e} started`)}catch(e){}return{timeoutId:0}},v.interactionEnded=(e,t)=>{if((L||e.startsWith("platform_")||!F)&&x(e,!1),M(e,!0,void 0,t?.paramsOverrides))w.call(v,e,t);else try{performance.mark(`${e} ended`)}catch(e){}},v.appLoadingPhaseStart=(e,t)=>{if(x(e,!0,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))T.call(v,e,t);else try{performance.mark(`${e} started`)}catch(e){}},v.appLoadingPhaseFinish=(e,t,r)=>{if(x(e,!1,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))y.call(v,e,t,r);else try{performance.mark(`${e} finished`)}catch(e){}},v.appLoadStarted=e=>{G(!0),V.call(v,e)},v.appLoaded=e=>{G(!1),D.call(v,e)},v}},81855(e,t,r){r.d(t,{c:()=>a});let a=e=>{let t="thunderbolt-commons";return{reportAsyncWithCustomKey:(r,a,o)=>e.reportAsyncWithCustomKey(r,t,a,o),runAsyncAndReport:(r,a)=>e.runAsyncAndReport(r,t,a),runAndReport:(r,a)=>e.runAndReport(r,t,a),reportError:r=>{e.captureError(r,{tags:{feature:t,clientMetricsReporterError:!0}})},meter:(t,r)=>{e.meter(t,r)},histogram:(e,t)=>{}}}},27256(e,t,r){r.r(t),r.d(t,{createBiReporter:()=>i,site:()=>s});var a=r(73388),o=r(60990);let n=(...e)=>console.log("[TB] ",...e);function i(e=n,t=n,r=()=>{},a=n,o=n){return{reportBI:e,sendBeat:t,setDynamicSessionData:r,reportPageNavigation:a,reportPageNavigationDone:o}}let s=({biReporter:e,wixBiSession:t,viewerModel:r})=>n=>{n(a.O$).toConstantValue(t),n(a.u6).toConstantValue(e),n(a.lR).toConstantValue((0,o.f)(r))}},94756(e,t,r){r.d(t,{lF:()=>n,mY:()=>s,w4:()=>i});var a,o,n=((a={})[a.START=1]="START",a[a.VISIBLE=2]="VISIBLE",a[a.PARTIALLY_VISIBLE=12]="PARTIALLY_VISIBLE",a[a.PAGE_FINISH=33]="PAGE_FINISH",a[a.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",a[a.TBD=-1]="TBD",a[a.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",a[a.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE",a),i=((o={})[o.NAVIGATION=1]="NAVIGATION",o[o.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",o[o.INNER_ROUTE=3]="INNER_ROUTE",o[o.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",o[o.CANCELED=5]="CANCELED",o);let s={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}},73388(e,t,r){r.d(t,{O$:()=>o,lR:()=>n,u6:()=>a});let a=Symbol.for("BI"),o=Symbol.for("WixBiSessionSymbol"),n=Symbol.for("appName")}}]); | |
| 2510 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js.map</script> | |
| 2511 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.209eb21d.bundle.min.js"></script> | |
| 2512 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.99fa8096.bundle.min.js"></script> | |
| 2513 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["8426"],{7146(e,r,t){t.r(r),t.d(r,{platformWorkerPromise:()=>m});let s=window.viewerModel,a=s?.siteFeatures||[],o=s?.siteFeaturesConfigs?.platform,p=s?.siteAssets?.clientTopology,l=s?.site?.externalBaseUrl,i=window.usedPlatformApis,n="undefined"!=typeof Worker&&a.includes("platform")&&!!o,c=async()=>{let e;if(!o?.clientWorkerUrl||!o?.appsScripts||!o?.bootstrapData)return void console.warn("[create-worker] Platform config incomplete (missing clientWorkerUrl, appsScripts, or bootstrapData), skipping worker creation");let r="platform_create-worker started";performance.mark(r);let{clientWorkerUrl:t,appsScripts:s,bootstrapData:a,sdksStaticPaths:n}=o,{appsSpecData:c={},appDefIdToIsMigratedToGetPlatformApi:m={},forceEmptySdks:d}=a||{},f=new Worker(t.startsWith("http://localhost:")||document.baseURI!==location.href?(e=new Blob([`importScripts('${t}');`],{type:"application/javascript"}),URL.createObjectURL(e)):t.replace(p?.fileRepoUrl||"",`${l}/_partials`)),k=s?.urls||{},u=Object.keys(k).filter(e=>!c[e]?.isModuleFederated).reduce((e,r)=>(e[r]=k[r],e),{});n&&n.mainSdks&&n.nonMainSdks&&(Object.values(m).every(e=>e)||d?f.postMessage({type:"preloadNamespaces",namespaces:i}):f.postMessage({type:"preloadAllNamespaces",sdksStaticPaths:n})),f.postMessage({type:"platformScriptsToPreload",appScriptsUrls:u});let w="platform_create-worker ended";return performance.mark(w),performance.measure("Create Platform Web Worker",r,w),f},m=n?c():Promise.resolve()}},function(e){e(e.s=7146)}]); | |
| 2514 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js.map</script> | |
| 2515 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1625"],{97534(){var e;let n,a,t;e=window,n=new Set,a=[],t=e=>{let a=[];n.forEach(n=>{e.canHandleEvent(n)&&a.push(n)}),a.forEach(a=>{n.delete(a),e.handleEvent(a)})},e.addEventListener("message",e=>{let d={source:e.source,data:e.data,origin:e.origin},s=a.find(e=>e.canHandleEvent(d));s?(t(s),s.handleEvent(d)):n.add(d)}),e._addWindowMessageHandler=e=>{a.push(e),t(e)}}},function(e){e(e.s=97534)}]); | |
| 2516 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js.map</script> | |
| 2517 | + | |
| 2518 | +<!-- scriptTagsToPreload --> | |
| 2519 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2520 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2521 | +<link href="https://static.parastorage.com/services/pro-gallery-tpa/1.1531.0/WixProGalleryViewerWidget.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2522 | +<link href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2523 | + | |
| 2524 | + | |
| 2525 | + <!-- Old Browsers Deprecation --> | |
| 2526 | + <script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.bundle.es5.js"></script> | |
| 2527 | + | |
| 2528 | + | |
| 2529 | +<!-- bi --> | |
| 2530 | +<script> | |
| 2531 | + window.clientSideRender = false; | |
| 2532 | +</script> | |
| 2533 | +<!-- bi --> | |
| 2534 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["9114"],{80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>u});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},u=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:u}=window,p=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:p,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:u?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=u,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),u.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=80974)}),e.O()}]); | |
| 2535 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js.map</script> | |
| 2536 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1698"],{40250(e,i,n){var r=n(94756);n(80974).K.sendBeat(r.lF.PARTIALLY_VISIBLE,"Partially visible",{pageId:window.firstPageId})},80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>p});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},p=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:p}=window,u=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:u,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:p?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=p,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),p.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=40250)}),e.O()}]); | |
| 2537 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js.map</script> | |
| 2538 | +<script> | |
| 2539 | + window.firstPageId = 'ebqqm' | |
| 2540 | + | |
| 2541 | + if (window.requestCloseWelcomeScreen) { | |
| 2542 | + window.requestCloseWelcomeScreen() | |
| 2543 | + } | |
| 2544 | + if (!window.__browser_deprecation__) { | |
| 2545 | + window.fedops.phaseStarted('partially_visible', {paramsOverrides: { pageId: firstPageId, isSuccessfulSSR: !clientSideRender }}) | |
| 2546 | + } | |
| 2547 | +</script> | |
| 2548 | + | |
| 2549 | + <script> | |
| 2550 | + const wixAdsOffsetHeight = document.querySelector(':is(.WIX_ADS, #WIX_ADS)')?.offsetHeight || 0; | |
| 2551 | + const header = document.getElementsByTagName('header')[0]; | |
| 2552 | + | |
| 2553 | + let headerOffsetHeight = 0; | |
| 2554 | + | |
| 2555 | + if (header) { | |
| 2556 | + const headerPosition = window.getComputedStyle(header).getPropertyValue('position').toLowerCase(); | |
| 2557 | + const isHeaderStickyOrFixed = headerPosition === 'sticky' || headerPosition === 'fixed'; | |
| 2558 | + headerOffsetHeight = isHeaderStickyOrFixed ? header.offsetHeight : 0; | |
| 2559 | + } | |
| 2560 | + | |
| 2561 | + document.documentElement.style.scrollPaddingTop = `${wixAdsOffsetHeight + headerOffsetHeight}px`; | |
| 2562 | + </script> | |
| 2563 | + | |
| 2564 | + | |
| 2565 | + | |
| 2566 | + <script defer="" src="https://static.parastorage.com/services/tag-manager-client/1.1066.0/siteTags.bundle.min.js"></script> | |
| 2567 | + | |
| 2568 | + | |
| 2569 | + | |
| 2570 | + | |
| 2571 | + | |
| 2572 | + | |
| 2573 | + | |
| 2574 | + | |
| 2575 | + | |
| 2576 | + <!--pageHtmlEmbeds.bodyEnd start--> | |
| 2577 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd start"></script> | |
| 2578 | + | |
| 2579 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd end"></script> | |
| 2580 | + <!--pageHtmlEmbeds.bodyEnd end--> | |
| 2581 | + | |
| 2582 | + | |
| 2583 | + | |
| 2584 | + | |
| 2585 | + | |
| 2586 | + | |
| 2587 | + | |
| 2588 | +<!-- warmup data start --> | |
| 2589 | +<script type="application/json" id="wix-warmup-data">{"platform":{"ssrPropsUpdates":[{"comp-m8omdber7":{"isValid":false,"options":[{"key":"0","value":"LUXUEUX 5 1\/2 À SAINT CHARLES BORROMEE ","text":"LUXUEUX 5 1\/2 À SAINT CHARLES BORROMEE "}]},"comp-m8omdbec15":{"isValid":false},"comp-m8omdbeg9":{"isValid":false},"comp-m8omdbeh9":{"isValid":false},"comp-m8omdbei9":{"isValid":false},"comp-m8omdben":{"isValid":true},"comp-m8or8zjr":{"isValid":false},"comp-m8omdbez":{"html":""},"comp-m8oqu8301":{"html":"<p class=\"font_8 wixui-rich-text__text\">LUXUEUX 5 1\/2 À SAINT CHARLES BORROMEE <\/p>"},"comp-m8omdbf39":{"html":"<p class=\"font_7 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\"><span class=\"wixGuard\">​<\/span><\/span><\/p>"},"comp-m8omdbf68":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">3<\/span><\/p>"},"comp-m8omdbf916":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1<\/span><\/p>"},"comp-m8omdbfc10":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\"><span class=\"wixGuard\">​<\/span><\/span><\/p>"},"comp-m8omdbff":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">1675<\/span><\/p>"},"comp-m8oobbzb":{"html":"<p class=\"font_8 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">MOIS<\/span><\/p>"},"comp-m8omdbf211":{"html":"<h6 class=\"font_6 wixui-rich-text__text\"><span class=\"wixui-rich-text__text\">Disponible<\/span><\/h6>","corvid":{"hasColor":true}}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false}},{"comp-m8omdbec15":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeg9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeh9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbei9":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdben":{"value":"","isValid":true,"shouldShowValidityIndication":false},"comp-m8omdber7":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8or8zjr":{"value":"","isValid":false,"shouldShowValidityIndication":false},"comp-m8omdbeu13":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Nous avons reçu votre demande. Nous vous contacterons sous-peu.<\/p><\/div>","ariaAttributes":{"live":"polite"}},"comp-m8omdbew":{"html":"<div aria-hidden=\"true\" class=\"wixui-rich-text__text\"><p class=\"font_8 wixui-rich-text__text wixui-rich-text__text\">Une erreur s'est produite. Veuillez réessayer.<\/p><\/div>","ariaAttributes":{"live":"polite"}}}],"ssrStyleUpdates":[{"comp-m8omdbf211":{"--corvid-color":"green"},"comp-m8omdbf2":{"--container-corvid-background-color":"#D1FFBD"}}],"ssrStructureUpdates":[]},"pages":{"compIdToTypeMap":{"masterPage":"MasterPage","SITE_HEADER":"HeaderContainer","PAGES_CONTAINER":"PagesContainer","SITE_FOOTER":"FooterContainer","SITE_PAGES":"PageGroup","BACKGROUND_GROUP":"BackgroundGroup","SCROLL_TO_TOP":"Anchor","SCROLL_TO_BOTTOM":"Anchor","SKIP_TO_CONTENT_BTN":"SkipToContentButton","comp-m8omcih82":"AppController","comp-m8oopad5":"AppController","comp-mfl8zvjs":"AppController","comp-m8omdbez":"WRichText","comp-m8oqbc3l":"GoogleMap","comp-m8omcigd2_r_comp-kd5pdf7t":"WRichText","comp-m8omcih716_r_comp-kd5px9kk":"ExpandableMenu","comp-m8omcih716_r_comp-kkmqi5tc":"VectorImage","comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID":"AppController","comp-m8oqu82u":"WRichText","comp-m8oqu82z":"WRichText","comp-m8oqu8301":"WRichText","comp-m8omdbf39":"WRichText","comp-m8omcigd2_r_comp-m2y12dql":"WRichText","comp-m8omdbea15":"WRichText","comp-m8omdbeb13":"WRichText","comp-m8omdbec15":"TextInput","comp-m8omdbeg9":"TextInput","comp-m8omdbeh9":"TextInput","comp-m8omdbei9":"TextInput","comp-m8omdben":"TextAreaInput","comp-m8omdber7":"ComboBoxInput","comp-m8omdbeu13":"WRichText","comp-m8omdbew":"WRichText","comp-m8omdbex1":"StylableButton","comp-m8or8zjr":"ComboBoxInput","comp-m8omdbf211":"WRichText","comp-m8omdbf510":"VectorImage","comp-m8omdbf813":"VectorImage","comp-m8omcigd2_r_comp-m2y1gkmp":"WRichText","comp-m8omcigd2_r_comp-m8j7o6oq":"VectorImage","comp-m8omcigd2_r_comp-m2y10ib8":"ExpandableMenu","comp-m8omcigd2_r_comp-mbweuill":"LanguageSelector","comp-m8omcihb_r_comp-m2xz2cwh":"SiteButton","comp-m8omcihb_r_comp-m8j7mq6v":"VectorImage","comp-m8omcihb_r_comp-mdez2caz":"VerticalLine","comp-m8omcihb_r_comp-mdeylyv3":"LinkBar","comp-m8omcihb_r_comp-mdf18wki":"WRichText","comp-m8omdbf68":"WRichText","comp-m8omdbf711":"WRichText","comp-m8omdbf916":"WRichText","comp-m8omdbfa13":"WRichText","comp-m8omdbfc10":"WRichText","comp-m8omdbfd11":"WRichText","comp-m8omdbff":"WRichText","comp-m8ooawu0":"WRichText","comp-m8omdbfg7":"WRichText","comp-m8oobbzb":"WRichText","comp-m8omcihb_r_comp-lxu2mi38":"HamburgerOpenButton","comp-m8omcihb_r_comp-lxu2mi3i1":"HamburgerCloseButton","comp-m8omcihb_r_comp-m5rceatr":"SiteButton","comp-m8omcihb_r_comp-lxubhuix":"ExpandableMenu","comp-m8omcihb_r_comp-mdezahz3":"LanguageSelector","comp-m8omcihb_r_comp-mdf0r6km":"WRichText","comp-m8omcihb_r_comp-mdf0tx18":"StylableButton","listModal_comp-m8omdber7":"ComboBoxInputListModal","listModal_comp-m8or8zjr":"ComboBoxInputListModal","portal-comp-m8omcihb_r_comp-m99166jr":"MenuContent","portal-comp-m8omcihb_r_comp-mdeyqfi8":"MenuContent","ebqqm":"Page","comp-m8omdbdn":"Section","comp-m8omcigd2":"RefComponent","comp-m8omcih716":"RefComponent","comp-m8omcihb":"RefComponent","comp-m9cxxt3r":"RefComponent","comp-m8oqdae2":"Container","comp-m8omdbdr7":"Container","comp-m8omdbdy12":"Container","comp-m8omdbey11":"Container","comp-m8omdbf0":"Container","comp-m8oqa661":"Container","comp-m8omcigd2_r_comp-kbgakgyt":"FooterSection","comp-m8omcih716_r_comp-kd5px9hr":"MenuContainer","comp-m8omcihb_r_comp-kbgajy18":"HeaderSection","comp-m9cxxt3r_r_comp-m9cxxr9c":"TPAGluedWidget","comp-m8omdbe910":"Container","comp-m8oqu82o":"Container","comp-m8omf94r":"Container","comp-m8omdbf1":"Container","comp-m8omcigd2_r_comp-m2y11976":"Container","comp-m8omcihb_r_comp-m6saac0q":"tpaWidgetNative","comp-m8omcihb_r_comp-m6saadbd":"GhostComp","comp-m8omcihb_r_comp-mdeyh2rw":"Container","comp-m8omdbea7":"Container","comp-m8omdbec6":"Container","comp-m8omf94t":"tpaWidgetNative","comp-m8omdbf2":"Container","comp-m8omdbf415":"Container","comp-m8omdbf82":"Container","comp-m8omdbfb14":"Container","comp-m8omdbfe":"Container","comp-m8omcigd2_r_comp-m2y1gxle":"Container","comp-m8omcigd2_r_comp-m8j7owsd":"Container","comp-m8omcihb_r_comp-m2xyvk9x":"Container","comp-m8omcihb_r_comp-mdeyhsow":"Container","comp-m8omdbf61":"Container","comp-m8omdbf97":"Container","comp-m8omdbfc3":"Container","comp-m8omdbfe11":"Container","comp-m8omcigd2_r_comp-m2y1awex":"tpaWidgetNative","comp-m8omcihb_r_comp-lxu2mi30":"HamburgerMenuRoot","comp-m8omcihb_r_comp-m73v5p0x":"tpaWidgetNative","comp-m8omcihb_r_comp-m99166jr":"Menu","comp-m8omcihb_r_comp-mdeyqfi8":"Menu","comp-m8omcihb_r_comp-lxu2mi3c":"HamburgerOverlay","comp-m8omcihb_r_comp-lxu2mi3d5":"HamburgerMenuContainer","comp-m8omcihb_r_comp-m5rceko6":"Container","comp-m8omcihb_r_comp-mdezy72f":"Repeater","comp-m8omcihb_r_comp-mdezy72s":"Container","comp-m8omcihb-pinned-layer":"PinnedLayer","PAGE_SECTIONSebqqm":"PageSections","comp-m8omcih716-pinned-layer":"PinnedLayer","comp-m8omcih82-pinned-layer":"PinnedLayer","comp-m8oopad5-pinned-layer":"PinnedLayer","comp-m9cxxt3r-pinned-layer":"PinnedLayer","comp-mfl8zvjs-pinned-layer":"PinnedLayer","Containerebqqm":"ResponsiveContainer","comp-m8omdbdn_relative":"ResponsiveContainer","comp-m8oqdae2_relative":"ResponsiveContainer","comp-m8omdbdr7_relative":"ResponsiveContainer","comp-m8omdbdy12_relative":"ResponsiveContainer","comp-m8omdbey11_relative":"ResponsiveContainer","comp-m8omdbf0_relative":"ResponsiveContainer","comp-m8oqa661_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-kbgakgyt_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-kbgajy18_relative":"ResponsiveContainer","comp-m8omdbe910_relative":"ResponsiveContainer","comp-m8oqu82o_relative":"ResponsiveContainer","comp-m8omf94r_relative":"ResponsiveContainer","comp-m8omdbf1_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y11976_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyh2rw_relative":"ResponsiveContainer","comp-m8omdbea7_relative":"ResponsiveContainer","comp-m8omdbec6_relative":"ResponsiveContainer","comp-m8omdbf2_relative":"ResponsiveContainer","comp-m8omdbf415_relative":"ResponsiveContainer","comp-m8omdbf82_relative":"ResponsiveContainer","comp-m8omdbfb14_relative":"ResponsiveContainer","comp-m8omdbfe_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m2y1gxle_relative":"ResponsiveContainer","comp-m8omcigd2_r_comp-m8j7owsd_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m2xyvk9x_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdeyhsow_relative":"ResponsiveContainer","comp-m8omdbf61_relative":"ResponsiveContainer","comp-m8omdbf97_relative":"ResponsiveContainer","comp-m8omdbfc3_relative":"ResponsiveContainer","comp-m8omdbfe11_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-m5rceko6_relative":"ResponsiveContainer","comp-m8omcihb_r_comp-mdezy72s_relative":"ResponsiveContainer","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","ebqqm_luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-":"PageMountUnmount"}},"appsWarmupData":{"dataBinding":{"schemas":{"Location":{"displayName":"À Louer","plugins":{},"allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"id":"Location","fields":{"imageSecondaire":{"displayName":"Image Secondaire","sortable":true,"isDeleted":false,"type":"image","index":12},"nombreDeChambres":{"displayName":"Nombre de Chambre(s)","sortable":true,"isDeleted":false,"type":"text","index":14},"adresseCivique":{"displayName":"Adresse Civique","sortable":true,"isDeleted":false,"type":"text","index":8},"_id":{"displayName":"ID","sortable":true,"isDeleted":false,"type":"text","index":1},"imagePrinciple":{"displayName":"Image Principle","sortable":true,"isDeleted":false,"type":"image","index":11},"_owner":{"displayName":"Owner","sortable":true,"isDeleted":false,"type":"text","index":4},"_createdDate":{"displayName":"Created Date","sortable":true,"isDeleted":false,"type":"datetime","index":2},"imagesEtVideosDeLaProprit":{"displayName":"Images et Videos de la propriété","sortable":true,"isDeleted":false,"type":"media-gallery","index":13},"frquence":{"displayName":"Fréquence","sortable":true,"isDeleted":false,"type":"text","index":7},"link-location-title":{"displayName":"Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":5},"superficiePi2":{"displayName":"Superficie (Pi2)","sortable":true,"isDeleted":false,"type":"number","index":21},"descriptionDeLaProprit":{"displayName":"Description de la Propriété","sortable":true,"isDeleted":false,"type":"richtext","index":16},"_updatedDate":{"displayName":"Updated Date","sortable":true,"isDeleted":false,"type":"datetime","index":3},"enVedette":{"displayName":"En Vedette","sortable":true,"isDeleted":false,"type":"boolean","index":23},"nombreDeSallesDeBain":{"displayName":"Nombre de Salle(s) de bain","sortable":true,"isDeleted":false,"type":"text","index":15},"prix":{"displayName":"Prix","sortable":true,"isDeleted":false,"type":"number","index":6},"adresseComplte":{"displayName":"Adresse Complète","sortable":true,"isDeleted":false,"type":"address","index":10},"typeDimmeuble":{"displayName":"Type d'immeuble","sortable":true,"isDeleted":false,"type":"array<string>","index":18},"region":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"array<string>","index":22},"disponibilite":{"displayName":"Disponibilité","sortable":true,"isDeleted":false,"type":"boolean","index":19},"ville":{"displayName":"Ville","sortable":true,"isDeleted":false,"type":"text","index":9},"title":{"displayName":"Titre de l'annonce","sortable":true,"isDeleted":false,"type":"text","index":0},"link-copy-of-location-title":{"displayName":"Copy of Location (Item)","calculator":{"config":{"lowercase":true,"pattern":"\/copy-of-location\/{title}"}},"sortable":false,"queryOperators":["eq","ne","lt","gt","lte","gte","exists"],"isDeleted":false,"type":"pagelink","index":20},"nombreDeSallesDeBain1":{"displayName":"Nombre de Pièces","sortable":true,"isDeleted":false,"type":"text","index":17}},"displayField":"title","defaultSort":null,"pagingMode":["OFFSET","CURSOR"]},"DemandedereservationAlouer":{"id":"DemandedereservationAlouer","isDeleted":false,"namespace":null,"storage":"docstore","ownerAppId":null,"displayNamespace":null,"displayField":"prenom","allowedOperations":["patch","isReferenced","insert","save","bulkInsert","bulkUpdate","update","truncate","remove","removeReference","count","bulkPatch","find","replaceReferences","bulkRemove","insertReference","get","bulkSave","queryReferenced","distinct","aggregate"],"collectionOperations":["update","remove"],"fields":{"title":{"displayName":"Title","systemField":false,"sortable":true,"isDeleted":false,"index":0,"type":"text","plugins":{}},"_id":{"displayName":"ID","systemField":true,"sortable":true,"isDeleted":false,"index":1,"type":"text","plugins":{}},"_createdDate":{"displayName":"Created Date","systemField":true,"sortable":true,"isDeleted":false,"index":2,"type":"datetime","plugins":{}},"_updatedDate":{"displayName":"Updated Date","systemField":true,"sortable":true,"isDeleted":false,"index":3,"type":"datetime","plugins":{}},"_owner":{"displayName":"Owner","systemField":true,"sortable":true,"isDeleted":false,"index":4,"type":"text","plugins":{}},"prenom":{"displayName":"Prenom","systemField":false,"sortable":true,"isDeleted":false,"index":5,"type":"text","plugins":{}},"nomDeFamille":{"displayName":"Nom de Famille","systemField":false,"sortable":true,"isDeleted":false,"index":6,"type":"text","plugins":{}},"courriel":{"displayName":"Courriel","systemField":false,"sortable":true,"isDeleted":false,"index":7,"type":"text","plugins":{}},"message":{"displayName":"Message","systemField":false,"sortable":true,"isDeleted":false,"index":8,"type":"text","plugins":{}},"telephone":{"displayName":"Telephone","systemField":false,"sortable":true,"isDeleted":false,"index":9,"type":"text","plugins":{}},"units":{"displayName":"Units","systemField":false,"sortable":true,"isDeleted":false,"index":10,"type":"text","plugins":{}},"demandeDuClient":{"displayName":"Demande du client","systemField":false,"sortable":true,"isDeleted":false,"index":11,"type":"text","plugins":{}}},"displayName":"Demande de réservation(À louer)","permissions":{"read":"admin","insert":"anyone","remove":"admin","update":"admin"},"dataPermissions":{"itemRead":"CMS_EDITOR","itemInsert":"ANYONE","itemUpdate":"CMS_EDITOR","itemRemove":"CMS_EDITOR"},"defaultSort":null,"version":17,"plugins":{"multilingual":{"translatable":["title","prenom","nomDeFamille","courriel","message","telephone","units","demandeDuClient"]},"persistentPageLink":{"isPersisted":true,"isUpdatable":true}},"pagingMode":["OFFSET","CURSOR"],"translatable":false,"ttl":null,"capabilities":{"indexing":{"regular":3,"regular1Field":0,"compound":3,"unique":1,"total":4}},"updatedDate":"2025-06-14T15:46:48.449Z"}},"dataStore":{"recordInfosByDatasetId":{"comp-m8omcih82":{"itemIds":["eb3e7ea4-c49e-4483-8513-012cdbf3f492"],"datasetSize":{"total":1,"loaded":1},"collectionId":"Location"},"comp-mfl8zvjs":{"itemIds":["75c0dc6e-69fa-455c-941d-35d088470b1a"],"datasetSize":{"total":35,"loaded":1,"cursor":"LnjjKFfK1ctcCwS+lMrkakAUQRljm\/eZmzXq6obmU1FXnFZG72++tuOwumy5vDdnJ+N5f3W1Z8\/dZjvNTHriwUirXjrEnjSM9dZB+ppPTpevnoG5r8yzMfVI1hX41f\/pdfIr1kSUmGOdXFj5XpMio4Os5HXUR12t1J5WH\/25UDHs8EAKb+PqPoAerg0m4ch0bpoVdAxIm6ywwOOmgY8xfvP50i2A1Mxnzoq6ysFCkYHiIMC9HTZ26j\/+\/6e6FeDvUZCz\/4QMWEW\/LVySM782RM5MX6nVP745D5L1cjm3jFQFWulxIV5U1d9PYLKqUwV+H8ZYqvL51p9Uh9OMTfabSVjpfsAqnl05uOwFOBF1Qf0Y907kZUW+no9ye97Hc6k45Us7B6jeXtS3e3XjLgZtfILgSCVzfenPd7H+j2SyU0shIsp2VVIkcHSzTGKTDvRCmn3lGYc\/iz1Lz\/VKv6awng=="}}},"recordsByCollectionId":{"Location":{"eb3e7ea4-c49e-4483-8513-012cdbf3f492":{"imageSecondaire":"wix:image:\/\/v1\/5ae170_746caf740019410c968110cecafbccfa~mv2.png\/IMG_7364.HEIC#originWidth=3024&originHeight=4032","nombreDeChambres":"3","adresseCivique":"610 boul assomption ouest","_id":"eb3e7ea4-c49e-4483-8513-012cdbf3f492","imagePrinciple":"wix:image:\/\/v1\/5ae170_53dc56e7e4dd47b7a01abb7ea1bdc238~mv2.png\/IMG_7389.HEIC#originWidth=5712&originHeight=4284","_owner":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","_createdDate":{"$date":"2025-08-31T20:46:55.956Z"},"imagesEtVideosDeLaProprit":[{"description":"","slug":"5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_b9e7203b6ac14619ab3ed81105ed88f8~mv2.png\/IMG_7364.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7364.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_d198717eef6d480b90a883ac12d51ad9~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_d198717eef6d480b90a883ac12d51ad9~mv2.png\/IMG_7363.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7363.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_34ac0a647bea46dd948f665111444c37~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_34ac0a647bea46dd948f665111444c37~mv2.png\/IMG_7367.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7367.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_d3d0a43fedfa4730a6202461c2f52e1a~mv2.png\/IMG_7366.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7366.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_45c7a4c8a6564996b1f3fa3b8ad2c2f4~mv2.png\/IMG_7368.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7368.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_d97519304d97415e85671ee6608f2c43~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_d97519304d97415e85671ee6608f2c43~mv2.png\/IMG_7370.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7370.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}},{"description":"","slug":"5ae170_a6ca9471c999496893473bf9a159a06d~mv2","alt":"","src":"wix:image:\/\/v1\/5ae170_a6ca9471c999496893473bf9a159a06d~mv2.png\/IMG_7369.HEIC#originWidth=3024&originHeight=4032","title":"IMG_7369.HEIC","type":"image","settings":{"width":3024,"height":4032,"focalPoint":[0.5,0.5]}}],"frquence":"MOIS","link-location-title":"\/location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","_updatedDate":{"$date":"2025-08-31T20:46:55.956Z"},"enVedette":true,"nombreDeSallesDeBain":"1","prix":1675,"adresseComplte":{"city":"Saint-Charles-Borromée","location":{"latitude":46.0379096,"longitude":-73.4667195},"countryFullname":"Canada","streetAddress":{"formattedAddressLine":"610 Boulevard l'Assomption O","apt":"","name":"Boulevard l'Assomption O","number":"610"},"formatted":"610 Boulevard l'Assomption O, Saint-Charles-Borromée, QC J6E 9K9, Canada","country":"CA","postalCode":"J6E 9K9","subdivision":"QC"},"disponibilite":true,"ville":"Saint-Charles-Borromee","title":"LUXUEUX 5 1\/2 À SAINT CHARLES BORROMEE ","link-copy-of-location-title":"\/copy-of-location\/luxueux-5-1%2F2-%C3%A0-saint-charles-borromee-","nombreDeSallesDeBain1":"5 1\/2"},"75c0dc6e-69fa-455c-941d-35d088470b1a":{"imageSecondaire":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","nombreDeChambres":"2","adresseCivique":"Boulevard l'Amérique- Francaise ","_id":"75c0dc6e-69fa-455c-941d-35d088470b1a","imagePrinciple":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","_owner":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","_createdDate":{"$date":"2025-09-08T14:54:28.981Z"},"imagesEtVideosDeLaProprit":[{"description":"","fileName":"514646087_24202612302683661_2141445117385405711_n.jpg","slug":"5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0d00e02da2d7480a81f0a4849d674097~mv2.jpg\/514646087_24202612302683661_2141445117385405711_n.jpg#originWidth=960&originHeight=638","title":"514646087_24202612302683661_2141445117385405711_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514346442_737519705440090_5625784311658989043_n.jpg","slug":"5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1b48074472494763ab0c3e3d298f46ba~mv2.jpg\/514346442_737519705440090_5625784311658989043_n.jpg#originWidth=960&originHeight=638","title":"514346442_737519705440090_5625784311658989043_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513956748_605174219292282_4948914998556777853_n.jpg","slug":"5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_41f6fc27d782483fa10521e7af9f6f43~mv2.jpg\/513956748_605174219292282_4948914998556777853_n.jpg#originWidth=960&originHeight=638","title":"513956748_605174219292282_4948914998556777853_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514707686_1924960548324105_4232948139591812700_n.jpg","slug":"5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_7a1f07d545024297821e38912395c6cd~mv2.jpg\/514707686_1924960548324105_4232948139591812700_n.jpg#originWidth=960&originHeight=638","title":"514707686_1924960548324105_4232948139591812700_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516197379_1447432313242521_4617035550820131745_n.jpg","slug":"5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_3bda304191ac422dacdfe16934effd2d~mv2.jpg\/516197379_1447432313242521_4617035550820131745_n.jpg#originWidth=960&originHeight=638","title":"516197379_1447432313242521_4617035550820131745_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489373820_1016680700283430_8615493138739300961_n.jpg","slug":"5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8d745ea054ce419597829ba9e6fc42af~mv2.jpg\/489373820_1016680700283430_8615493138739300961_n.jpg#originWidth=960&originHeight=638","title":"489373820_1016680700283430_8615493138739300961_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"516022778_1755651455027777_937280568293922313_n.jpg","slug":"5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_21fd945c9ef347e594bbcb8d05ddb0a1~mv2.jpg\/516022778_1755651455027777_937280568293922313_n.jpg#originWidth=960&originHeight=638","title":"516022778_1755651455027777_937280568293922313_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515251778_653712071061254_5529898409053103548_n.jpg","slug":"5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_b334138cd6aa4283814a92067591e0a7~mv2.jpg\/515251778_653712071061254_5529898409053103548_n.jpg#originWidth=960&originHeight=638","title":"515251778_653712071061254_5529898409053103548_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514972410_1293485992396146_3222863060244739430_n.jpg","slug":"5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_10834cdc5c854bbeb33ef5282adca59e~mv2.jpg\/514972410_1293485992396146_3222863060244739430_n.jpg#originWidth=960&originHeight=638","title":"514972410_1293485992396146_3222863060244739430_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514540784_695018393347375_2888448066215732589_n.jpg","slug":"5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_8efa0b3f38f8490e82bf6a494896deb9~mv2.jpg\/514540784_695018393347375_2888448066215732589_n.jpg#originWidth=960&originHeight=638","title":"514540784_695018393347375_2888448066215732589_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"514500119_702565739425128_1147449990054449884_n.jpg","slug":"5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_82eed6c302754910879b6b646ec5a40c~mv2.jpg\/514500119_702565739425128_1147449990054449884_n.jpg#originWidth=960&originHeight=638","title":"514500119_702565739425128_1147449990054449884_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372762_2713660005498871_4733097477494250675_n.jpg","slug":"5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_e66321b38fb548699f5f8e33d20c5670~mv2.jpg\/489372762_2713660005498871_4733097477494250675_n.jpg#originWidth=960&originHeight=638","title":"489372762_2713660005498871_4733097477494250675_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"515069041_1069138161850276_582622406997880659_n.jpg","slug":"5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_0839321df0f9439b9ebf4eeee5a6c424~mv2.jpg\/515069041_1069138161850276_582622406997880659_n.jpg#originWidth=960&originHeight=638","title":"515069041_1069138161850276_582622406997880659_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"489372713_984834983577770_8155438069471395066_n.jpg","slug":"5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_1851ac2712b640b4985d162ea48a9aa5~mv2.jpg\/489372713_984834983577770_8155438069471395066_n.jpg#originWidth=960&originHeight=638","title":"489372713_984834983577770_8155438069471395066_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}},{"description":"","fileName":"513825131_1436054440628551_5696716311336627229_n.jpg","slug":"5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg","alt":"","src":"wix:image:\/\/v1\/5ae170_bb9a4dfcf39b43f1a17de4e7b2b5ab44~mv2.jpg\/513825131_1436054440628551_5696716311336627229_n.jpg#originWidth=960&originHeight=638","title":"513825131_1436054440628551_5696716311336627229_n.jpg","type":"image","settings":{"width":960,"height":638,"focalPoint":[0.5,0.5]}}],"frquence":"Mois","link-location-title":"\/location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","descriptionDeLaProprit":"<p class=\"font_8\">Luxueux 4 ½ au cœur du Plateau <\/p>\n<p class=\"font_8\">• 1er étage <\/p>\n<p class=\"font_8\">• Disponible le 1er juillet <\/p>\n<p class=\"font_8\">• Thermopompe (air climatisé) <\/p>\n<p class=\"font_8\">• Pas d’animaux <\/p>\n<p class=\"font_8\">• Enquête de pré-location obligatoire <\/p>\n<p class=\"font_8\">• Construction 2019 <\/p>\n<p class=\"font_8\">• Très lumineux, plafonds de 8 pi <\/p>\n<p class=\"font_8\">• Salle de bain avec douche et bain séparés <\/p>\n<p class=\"font_8\">• Deux grandes chambres plus espace bureau <\/p>\n<p class=\"font_8\">• 1 espace de stationnement privé (déneigé) inclus <\/p>\n<p class=\"font_8\">• Espace de rangement (remise) <\/p>\n<p class=\"font_8\">• Cuisine tendance à aire ouverte <\/p>\n<p class=\"font_8\">• Électroménagers non inclus <\/p>\n<p class=\"font_8\">Courriel: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Tel: 450-499-7978 English <\/p>\n<p class=\"font_8\"><br><\/p>\n<p class=\"font_8\">Luxurious 2-Bed (4 ½) in the heart of the Plateau <\/p>\n<p class=\"font_8\">• 1st floor <\/p>\n<p class=\"font_8\">• Available July 1 <\/p>\n<p class=\"font_8\">• Heat pump (A\/C) <\/p>\n<p class=\"font_8\">• No pets <\/p>\n<p class=\"font_8\">• Credit check required <\/p>\n<p class=\"font_8\">• New construction (2019) <\/p>\n<p class=\"font_8\">• Very bright with 8' ceilings <\/p>\n<p class=\"font_8\">• Bathroom with separate shower and tub <\/p>\n<p class=\"font_8\">• Two large bedrooms plus home office space <\/p>\n<p class=\"font_8\">• 1 private parking space included (snow-cleared) <\/p>\n<p class=\"font_8\">• Exterior storage unit <\/p>\n<p class=\"font_8\">• Trendy open-concept kitchen <\/p>\n<p class=\"font_8\">• Appliances not included <\/p>\n<p class=\"font_8\">E-mail: info@leshabitationssf.com <\/p>\n<p class=\"font_8\">Phone: 450-499-7978<\/p>","_updatedDate":{"$date":"2025-09-08T14:54:28.981Z"},"enVedette":false,"nombreDeSallesDeBain":"1","prix":1750,"adresseComplte":{"subdivisions":[{"code":"QC","name":"Québec","type":"ADMINISTRATIVE_AREA_LEVEL_1"},{"code":"Outaouais","name":"Outaouais","type":"ADMINISTRATIVE_AREA_LEVEL_2"},{"code":"Gatineau","name":"Gatineau","type":"ADMINISTRATIVE_AREA_LEVEL_3"},{"code":"Le Plateau","name":"Le Plateau","type":"ADMINISTRATIVE_AREA_LEVEL_4"},{"code":"CA","name":"Canada","type":"COUNTRY"}],"city":"Gatineau","location":{"latitude":45.4360266,"longitude":-75.8182333},"countryFullname":"Canada","streetAddress":{"number":"49","name":"Boulevard de l'Amérique-Française","apt":"2"},"formatted":"49 Boul. de l'Amérique-Française #2, Gatineau, QC J9J 4B6, Canada","country":"CA","postalCode":"J9J 4B6","subdivision":"QC"},"typeDimmeuble":["APPARTEMENT"],"region":["Gatineau"],"disponibilite":true,"ville":"Gatineau","title":"APPARTEMENT à LOUER 4 1\/2 GATINEAU","link-copy-of-location-title":"\/copy-of-location\/appartement-%C3%A0-louer-4-1%2F2-gatineau","nombreDeSallesDeBain1":"5 "}}},"uniqueFieldValuesByCollection":{"Location":{}}}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"importedNamespaces":[]},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"form-viewer-comp-m2y1awex":{"formsById":{"39743f17-3b77-49be-b37c-a7284b6479cc":{"id":"39743f17-3b77-49be-b37c-a7284b6479cc","fields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","target":"email_443e","validation":{"string":{"format":"EMAIL","enum":[]},"required":true},"pii":true,"hidden":false,"view":{"label":"E-mail","fieldType":"CONTACTS_EMAIL","hideLabel":false},"readOnly":false},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","pii":false,"hidden":false,"view":{"submitText":"S'ABONNER","thankYouMessageDuration":8,"thankYouMessageText":{"nodes":[{"id":"06udw27","type":"PARAGRAPH","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Thanks, we received your submission.","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"id":"4eed8828-bee0-4b73-9a8d-3610631c9875","version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z"}},"nextText":"Next","submitAction":"THANK_YOU_MESSAGE","fieldType":"SUBMIT_BUTTON","previousText":"Back"},"readOnly":false},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","pii":false,"hidden":false,"view":{"content":{"nodes":[{"id":"cuu0z29","type":"HEADING","nodes":[{"id":"","type":"TEXT","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a","version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z"},"documentStyle":{}},"fieldType":"HEADER"},"readOnly":false}],"formFields":[{"id":"fa3b0aad-f2fe-47df-ee69-6441506710df","hidden":false,"identifier":"CONTACTS_EMAIL","fieldType":"INPUT","inputOptions":{"target":"email_443e","pii":true,"required":true,"inputType":"STRING","contactMapping":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}},"readOnly":false,"stringOptions":{"validation":{"format":"EMAIL","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"E-mail","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"d5df37db-369b-4f3c-f561-579e39eeee46","hidden":false,"identifier":"SUBMIT_BUTTON","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"PAGE_NAVIGATION","pageNavigationOptions":{"nextPageText":"Next","previousPageText":"Back","submitText":"S'ABONNER"}}},{"id":"9c5d853d-7654-4b58-5574-bf0262076a35","hidden":false,"identifier":"HEADER","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"RICH_CONTENT","richContentOptions":{"richContent":{"nodes":[{"type":"HEADING","id":"cuu0z29","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Abonnez-vous aux nouvelles","decorations":[]}}],"headingData":{"level":1,"textStyle":{"textAlignment":"AUTO"},"indentation":0}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:26:07.208Z","updatedTimestamp":"2023-05-10T09:26:07.208Z","id":"eb3a4bad-2d98-4fe6-8018-a3bb626e057a"},"documentStyle":{}}}}}],"steps":[{"id":"8f0147c8-3b42-47b8-af55-5f708dd9933d","name":"Page 1","hidden":false,"layout":{"large":{"items":[{"fieldId":"fa3b0aad-f2fe-47df-ee69-6441506710df","row":1,"column":0,"width":8,"height":1},{"fieldId":"d5df37db-369b-4f3c-f561-579e39eeee46","row":1,"column":8,"width":4,"height":1},{"fieldId":"9c5d853d-7654-4b58-5574-bf0262076a35","row":0,"column":0,"width":12,"height":1}],"sections":[]}}}],"rules":[],"revision":"5","createdDate":"2024-11-01T01:06:55.602Z","updatedDate":"2024-11-14T03:29:39.801Z","properties":{"name":"Abonnement","disabled":false},"deletedFields":[],"deletedFormFields":[],"kind":"REGULAR","postSubmissionTriggers":{"upsertContact":{"fieldsMapping":{"email_443e":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}}},"labels":[]}},"extendedFields":{"namespaces":{"@forms\/form-app":{"automationId":"07baafb0-a4af-4945-9d02-e93bb0e17a3a"}}},"namespace":"wix.form_app.form","nestedForms":[],"spamFilterProtectionLevel":"ADVANCED","submitSettings":{"submitSuccessAction":"THANK_YOU_MESSAGE","thankYouMessageOptions":{"durationInSeconds":8,"richContent":{"nodes":[{"type":"PARAGRAPH","id":"06udw27","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Merci pour votre envoi","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"metadata":{"version":1,"createdTimestamp":"2023-05-10T09:25:43.052Z","updatedTimestamp":"2023-05-10T09:25:43.052Z","id":"4eed8828-bee0-4b73-9a8d-3610631c9875"},"documentStyle":{}}}},"fieldGroups":[],"enabled":true,"name":"Abonnement","formRules":[],"autoFillContact":"FORM_INPUT","submissionAccess":"OWNER_AND_COLLABORATORS"}},"translations":{"field-description.a11y.aria-label":"Lien de description {linkText}","form.submit-button.next-step":"Suivant","multiline-address.a11y.group-name":"Champ d'adresse","error.could-not-load-form.button.label":"Actualiser","submit.failed.message.SUBMISSION_LIMIT_PER_USER_EXCEEDED":"You've reached the submission limit for this form.","form.a11y.step.index.title":"Étape {index} sur {total}","form.disabled.fallback-message":"Sorry, but the form is closed.","submit.failed.message.DISABLED_FORM_ERROR":"Ce formulaire a expiré, vous ne pouvez plus le remplir.","bookings-address.a11y.group-name":"Address field","error.could-not-load-form.title":"Impossible de charger ce formulaire","form.submit-button.state.in-progress":"Envoi du formulaire...","checkbox.input.error.message.required":"Cochez la case pour continuer.","submit.failed.message.SITE_MUST_ACCEPT_PAYMENTS_TO_CREATE_CHECKOUT":"Nous ne pouvons pas accepter les paiements en ligne pour le moment. Contactez-nous pour effectuer votre transaction.","error.could-not-load-form.description":"Il semble qu'il y ait eu un problème temporaire de notre côté. Veuillez patienter quelques minutes, puis cliquez sur Actualiser pour réessayer.","form.submit-button.previous-step":"Retour","contacts-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field-context-menu.cut":"Couper","input.error.message.incomplete-date-error.day-time":"Saisissez un jour et une heure.","field.signature.a11y.action-description.type":"Utilisez le clavier pour écrire.","input.error.message.invalid-default-value-error":"Enter a valid default value","input.error.message.required-error-forced":"Ce champ est obligatoire.","field-context-menu.show-field":"Afficher le champ","date-picker.input.error.message.format-error":"Choisissez une date.","form.login-bar.actions.login":"Se connecter","date-picker.a11y.clear-button":"Effacer","form.file-upload.uploading":"Importation de {count, plural, =0 {...} other {#%...}}","rating-input.a11y.reaction-label":"{count, plural, one {{count} étoile} other {{count} étoiles}}","contacts-company.input.error.message.required-error":"Saisissez un nom d'entreprise.","dext-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.signature.clear-button.label":"Effacer","input.error.message.type-error":"Choisissez un {type}.","payment-input.input.error.message.required-error":"Saisissez un montant de paiement.","form.login-bar.action.logout":"Se déconnecter","date-picker.a11y.arrow-left":"Accéder au mois précédent","mla-subdivision.input.error.message.required-error.tr":"Choisissez une ville.","settings.scheduling.sync-external-calendars.modal.tooltip.kb-link":"https:\/\/support.wix.com\/fr\/article\/r%C3%A9unions-synchroniser-les-agendas-personnels-avec-r%C3%A9unions","input.error.message.value-range-error":"Saisissez un nombre entre {minLimit} et {maxLimit}.","input.error.message.incomplete-date-error.year-month":"Saisissez un mois et une année.","mla-address-line.input.error.message.required-error":"Saisissez une adresse.","contacts-position.input.error.message.required-error":"Saisissez un nom de poste.","bookings-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.year-month-time":"Saisissez un mois, une heure et une année.","field.number.aria-role-description":"Nombre","signature.input.error.message.required-error":"Signez dans la zone ci-dessus.","field.date.label.month":"Mois","field.rich-text.read-more-button.label":"Lire plus","field.time.label.period":"Réglage 24 h","submit.failed.message":"Nous n'avons pas pu envoyer votre formulaire. Veuillez réessayer plus tard.","image-choice.input.error.message.required-error":"Choisissez une option.","dext-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","mla-city.input.error.message.required-error.tr":"Saisissez un district.","date-picker.a11y.calendar-button.role-description":"Pop-up de la fenêtre de l'agenda réduit","field.signature.a11y.action-description.draw-or-type":"Signez dans la case ou utilisez le clavier pour écrire.","settings.scheduling.meeting-type.round-robin":"Rotation des organisateurs","field.time.perdiod.AM":"AM","form.login-bar.title.logged-out-state":"Avez-vous un compte ? ","form.appointment.slots-not-found.text":"Il n'y a aucune disponibilité pour cette date. Essayez de sélectionner une autre date.","input.error.message.format-error":"Utilisez le format « {format} ».","contacts-address.input.error.message.required-error":"Saisissez une adresse.","field-context-menu.copy":"Copier dans le presse-papiers","field.signature.a11y.state.empty":"Le champ de signature est vide.","dext-date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","payment-input.input.error.message.min-value-error":"Saisissez un montant de paiement supérieur à {limit} {currency}.","input.error.message.incomplete-date-error.year-time":"Saisissez une année et une heure à 4 chiffres.","field.signature.a11y.state.signed":"Signé.","field.quiz-answer-feedback.wrong":"Incorrect","mla-city.input.error.message.required-error":"Saisissez une ville.","full-name.input.error.message.required-error":"Saisissez le prénom et le nom.","field.rich-text.read-less-button.label":"Lire moins","form.appointment.accessibility.calendar.previous-week.aria-label":"Afficher la semaine précédente","field.signature.mode.upload.description":"Le mode d'importation a été sélectionné. Importez une image de votre signature.","field.quiz-file-upload.skipped":"Cette question a été ignorée. ","ecom.email.label":"E‑mail","input.error.message.incomplete-date-error.year-month-day":"Saisissez un mois, un jour et une année.","field-context-menu.make-optional":"Rendre facultatif","settings.scheduling.meeting-type.info-icon.round-robin.description":" - Les réunions alternent entre les organisateurs.","contacts-subscribe.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.signature.mode.draw.description":"Le mode de dessin a été sélectionné. Le dessin nécessite une souris ou un pavé tactile. Pour l'accessibilité du clavier, sélectionnez « Saisir » ou « Importer ».","checkbox.input.error.message.required-error":"Cochez la case pour continuer.","date-picker.input.error.message.required-error":"Choisissez une date.","dext-tags.input.error.message.required-error":"Choisissez une option.","field-context-menu.delete":"Supprimer","field.date.label.year":"Année","mla-address-line-2.input.error.message.required-error":"Saisissez une deuxième ligne d'adresse (ex. appartement, suite, étage).","form.login-bar.title.logged-in-state":"Connecté en tant que {user}","payment-input.input.error.message.max-value-error":"Saisissez un montant de paiement inférieur à {limit} {currency}.","ecom-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","payment-input.input.error.message.value-range-error":"Saisissez un montant de paiement compris entre {minLimit} {currency}et {maxLimit} {currency}.","settings.appointment.sync-external-calendars.hosts-title":"Synchroniser les agendas pour les organisateurs","input.error.message.incomplete-date-error.year-day":"Saisissez un jour et une année.","submission-table.signature.not-signed":"Non signé","dext-url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","contacts-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","vat-id.input.error.message.required-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","input.error.message.incomplete-date-error.day":"Saisissez un jour.","date-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","input.error.message.invalid-location-id-error":"Location is invalid","input.error.message.max-length-error":"{limit, plural, one {Saisissez un maximum de {limit,number} caractère.} other {Saisissez un maximum de {limit,number} caractères.}}","field.date.placeholder.day":"Jour","services-dropdown.input.error.message.required-error":"Select a Service","ecom-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dext-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","dext-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","contacts-date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","signature.input.error.message.required-error.with-upload":"Signez dans la zone ci-dessus ou importez votre signature.","forms.widget.modals.show-password-tooltip":"Afficher le mot de passe","contacts-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","field.phone.country-selector-button.aria-label":"Sélectionnez l'indicatif du pays","field-context-menu.move-up":"Déplacer vers le haut","dext-text-input.input.error.message.required-error":"Saisissez une réponse.","settings.required-indicator-text":"(Obligatoire)","file-upload.dropzone.overlay.button":" Déposer vos fichiers ici","platform-quiz-radio-group.input.error.message.required-error":"Choose an option.","field.time.perdiod.PM":"PM","contacts-birthdate.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.quiz-answer-feedback.correct":"Bonne réponse","settings.appointment.duration.custom":"Personnalisée","vat-id.input.error.message.required-error":"Saisissez un numéro CPF\/CNPJ.","bookings-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","input.error.message.character-length-range-error":"Saisissez entre {minLimit} et {maxLimit} caractères.","bookings-phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif de pays ne sont pas acceptés.","contacts-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","dropdown.input.error.message.required-error":"Choisissez une option.","dext-text-area.input.error.message.required-error":"Saisissez une réponse.","field.signature.settings.upload-button.label":"Importer une image","field.date.placeholder.month":"Mois","form.error.prefix.a11y":"Erreur :","contacts-tax-id.input.error.message.required-error":"Saisissez un numéro de TVA.","signature.text.placeholder":"Type your signature","contacts-number-input.input.error.message.required-error":"Enter a number.","date-picker.a11y.aria-label":"Afficher le sélecteur de date","field.phone.country-search-input.aria-label":"Rechercher","field.signature.a11y.state.drawing":"Signature en cours...","input.error.message.unknown-value-error":"Doit comporter des informations supplémentaires.","phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","dext-date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","form.appointment.empty-state.notification.text":"Il n'y a aucun créneau horaire disponible pour le moment. Veuillez nous contacter pour finaliser votre demande.","mla-country.input.error.message.required-error":"Choisissez un pays\/une région.","field.time.label.hours":"Heures","file-upload.delete-file.aria-label":"Supprimer le fichier","field.vat-id.label-br":"CPF\/CNPJ","ecom-header.contact-details":"Détails du client","input.error.message.invalid-staff-id-error":"This field is invalid.","date-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","contacts-first-name.input.error.message.required-error":"Saisissez un prénom.","file-upload.dropzone.title":"Importer votre fichier","field-context-menu.move-down":"Déplacer vers le bas","contacts-url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","field.time.label.minutes":"Minutes","dext-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","bookings-phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","form.file-upload.explanation-text":"{count, plural, one {{count,number} fichier importé} other {{count,number} fichiers importés}}","settings.scheduling.meeting-type.info-icon.intro":"Comment les organisateurs sont attribués :","pikachu.input.error.message.required-error":"Choose an option.","contacts-last-name.input.error.message.required-error":"Saisissez un nom de famille.","forms.widget.modals.hide-password-tooltip":"Masquer le mot de passe","field.signature.mode.selector.aria-label":"Mode de saisie de signature","phone.input.error.message.not-allowed-value":"Les numéros de téléphone avec cet indicatif téléphonique ne sont pas acceptés.","field.signature.mode.draw.label":"Dessiner","mla-postal-code.input.error.message.pattern-error":"Saisissez un code postal valide.","date-picker.a11y.dropdown-year":"Sélectionner l'année","time-input.input.error.message.format-error":"Saisissez les heures et les minutes.","field-context-menu.hide-field":"Masquer le champ","input.error.message.not-allowed-value":"La valeur choisie n'est pas autorisée.","input.error.message.min-value-error":"Saisissez un nombre égal ou supérieur à {limit}.","input.error.message.incomplete-date-error.month-day":"Saisissez un mois et un jour.","field.date.placeholder.time":"HH:MM","submit.checkout.message":"Redirection vers la page de paiement...","form.file-upload.error.unsupported-file-format":"Le type de fichier n'est pas pris en charge.","settings.scheduling.meeting-type.info-icon.single-host.description":" - Un même organisateur est attribué à toutes les réunions.","input.error.message.invalid-phone-country-code-error":"Saisissez un indicatif de pays valide.","mla-street-name.input.error.message.required-error":"Saisissez un nom de rue.","settings.scheduling.sync-external-calendars.not-current-user.kb-link":"https:\/\/support.wix.com\/en\/article\/wix-meetings-syncing-personal-calendars-with-wix-meetings","bookings-first-name.input.error.message.required-error":"Saisissez un prénom.","vat-id.input.error.message.format-error":"Saisissez un numéro CPF\/CNPJ valide.","form.appointment.accessibility.calendar.next-week.aria-label":"Afficher la semaine prochaine","donation.input.error.message.required-error":"Choisissez un montant de don.","settings.appointment.duration.hours-error":"Les heures doivent être comprises entre 0 et 99.","input.error.message.incomplete-date-error.month":"Saisissez un mois.","input.error.message.incomplete-date-error.year":"Saisissez une année à 4 chiffres.","vat-id.input.error.message.format-error.il":"Saisissez un numéro d’identification valide à 9 chiffres (« teudat zehut ») ou un numéro d’entreprise (« het pey »).","settings.appointment.duration.hours-label":"Heures","field.phone.aria-label":"Téléphone","field.signature.canvas.aria-label.empty":"Zone de dessin de la signature (vide)","file-upload.dropzone.limit-reached.title":"Vous avez atteint la limite d'importation de fichiers.","form.appointment.accessibility.calendar.has-availability.aria-label":"Ce jour dispose de créneaux horaires disponibles.","bookings-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","input.error.message.incomplete-date-error.month-time":"Saisissez un mois et une heure.","product-list.input.error.message.required-error":"Choisissez une option.","field-context-menu.move-to-next-page":"Déplacer vers la page suivante","mla-postal-code.input.error.message.required-error":"Saisissez un code postal.","file-upload.input.error.message.required-error":"Veuillez importer un fichier.","vat-id.input.error.message.format-error.br":"Enter a valid CPF\/CNPJ number.","input.error.message.exact-character-length-error":"{limit, plural, one {Saisissez exactement {limit,number} caractère.} other {Saisissez exactement {limit,number} caractères.}}","submission-table.signature.signed":"Signé","input.error.message.incomplete-date-error":"Saisissez un mois, un jour et une année.","ecom-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field.vat-id.label-il":"Numéro d’identité\/d’entreprise","text-input.input.error.message.required-error":"Saisissez une réponse.","url-input.input.error.message.required-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","ecom-header.shipping-details":"Informations de livraison","service-dropdown.input.error.message.required-error":"Sélectionnez un service.","field.signature.mode.type.description":"Le mode de saisie a été sélectionné. Saisissez votre signature à l'aide du clavier.","input.error.message.incomplete-date-error.year-day-time":"Saisissez un jour, une heure et une année.","number-input.input.error.message.required-error":"Saisissez un nombre.","field.signature.mode.upload.label":"Importer","input.error.message.unknown-error":"Erreur inconnue, veuillez contacter l'Assistance.","input.error.message.max-items-error":"{limit, plural, one {Choisissez jusqu'à {limit,number} option.} other {Choisissez jusqu'à {limit,number} options.}}","file-upload.popover.aria-label":"Liste des fichiers importés","input.error.message.multiple-of-value-error":"Choisissez un multiple de {multipleOf}.","full-name-last-name.input.error.message.required-error":"Saisissez un nom de famille.","field-context-menu.paste":"Coller","input.error.message.pattern-error":"Correspond au modèle « {pattern} ».","dext-number-input.input.error.message.required-error":"Saisissez un nombre.","field-context-menu.ai-assistant":"AI Assistant","field-context-menu.move-to-previous-page":"Déplacer vers la page précédente","dext-date-picker.input.error.message.required-error":"Choisissez une date.","settings.appointment.duration.minutes-error":"Les minutes doivent être comprises entre 0 et 59.","date-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","dext-checkbox-group.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.subtitle":"Choisissez un fichier ou glissez-déposez-le ici.","dext-radio-group.input.error.message.required-error":"Choisissez une option.","checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","contacts-birthdate.input.error.message.max-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","input.error.message.incomplete-date-error.month-day-time":"Saisissez un mois, un jour et une heure.","file-upload.aria-roledescription":"Importation de fichier","settings.appointment.duration.minutes-label":"Minutes","contacts-phone.input.error.message.pattern-error":"Saisissez un numéro de téléphone valide.","mla-street-number.input.error.message.required-error":"Saisissez un numéro de bâtiment.","date-picker.a11y.dropdown-month":"Sélectionner le mois","field.signature.mode.type.label":"Saisir","settings.default-value-conflict.min-value-error":"Min characters must be at least the default text length. Update the character limit or shorten the text.","date-picker.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","settings.scheduling.meeting-type.personal":"Organisateur unique","date-time-input.input.error.message.min-value-error":"Saisissez une date valide après la date d'aujourd'hui.","dext-checkbox.input.error.message.required-error":"Cochez la case pour continuer.","url-input.input.error.message.format-error":"Saisissez une URL, ex. https:\/\/www.exemple.com.","file-upload.file.uploading-spinner.aria-label":"Chargement du ficher","field.phone.country-code.aria-label":"Indicatif du pays","add-other.default-other-option-label":"Autre","dext-checkbox.input.error.message.not-allowed-value":"Cochez la case pour continuer.","field.date.placeholder.year":"Année","date-picker.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","field.signature.text.placeholder":"Saisissez votre signature","dext-date-picker.input.error.message.format-error":"Choisissez une date.","form.file-upload.error.upload-limit":"{limit, plural, one {Il y a une limite d'importation de {limit,number} fichier.} other {Il y a une limite d'importation de {limit,number} fichiers.}}","checkbox-group.input.error.message.required-error":"Choisissez une option.","rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.mla-apartment.label":"Appartement","text-area.input.error.message.required-error":"Saisissez une réponse.","field.phone.country-search-input.placeholder":"Rechercher","submission-table.appointment.meeting-tool-tip":"Go to Scheduled Meetings","donation.other-option.placeholder":"Saisissez un montant","dext-rating-input.input.error.message.required-error":"Choisissez une note par étoiles.","field.signature.a11y.action-description.draw":"Signez dans la zone.","contacts-birthdate.input.error.message.min-value-error":"Saisissez une date entre le 1er janvier 1900 et aujourd'hui.","mla-subdivision.input.error.message.required-error":"Choisissez une option.","dext-dropdown.input.error.message.required-error":"Choisissez une option.","contacts-text-input.input.error.message.required-error":"Enter an answer.","field.date.label.day":"Jour","vat-id.input.error.message.required-error.br":"Enter a CPF\/CNPJ number.","date-picker.calendar.close-button":"Fermer","settings.appointment.duration.zero-error":"La durée doit être d'au moins 1 minute.","phone.input.error.message.required-error":"Saisissez un numéro de téléphone.","phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","input.error.message.invalid-value-for-pattern":"Saisissez une réponse valide.","radio-group.input.error.message.required-error":"Choisissez une option.","input.error.message.min-items-error":"{limit, plural, one {Choisissez au moins {limit,number} option.} other {Choisissez au moins {limit,number} options.}}","ecom.form.field-type.ecom-subscriptions.label":"J'accepte de recevoir des actualités à l'adresse e-mail et\/ou aux numéros de téléphone ajoutés","input.error.message.decimal_point_error":"Ajouter {number} chiffre(s) après la virgule.","bookings-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","contacts-subscribe.input.error.message.required-error":"Cochez la case pour continuer.","form.appointment.show-more-slots.text":"Afficher plus de créneaux","form.file-upload.error.upload-failed":"Échec d'importation du fichier.","dext-email.input.error.message.format-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","full-name-first-name.input.error.message.required-error":"Saisissez un prénom.","field-context-menu.settings":"Paramètres","settings.default-value-conflict.max-value-error":"Max characters must be at least the default text length. Update the character limit or shorten the text.","bookings-last-name.input.error.message.required-error":"Saisissez un nom de famille.","appointment.input.error.message.required-error":"Ce champ est obligatoire.","field-context-menu.make-required":"Rendre obligatoire","date-time-input.input.error.message.format-error":"Saisissez un mois, un jour et une année.","field.date.label.time":"Heure","input.error.message.required-error":"Ce champ est obligatoire.","field.phone.country-selector-dropdown.no-result":"Aucun résultat","input.error.message.exact-items-number-error":"{limit, plural, one {Choisissez {limit,number} option.} other {Choisissez {limit,number} options.}}","form.appointment.timezone.label":"Fuseau horaire ","dext-date-time-input.input.error.message.required-error":"Saisissez le jour, le mois et l'année.","actions.rules.button.label":"Rules","date-time-input.input.error.message.max-value-error":"Saisissez une date valide entre le 1er janvier 1000 et aujourd'hui.","date-picker.a11y.arrow-right":"Accéder au mois suivant","input.error.message.incomplete-date-error.time":"Saisissez une heure.","field.signature.canvas.aria-label.signed":"Zone de dessin de la signature (signée)","settings.default-value-conflict.regex-error":"The regex must be viable for the entered default value. Update the regex or change the text.","contacts-phone.input.error.message.format-error":"Saisissez un numéro de téléphone valide.","tags.input.error.message.required-error":"Choisissez une option.","file-upload.dropzone.limit-reached.subtitle":"Supprimez un fichier pour en ajouter un autre.","input.error.message.max-value-error":"Saisissez un nombre égal ou inférieur à {limit}.","input.error.message.min-length-error":"{limit, plural, one {Saisissez un minimum de {limit,number} caractère.} other {Saisissez un minimum de {limit,number} caractères.}}","form.appointment.meeting-format.in-person-location-method-os-location":"Emplacement de l’entreprise","form.file-upload.error.limit":"Vous avez atteint votre limite d'importation de {limit,number} fichiers.","contacts-email.input.error.message.required-error":"Saisissez une adresse e-mail, comme exemple@monsite.com.","field-context-menu.duplicate":"Dupliquer"},"localeDataset":{},"fieldInitialData":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"comp-m8omf94t_appSettings":{"pageId":"d34uk","styleId":"style-jyem87tx","upgrades":{"fullscreen":{"date":"Tue Dec 11 2018 18:15:52 GMT+0300 (Москва, стандартное время)"}},"layoutTeaserShowed":true,"galleryId":"f69dcbf9-e1a7-426c-98ee-2da2f685c218","originGallerySettings":null},"comp-m8omf94t_galleryData":{"items":[{"itemId":"dbb93b00-91d8-4fb1-a372-e7cffcf44fcb","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":-287258,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1349,"width":2397,"fileName":"pexels-yaroslav-shuraev-1553961_edit.jpg","name":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},"mediaUrl":"8bb438_dbc34d8b0df546e3b720b14ff670ba83~mv2.jpg"},{"itemId":"d066ae7a-e300-4ffd-b33f-095f08f2c3da","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":844792578030.5,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3751,"width":2501,"fileName":"mathilde-langevin-6fz3ajqj88c-unsplash_edit.jpg","name":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},"mediaUrl":"8bb438_f2d393d3ad61468890a2616c56fff0f5~mv2.jpg"},{"itemId":"d1d9c6a6-188f-41b8-8d0b-732ad02a0154","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1267189010674.75,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5862,"width":5685,"fileName":"florian-krumm-Fudi5uf5-m8-unsplash_edit.jpg","name":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},"mediaUrl":"8bb438_e83d8cc28a044555b7672018983789a7~mv2.jpg"},{"itemId":"537cf9e5-fb38-4855-a759-4da6163a4fc9","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1478387226996.875,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":933,"width":623,"focalPoint":[0.5,0.5],"fileName":"0_1 (6).jpg","name":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},"mediaUrl":"8bb438_22ae62c08916403d955425d5e8c70a11~mv2.jpg"},{"itemId":"b5b299a3-71d8-4ae3-aa0b-dd1b388ddb4d","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1583986335157.9375,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4761,"width":3174,"fileName":"the-blowup-X5gIdTDxkYU-unsplash_edit.jpg","name":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},"mediaUrl":"8bb438_189ac9d807b640ffbeca24c41d965bae~mv2.jpg"},{"itemId":"96afa29d-6b92-4f99-be4f-13e82e9ee669","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1636785889238.4688,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":3515,"width":2344,"fileName":"arctic-qu-Yn7NXC5SFQo-unsplash_edit.jpg","name":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},"mediaUrl":"8bb438_02133a81229f49e09dc4c20f107f1eb6~mv2.jpg"},{"itemId":"e759f1da-099c-4a3a-81f1-c4ad0692ee6e","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1663185666278.7344,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":1713,"width":1142,"fileName":"martin-jursitzka-5NSLhET_jmw-unsplash (1).png","name":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},"mediaUrl":"8bb438_f7a5e921e855433896901546de91b43e~mv2.png"},{"itemId":"1255be04-9bec-4cba-8768-cfaa76be582b","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1676385554798.8672,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-arthouse-studio-5091109-1920x1080-50fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_927f3e749a784536afbcdd81890e8064f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":720,"quality":"720p","width":1280},{"formats":["mp4"],"height":480,"quality":"480p","width":854},{"formats":["mp4"],"height":360,"quality":"360p","width":640}],"duration":20600},"mediaUrl":"8bb438_927f3e749a784536afbcdd81890e8064"},{"itemId":"b2b9804e-41a8-4cf2-b387-2332f1095e36","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1682985499058.9336,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":6000,"width":4000,"fileName":"almas-salakhov-r6tBVNU-mx4-unsplash_edit.jpg","name":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},"mediaUrl":"8bb438_31254b5ad37446c8949144e34adc2113~mv2.jpg"},{"itemId":"db9fee57-10cc-45f7-b45d-1833098c4eb5","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585443319,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":5255,"width":3503,"fileName":"philippe-gauthier-KQsU_tQDH9k-unsplash_edit.jpg","name":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},"mediaUrl":"8bb438_c9e1a83e7f7b43799dbe5a8d3fd81f0b~mv2.jpg"},{"itemId":"5146d337-7d0e-4010-a24e-63ae281a7631","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585444021,"metaData":{"description":"Describe your image here","title":"Image Title","link":{"type":"none","target":"_blank"},"alt":"","sourceName":"private","tags":["_fileOrigin_uploaded"],"height":4405,"width":4271,"fileName":"0220 (2).jpg","name":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},"mediaUrl":"8bb438_324d1f8b463e45d891b5de00c83989ad~mv2.jpg"},{"itemId":"57fb6172-1793-4e03-8a34-2059b664d4a0","isSecure":false,"createdDate":"2025-03-25T14:58:40.000Z","orderIndex":1689585851017,"metaData":{"description":"Describe your video here","title":"Video Title","link":{"type":"none","target":"_blank"},"type":"video","customPoster":"","isExternal":false,"height":1080,"width":1920,"name":"pexels-ксения-капустина-9350509-1080x1920-30fps.mp4","posters":[{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f000.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f001.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f002.jpg"},{"height":1080,"width":1920,"url":"8bb438_f6bbdd3a41df4bcab09c7333855ba583f003.jpg"}],"qualities":[{"formats":["mp4"],"height":1080,"quality":"1080p","width":1920},{"formats":["mp4"],"height":406,"quality":"720p","width":720},{"formats":["mp4"],"height":270,"quality":"480p","width":480},{"formats":["mp4"],"height":202,"quality":"360p","width":360}],"duration":10043},"mediaUrl":"8bb438_f6bbdd3a41df4bcab09c7333855ba583"}],"totalItemsCount":12}}},"builderComponentsWarmupData":{},"ooi":{"failedInSsr":{}}}</script> | |
| 2590 | +<!-- warmup data end --> | |
| 2591 | + | |
| 2592 | + | |
| 2593 | +<!-- presets polyfill --> | |
| 2594 | + | |
| 2595 | + | |
| 2596 | + | |
| 2597 | + | |
| 2598 | +<!-- detect browser zoom --> | |
| 2599 | + | |
| 2600 | + | |
| 2601 | + | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
| 2607 | + | |
| 2608 | + | |
| 2609 | + | |
| 2610 | +</body> | |
| 2611 | +</html> | |
added
tests/fixtures/habitations_sf/a6b230e06894a8866164.html
+2590 −0
@@ -0,0 +1,2627 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr"> | |
| 3 | +<head> | |
| 4 | + | |
| 5 | + <meta charset='utf-8'> | |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" id="wixDesktopViewport" /> | |
| 7 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| 8 | + <meta name="generator" content="Wix.com Website Builder"/> | |
| 9 | + | |
| 10 | + <link rel="icon" sizes="192x192" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_192%2Ch_192%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 11 | + <link rel="shortcut icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 12 | + <link rel="apple-touch-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_180%2Ch_180%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg" type="image/jpeg"/> | |
| 13 | + | |
| 14 | + <!-- Safari Pinned Tab Icon --> | |
| 15 | + <!-- <link rel="mask-icon" href="https://static.wixstatic.com/media/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg/v1/fill/w_32%2Ch_32%2Clg_1%2Cusm_0.66_1.00_0.01/5ae170_ebc2ffe23c6f4112a185cb24a9def3ef%7Emv2.jpg"> --> | |
| 16 | + | |
| 17 | + <!-- Segmenter Polyfill --> | |
| 18 | + <script> | |
| 19 | + if (!window.Intl || !window.Intl.Segmenter) { | |
| 20 | + (function() { | |
| 21 | + var script = document.createElement('script'); | |
| 22 | + script.src = 'https://static.parastorage.com/unpkg/@formatjs/intl-segmenter@11.7.10/polyfill.iife.js'; | |
| 23 | + document.head.appendChild(script); | |
| 24 | + })(); | |
| 25 | + } | |
| 26 | + </script> | |
| 27 | + | |
| 28 | + <!-- Legacy Polyfills --> | |
| 29 | + <script nomodule="" src="https://static.parastorage.com/unpkg/core-js-bundle@3.2.1/minified.js"></script> | |
| 30 | + <script nomodule="" src="https://static.parastorage.com/unpkg/focus-within-polyfill@5.0.9/dist/focus-within-polyfill.js"></script> | |
| 31 | + | |
| 32 | + <!-- Performance API Polyfills --> | |
| 33 | + <script> | |
| 34 | + (function () { | |
| 35 | + var noop = function noop() {}; | |
| 36 | + if ("performance" in window === false) { | |
| 37 | + window.performance = {}; | |
| 38 | + } | |
| 39 | + window.performance.mark = performance.mark || noop; | |
| 40 | + window.performance.measure = performance.measure || noop; | |
| 41 | + if ("now" in window.performance === false) { | |
| 42 | + var nowOffset = Date.now(); | |
| 43 | + if (performance.timing && performance.timing.navigationStart) { | |
| 44 | + nowOffset = performance.timing.navigationStart; | |
| 45 | + } | |
| 46 | + window.performance.now = function now() { | |
| 47 | + return Date.now() - nowOffset; | |
| 48 | + }; | |
| 49 | + } | |
| 50 | + })(); | |
| 51 | + </script> | |
| 52 | + | |
| 53 | + <!-- Essential Viewer Model --> | |
| 54 | + <script type="application/json" id="wix-essential-viewer-model">{"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"siteFeaturesConfigs":{"sessionManager":{"isRunningInDifferentSiteContext":false}},"language":{"userLanguage":"fr"},"siteAssets":{"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"site":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isSEO":false},"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"interactionSampleRatio":0.01,"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","experiments":{"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true}}</script> | |
| 55 | + <script>window.viewerModel = JSON.parse(document.getElementById('wix-essential-viewer-model').textContent)</script> | |
| 56 | + | |
| 57 | + <!-- Globals Definitions --> | |
| 58 | + <script> | |
| 59 | + (function () { | |
| 60 | + var now = Date.now() | |
| 61 | + var activationStart = 0 | |
| 62 | + try { | |
| 63 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 64 | + if (navEntry && navEntry.activationStart > 0) { | |
| 65 | + activationStart = navEntry.activationStart; | |
| 66 | + } | |
| 67 | + } catch (e) {} | |
| 68 | + window.initialTimestamps = { | |
| 69 | + initialTimestamp: now, | |
| 70 | + initialRequestTimestamp: Math.round(performance.timeOrigin ? performance.timeOrigin + activationStart : now - performance.now() + activationStart) | |
| 71 | + } | |
| 72 | + | |
| 73 | + window.thunderboltTag = "libs-releases-GA-local" | |
| 74 | + window.thunderboltVersion = "1.17718.0" | |
| 75 | + })(); | |
| 76 | + </script> | |
| 77 | + | |
| 78 | + <script> | |
| 79 | + window.commonConfig = viewerModel.commonConfig | |
| 80 | + </script> | |
| 81 | + | |
| 82 | + | |
| 83 | + <!-- BEGIN handleAccessTokens bundle --> | |
| 84 | + | |
| 85 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js">(()=>{"use strict";let e,t,r,o;var n={},i={};function l(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={exports:{}};return n[e](r,r.exports,l),r.exports}function a(e){let{context:t,property:r,value:o,enumerable:n=!0}=e,i=e.get,l=e.set;if(!r||void 0===o&&!i&&!l)return Error("property and value are required");let a=t||globalThis,s=a?.[r],u={};if(void 0!==o)u.value=o;else{if(i){let e=c(i);e&&(u.get=e)}if(l){let e=c(l);e&&(u.set=e)}}let p={...u,enumerable:n||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(a,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function c(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}l.rv=()=>"1.6.8",l.ruid="bundler=rspack@1.6.8";try{a({property:"strictDefine",value:a})}catch{}try{a({property:"defineStrictObject",value:function e(t){let{context:r,property:o,propertiesToExclude:n=[],skipPrototype:i=!1,hardenPrototypePropertiesToExclude:l=[]}=t;if(!o)return Error("property is required");let c=(r||globalThis)[o],p={},f=u(r,o);c&&("object"==typeof c||"function"==typeof c)&&Reflect.ownKeys(c).forEach(e=>{if(!n.includes(e)&&!s.includes(e)){let t=u(c,e);if(t&&(t.writable||t.configurable)){let{value:r,get:o,set:n,enumerable:i=!1}=t,l={};void 0!==r?l.value=r:o?l.get=o:n&&(l.set=n);try{let t=a({context:c,property:e,...l,enumerable:i});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:c,originalProperties:p};if(!i&&c?.prototype!==void 0){let t=e({context:c,property:"prototype",propertiesToExclude:l,skipPrototype:!0});t instanceof Error||(d.originalPrototype=t?.originalObject,d.originalPrototypeProperties=t?.originalProperties)}return a({context:r,property:o,value:c,enumerable:f?.enumerable}),d}})}catch{}try{a({property:"defineStrictMethod",value:function(e,t){let r=(t||globalThis)[e],o=u(t||globalThis,e);return r&&o&&(o.writable||o.configurable)?(Object.freeze(r),a({context:globalThis,property:e,value:r})):r}})}catch{}var s=["toString","toLocaleString","valueOf","constructor","prototype"];function u(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function p(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function f(e,t){let r="";if("string"==typeof e)r=e.split("=")[0]?.trim()||"";else{if(!e||"string"!=typeof e.name)return!1;r=e.name}return t.has(p(r)||"")}function d(e,t){return("string"==typeof e?e.split(";").map(e=>e.trim()).filter(e=>e.length>0):e||[]).filter(e=>!f(e,t))}var y=null;function g(){return null===y&&(y=typeof Document>"u"?void 0:Object.getOwnPropertyDescriptor(Document.prototype,"cookie")),y}let b=(e,t)=>{try{let r=t?t.get.call(document):document.cookie;return r.split(";").map(e=>e.trim()).filter(t=>t?.startsWith(e))[0]?.split("=")[1]}catch(e){return""}},h=(e="",t="",r="/")=>`${e}=; ${t?`domain=${t};`:""} max-age=0; path=${r}; expires=Thu, 01 Jan 1970 00:00:01 GMT`;function m(e,t){try{return sessionStorage[e]("reload",t||"")}catch(e){console.error("ATS: Error calling sessionStorage:",e)}}var v=["true","b","c","new","enabled"];let w=[],S=(e,t)=>{let r;return w.includes(t)||!0===(r=e[t])||"string"==typeof r&&v.includes(r.toLowerCase())},T="client-session-bind",k="sec-fetch-unsupported",{experiments:x}=window.viewerModel,{cookie:E}=(e=new Set([T,"client-binding",k,"svSession","smSession","server-session-bind","wixSession2","wixSession3"].map(e=>e.toLowerCase())),a({context:document,property:"cookie",set:{func:t=>{var r,o;let n,i;return r=document,o=void 0,n=g(),i=p(t.split(";")[0]||"")||"",void([...e].every(e=>!i.startsWith(e.toLowerCase()))&&n?.set?n.set.call(r,t):o&&console.warn(o))}},get:{func:()=>(function(e,t){let r=g();if(!r?.get)throw Error("Cookie descriptor or getter not available");return d(r.get.call(e),t).join("; ")})(document,e)},enumerable:!0}),{cookieStore:function(e,t){if(!globalThis?.cookieStore)return;let r=globalThis.cookieStore.get.bind(globalThis.cookieStore),o=globalThis.cookieStore.getAll.bind(globalThis.cookieStore),n=globalThis.cookieStore.set.bind(globalThis.cookieStore),i=globalThis.cookieStore.delete.bind(globalThis.cookieStore);return a({context:globalThis.CookieStore.prototype,property:"get",value:async function(t){return f(("string"==typeof t?t:t.name)||"",e)?null:r.call(this,t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"getAll",value:async function(){let t=await o.apply(this,Array.from(arguments));return d(t,e)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"set",value:async function(){let r=Array.from(arguments);if(!f(1===r.length?r[0].name:r[0],e))return n.apply(this,r);t&&console.warn(t)},enumerable:!0}),a({context:globalThis.CookieStore.prototype,property:"delete",value:async function(){let t=Array.from(arguments);if(!f(1===t.length?t[0].name:t[0],e))return i.apply(this,t)},enumerable:!0}),a({context:globalThis.cookieStore,property:"prototype",value:globalThis.CookieStore.prototype,enumerable:!1}),a({context:globalThis,property:"cookieStore",value:globalThis.cookieStore,enumerable:!0}),{get:r,getAll:o,set:n,delete:i}}(e,void 0),cookie:g()}),P="tbReady",C="security_overrideGlobals",{experiments:D,siteFeaturesConfigs:M,accessTokensUrl:O}=window.viewerModel,$={},j=(t=b(T,E),S(x,"specs.thunderbolt.browserCacheReload")&&(b(k,E)||t?m("removeItem"):function(){if("undefined"!=typeof window){let e=performance.getEntriesByType("navigation")[0];return"back_forward"===(e?.type||"")}return!1}()&&function(){let{counter:e}=function(){let e=m("getItem");if(e){let[t,r]=e.split("-"),o=r?parseInt(r,10):0;if(o>=3){let e=t?Number(t):0;if(Date.now()-e>6e4)return{counter:0}}return{counter:o}}return{counter:0}}();e<3?(function(e=1){m("setItem",`${Date.now()}-${e}`)}(e+1),window.location.reload()):console.error("ATS: Max reload attempts reached")}()),r=h(T),o=h(T,location.hostname),E.set.call(document,r),E.set.call(document,o),t);j&&($["client-binding"]=j);let A=fetch;addEventListener(P,function e(t){let{logger:r}=t.detail;try{window.tb.init({fetch:A,fetchHeaders:$})}catch(t){let e=Error("TB003");r.meter(`${C}_${e.message}`,{paramsOverrides:{errorType:C,eventString:e.message}}),window?.viewerModel?.mode.debug&&console.error(t)}finally{removeEventListener(P,e)}}),S(D,"specs.thunderbolt.hardenFetchAndXHR")||(window.fetchDynamicModel=()=>M.sessionManager.isRunningInDifferentSiteContext?Promise.resolve({}):fetch((()=>{try{let e="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope,t=globalThis?.parent!==globalThis,r=new URL(O,location.href);return(t||e)&&(r.searchParams.set("ifr",String(t)),r.searchParams.set("worker",String(e))),r.href}catch{return O}})(),{credentials:"same-origin",headers:$}).then(function(e){if(!e.ok)throw Error(`[${e.status}]${e.statusText}`);return e.json()}),window.dynamicModelPromise=window.fetchDynamicModel())})(); | |
| 86 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/handleAccessTokens.inline.3250797b.bundle.min.js.map</script> | |
| 87 | + | |
| 88 | +<!-- END handleAccessTokens bundle --> | |
| 89 | + | |
| 90 | +<!-- BEGIN overrideGlobals bundle --> | |
| 91 | + | |
| 92 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js">(()=>{"use strict";var e={},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}function o(e){let{context:t,property:r,value:o,enumerable:i=!0}=e,c=e.get,a=e.set;if(!r||void 0===o&&!c&&!a)return Error("property and value are required");let l=t||globalThis,s=l?.[r],u={};if(void 0!==o)u.value=o;else{if(c){let e=n(c);e&&(u.get=e)}if(a){let e=n(a);e&&(u.set=e)}}let p={...u,enumerable:i||!1,configurable:!1};void 0!==o&&(p.writable=!1);try{Object.defineProperty(l,r,p)}catch(e){return e instanceof TypeError?s:e}return s}function n(e,t){return"function"==typeof e?e:e?.async===!0&&"function"==typeof e.func?t?async function(t){return e.func(t)}:async function(){return e.func()}:"function"==typeof e?.func?e.func:void 0}r.rv=()=>"1.6.8",r.ruid="bundler=rspack@1.6.8";try{o({property:"strictDefine",value:o})}catch{}try{o({property:"defineStrictObject",value:c})}catch{}try{o({property:"defineStrictMethod",value:a})}catch{}var i=["toString","toLocaleString","valueOf","constructor","prototype"];function c(e){let{context:t,property:r,propertiesToExclude:n=[],skipPrototype:a=!1,hardenPrototypePropertiesToExclude:s=[]}=e;if(!r)return Error("property is required");let u=(t||globalThis)[r],p={},f=l(t,r);u&&("object"==typeof u||"function"==typeof u)&&Reflect.ownKeys(u).forEach(e=>{if(!n.includes(e)&&!i.includes(e)){let t=l(u,e);if(t&&(t.writable||t.configurable)){let{value:r,get:n,set:i,enumerable:c=!1}=t,a={};void 0!==r?a.value=r:n?a.get=n:i&&(a.set=i);try{let t=o({context:u,property:e,...a,enumerable:c});p[e]=t}catch(r){if(r instanceof TypeError)try{p[e]=t.value||t.get||t.set}catch{}else throw r}}}});let d={originalObject:u,originalProperties:p};if(!a&&u?.prototype!==void 0){let e=c({context:u,property:"prototype",propertiesToExclude:s,skipPrototype:!0});e instanceof Error||(d.originalPrototype=e?.originalObject,d.originalPrototypeProperties=e?.originalProperties)}return o({context:t,property:r,value:u,enumerable:f?.enumerable}),d}function a(e,t){let r=(t||globalThis)[e],n=l(t||globalThis,e);return r&&n&&(n.writable||n.configurable)?(Object.freeze(r),o({context:globalThis,property:e,value:r})):r}function l(e,t){if(!(!e||!t))try{return Reflect.getOwnPropertyDescriptor(e,t)}catch{return}}function s(e){return e.startsWith("//")&&/(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/g.test(`${location.protocol}:${e}`)&&(e=`${location.protocol}${e}`),!e.startsWith("http")||new URL(e).hostname===location.hostname}function u(e){if("string"!=typeof e)return e;try{return decodeURIComponent(e).toLowerCase().trim()}catch{return e.toLowerCase().trim()}}function p(e,t){return e instanceof Headers?e.forEach((r,o)=>{f(o,t)||e.delete(o)}):Object.keys(e).forEach(r=>{f(r,t)||delete e[r]}),e}function f(e,t){return!t.has(u(e)||"")}function d(e,t){let r=!0,o=u(function(e){let t,r;if(globalThis.Request&&e instanceof Request)t=e.url;else if("function"==typeof e?.toString)t=e.toString();else throw Error("Unsupported type for url");try{return new URL(t).pathname}catch{return(r=t.replace(/#.+/gi,"").split("?").shift()).startsWith("/")?r:`/${r}`}}(e));return o&&t.some(e=>o.includes(e))&&(r=!1),r}var y=["true","b","c","new","enabled"];let b=[],g=(e,t)=>{let r;return b.includes(t)||!0===(r=e[t])||"string"==typeof r&&y.includes(r.toLowerCase())};performance.mark("overrideGlobals started");let{experiments:m}=window.viewerModel,v=g(m,"specs.thunderbolt.securityExperiments");try{let e,t;!function(){let e=globalThis.open,t=document.open;function r(t,r,o){let n="string"!=typeof t,i=e.call(window,t,r,o);return n||t&&s(t)?{}:i}o({property:"open",value:r,context:globalThis,enumerable:!0}),o({property:"open",value:function(e,o,n){return e?r(e,o,n):t.call(document,e||"",o||"",n||"")},context:document,enumerable:!0})}(),v&&function(){let e=document.createElement,t=Element.prototype.setAttribute,r=Element.prototype.setAttributeNS,n=Element.prototype.removeAttribute,i=(Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"contentWindow")?.get,Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"src")),c=i?.get,a=i?.set,l=Object.getOwnPropertyDescriptor(HTMLIFrameElement.prototype,"sandbox")?.get,s=DOMTokenList.prototype.add,p=DOMTokenList.prototype.remove,f=DOMTokenList.prototype.toggle,d=DOMTokenList.prototype.replace,y=Object.getOwnPropertyDescriptor(DOMTokenList.prototype,"value"),b=y?.get,g=y?.set,m=new WeakSet;o({property:"createElement",context:document,value:function(n,i){let c=e.call(document,n,i);return"iframe"===u(n)&&(o({property:"srcdoc",context:c,get:()=>"",set:()=>{console.warn("`srcdoc` is not allowed in iframe elements.")}}),o({property:"setAttribute",context:c,value:function(e,r){if("srcdoc"===e.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");t.call(c,e,r);e.toLowerCase()},enumerable:!1}),o({property:"setAttributeNS",context:c,value:function(e,t,o){if("srcdoc"===t.toLowerCase())return void console.warn("`srcdoc` attribute is not allowed to be set.");r.call(c,e,t,o);t.toLowerCase()},enumerable:!1})),c},enumerable:!0})}(),g(m,"specs.thunderbolt.hardenFetchAndXHR")&&v&&function(e,t,r){let n=fetch,i=XMLHttpRequest,c=new Set(t);function a(){let t=new i,o=t.open,n=t.setRequestHeader;return t.open=function(){let n=Array.from(arguments),i=n[1];if(n.length<2||d(i,e))return o.apply(t,n);throw Error(r||`Request not allowed for path ${i}`)},t.setRequestHeader=function(e,r){f(decodeURIComponent(e),c)&&n.call(t,e,r)},t}o({property:"fetch",value:function(){var t;let o=(t=arguments,globalThis.Request&&t[0]instanceof Request&&t[0]?.headers?p(t[0].headers,c):t[1]?.headers&&p(t[1].headers,c),t);return d(arguments[0],e)?n.apply(globalThis,Array.from(o)):new Promise((e,t)=>{let o=Error(r||`Request not allowed for path ${arguments[0]}`);t(o)})},enumerable:!0}),o({property:"XMLHttpRequest",value:a,enumerable:!0}),Object.keys(i).forEach(e=>{a[e]=i[e]})}(["/_api/v1/access-tokens","/_api/v2/dynamicmodel","/_api/one-app-session-web/v3/businesses"],["client-binding"]),function(){if(navigator&&"serviceWorker"in navigator)navigator.serviceWorker.register,o({context:navigator.serviceWorker,property:"register",value:function(){console.log("Service worker registration is not allowed")},enumerable:!0})}(),e=[],t=(t=[]).concat(["TextEncoder","TextDecoder"]),v&&(t=t.concat(["XMLHttpRequestEventTarget","EventTarget"])),t=t.concat(["URL","JSON"]),v&&(e=e.concat(["addEventListener","removeEventListener"])),e=e.concat(["encodeURI","encodeURIComponent","decodeURI","decodeURIComponent"]),t=t.concat(["String","Number"]),v&&t.push("Object"),t=t.concat(["Reflect"]),e.forEach(e=>{a(e),["addEventListener","removeEventListener"].includes(e)&&a(e,document)}),t.forEach(e=>{c({property:e})}),v&&function(){return e("setTimeout",0,globalThis),e("setInterval",0,globalThis);function e(e,t,r){let n=r||globalThis,i=n[e];if(!i||"function"!=typeof i)throw Error(`Function ${e} not found or is not a function`);o({property:e,value:function(){let r=Array.from(arguments);if("string"!=typeof r[t])return i.apply(n,r);console.warn(`Calling ${e} with a String Argument at index ${t} is not allowed`)},context:r,enumerable:!0})}}()}catch(t){window?.viewerModel?.mode.debug&&console.error(t);let e=Error("TB006");window.fedops?.reportError(e,"security_overrideGlobals"),window.Sentry?window.Sentry.captureException(e):globalThis.defineStrictProperty("sentryBuffer",[e],window,!1)}performance.mark("overrideGlobals ended")})(); | |
| 93 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/overrideGlobals.inline.b271af7d.bundle.min.js.map</script> | |
| 94 | + | |
| 95 | +<!-- END overrideGlobals bundle --> | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + <script> | |
| 101 | + window.commonConfig = viewerModel.commonConfig | |
| 102 | + | |
| 103 | + | |
| 104 | + window.clientSdk = new Proxy({}, {get: (target, prop) => (...args) => window.externalsRegistry.clientSdk.loaded.then(() => window.__clientSdk__[prop](...args))}) | |
| 105 | + | |
| 106 | + </script> | |
| 107 | + | |
| 108 | + <!-- Initial CSS --> | |
| 109 | + <style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css">@keyframes slide-horizontal-new{0%{transform:translate(100%)}}@keyframes slide-horizontal-old{80%{opacity:1}to{opacity:0;transform:translate(-100%)}}@keyframes slide-vertical-new{0%{transform:translateY(-100%)}}@keyframes slide-vertical-old{80%{opacity:1}to{opacity:0;transform:translateY(100%)}}@keyframes out-in-new{0%{opacity:0}}@keyframes out-in-old{to{opacity:0}}:root:active-view-transition{view-transition-name:none}:root:active-view-transition::view-transition-group(*){animation:none}:root:active-view-transition::view-transition-old(*){animation:none}:root:active-view-transition::view-transition-new(*){animation:none}:root::view-transition{pointer-events:none}:root:active-view-transition #SITE_HEADER{view-transition-name:header-group}:root:active-view-transition #WIX_ADS{view-transition-name:wix-ads-group}:root:active-view-transition #SITE_FOOTER{view-transition-name:footer-group}:root:active-view-transition #BACKGROUND_GROUP_TRANSITION_GROUP>div{view-transition-name:background-group}:root:active-view-transition::view-transition-group(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-old(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition::view-transition-new(page-group){pointer-events:all;cursor:wait;animation:revert;animation-duration:.6s}:root:active-view-transition-type(SlideHorizontal)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-horizontal-old}:root:active-view-transition-type(SlideHorizontal)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-horizontal-new}:root:active-view-transition-type(SlideVertical)::view-transition-old(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) forwards slide-vertical-old}:root:active-view-transition-type(SlideVertical)::view-transition-new(page-group){mix-blend-mode:normal;animation:.6s cubic-bezier(.83,0,.17,1) backwards slide-vertical-new}:root:active-view-transition-type(OutIn)::view-transition-old(page-group){animation:.35s cubic-bezier(.22,1,.36,1) forwards out-in-old}:root:active-view-transition-type(OutIn)::view-transition-new(page-group){animation:.35s cubic-bezier(.64,0,.78,0) .35s backwards out-in-new}@media (prefers-reduced-motion:reduce){::view-transition-group(*){animation:none!important}::view-transition-old(*){animation:none!important}::view-transition-new(*){animation:none!important}}html,body{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}body{--scrollbar-width:0px;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;font-family:Arial,Helvetica,sans-serif;font-size:10px}html,body{height:100%}body{overflow-x:auto;overflow-y:scroll}body:not(.responsive) #site-root{width:100%;min-width:var(--site-width)}body:not([data-js-loaded]) [data-hide-prejs]{visibility:hidden}interact-element{display:contents}#SITE_CONTAINER{position:relative}:root{--one-unit:1vw;--section-max-width:9999px;--spx-stopper-max:9999px;--spx-stopper-min:0px;--browser-zoom:1}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){:root{--safari-sticky-fix:opacity;--experimental-safari-sticky-fix:translateZ(0)}}@supports (container-type:inline-size){:root{--one-unit:1cqw}}[id^=oldHoverBox-]{mix-blend-mode:plus-lighter;transition:opacity .5s,visibility .5s}[data-mesh-id$=inlineContent-gridContainer]:has(>[id^=oldHoverBox-]){isolation:isolate} | |
| 110 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.744ea815.min.css.map*/</style> | |
| 111 | +<style data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css">div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,nav,button,section,header,footer,title{vertical-align:baseline;background:0 0;border:0;outline:0;margin:0;padding:0}textarea,input,select{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif}ol,ul{list-style:none}blockquote,q{quotes:none}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}a{cursor:pointer;text-decoration:none}.testStyles{overflow-y:hidden}.reset-button{color:inherit;font:inherit;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;background:0 0;border:0;outline:0;padding:0;line-height:normal;overflow:visible}:focus{outline:none}body.device-mobile-optimized:not(.disable-site-overflow){overflow-x:hidden;overflow-y:scroll}body.device-mobile-optimized:not(.responsive) #SITE_CONTAINER{width:320px;margin-left:auto;margin-right:auto;position:relative;overflow-x:visible}body.device-mobile-optimized:not(.responsive):not(.blockSiteScrolling) #SITE_CONTAINER{margin-top:0}body.device-mobile-optimized>*{max-width:100%!important}body.device-mobile-optimized #site-root{overflow:hidden}@supports (overflow:clip){body.device-mobile-optimized #site-root{overflow:clip}}body.device-mobile-non-optimized #SITE_CONTAINER #site-root{overflow:clip}body.device-mobile-non-optimized.fullScreenMode{background-color:#5f6360}body.device-mobile-non-optimized.fullScreenMode #site-root,body.device-mobile-non-optimized.fullScreenMode #SITE_BACKGROUND,body.device-mobile-non-optimized.fullScreenMode #MOBILE_ACTIONS_MENU,body.fullScreenMode #WIX_ADS{visibility:hidden}body.fullScreenMode{overflow:hidden!important}body.fullScreenMode.device-mobile-optimized #TINY_MENU{opacity:0;pointer-events:none}body.fullScreenMode-scrollable.device-mobile-optimized{overflow-x:hidden!important;overflow-y:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #site-root,body.fullScreenMode-scrollable.device-mobile-optimized #masterPage{overflow:hidden!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage,body.fullScreenMode-scrollable.device-mobile-optimized #SITE_BACKGROUND{height:auto!important}body.fullScreenMode-scrollable.device-mobile-optimized #masterPage.mesh-layout{height:0!important}body.blockSiteScrolling,body.siteScrollingBlocked{width:100%;position:fixed}body.siteScrollingBlockedIOSFix{overflow:hidden!important}body.blockSiteScrolling #SITE_CONTAINER{margin-top:calc(var(--blocked-site-scroll-margin-top)*-1)}#site-root{top:var(--wix-ads-height);min-height:100%;margin:0 auto;position:relative}#site-root img:not([src]){visibility:hidden}#site-root svg img:not([src]){visibility:visible}.auto-generated-link{color:inherit}#SCROLL_TO_TOP,#SCROLL_TO_BOTTOM{height:0}.has-click-trigger{cursor:pointer}.fullScreenOverlay{z-index:1005;justify-content:center;display:flex;position:fixed;top:-60px;bottom:0;left:0;right:0;overflow-y:hidden}.fullScreenOverlay>.fullScreenOverlayContent{margin:0 auto;position:absolute;top:60px;bottom:0;left:0;right:0;overflow:hidden;transform:translateZ(0)}[data-mesh-id$=inlineContent],[data-mesh-id$=centeredContent],[data-mesh-id$=form]{pointer-events:none;position:relative}[data-mesh-id$=-gridWrapper],[data-mesh-id$=-rotated-wrapper]{pointer-events:none}[data-mesh-id$=-gridContainer]>*,[data-mesh-id$=-rotated-wrapper]>*,[data-mesh-id$=inlineContent]>:not([data-mesh-id$=-gridContainer]){pointer-events:auto}.device-mobile-optimized #masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID{-ms-grid-row:2;grid-area:2/1/3/2;position:relative}#masterPage.mesh-layout{display:-ms-grid;-ms-grid-rows:max-content max-content min-content max-content;-ms-grid-columns:100%;grid-template-rows:max-content max-content min-content max-content;grid-template-columns:100%;justify-content:stretch;align-items:start;display:grid}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder,#masterPage.mesh-layout #SOSP_CONTAINER_CUSTOM_ID[data-state~=mobileView],#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-column:1;-ms-grid-row-align:start;-ms-grid-column-align:start}#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_HEADER-placeholder{-ms-grid-row:1;grid-area:1/1/2/2}#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{-ms-grid-row:3;grid-area:3/1/4/2}#masterPage.mesh-layout #soapBeforePagesContainer,#masterPage.mesh-layout #soapAfterPagesContainer{width:100%}#masterPage.mesh-layout #PAGES_CONTAINER{align-self:stretch}#masterPage.mesh-layout main#PAGES_CONTAINER{display:block}#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER-placeholder{-ms-grid-row:4;grid-area:4/1/5/2}#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERcenteredContent],#masterPage.mesh-layout [data-mesh-id=PAGES_CONTAINERinlineContent],#masterPage.mesh-layout #SITE_PAGES{height:100%}#masterPage.mesh-layout.desktop>*{width:100%}#masterPage.mesh-layout #SITE_PAGES,#masterPage.mesh-layout #SITE_HEADER_WRAPPER,#masterPage.mesh-layout #SITE_FOOTER_WRAPPER,#masterPage.mesh-layout #PAGES_CONTAINER,#masterPage.mesh-layout #masterPageinlineContent,#masterPage.mesh-layout #SITE_FOOTER,#masterPage.mesh-layout #SITE_HEADER{position:relative}#masterPage.mesh-layout #SITE_HEADER{grid-area:1/1/2/2}#masterPage.mesh-layout #SITE_FOOTER{grid-area:4/1/5/2}#masterPage.mesh-layout.overflow-x-clip #SITE_HEADER,#masterPage.mesh-layout.overflow-x-clip #SITE_FOOTER{overflow-x:clip}[data-z-counter]{z-index:0}[data-z-counter="0"]{z-index:auto}.wixSiteProperties{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--wst-button-color-fill-primary:rgb(var(--color_48));--wst-button-color-border-primary:rgb(var(--color_49));--wst-button-color-text-primary:rgb(var(--color_50));--wst-button-color-fill-primary-hover:rgb(var(--color_51));--wst-button-color-border-primary-hover:rgb(var(--color_52));--wst-button-color-text-primary-hover:rgb(var(--color_53));--wst-button-color-fill-primary-disabled:rgb(var(--color_54));--wst-button-color-border-primary-disabled:rgb(var(--color_55));--wst-button-color-text-primary-disabled:rgb(var(--color_56));--wst-button-color-fill-secondary:rgb(var(--color_57));--wst-button-color-border-secondary:rgb(var(--color_58));--wst-button-color-text-secondary:rgb(var(--color_59));--wst-button-color-fill-secondary-hover:rgb(var(--color_60));--wst-button-color-border-secondary-hover:rgb(var(--color_61));--wst-button-color-text-secondary-hover:rgb(var(--color_62));--wst-button-color-fill-secondary-disabled:rgb(var(--color_63));--wst-button-color-border-secondary-disabled:rgb(var(--color_64));--wst-button-color-text-secondary-disabled:rgb(var(--color_65));--wst-color-fill-base-1:rgb(var(--color_36));--wst-color-fill-base-2:rgb(var(--color_37));--wst-color-fill-base-shade-1:rgb(var(--color_38));--wst-color-fill-base-shade-2:rgb(var(--color_39));--wst-color-fill-base-shade-3:rgb(var(--color_40));--wst-color-fill-accent-1:rgb(var(--color_41));--wst-color-fill-accent-2:rgb(var(--color_42));--wst-color-fill-accent-3:rgb(var(--color_43));--wst-color-fill-accent-4:rgb(var(--color_44));--wst-color-fill-background-primary:rgb(var(--color_11));--wst-color-fill-background-secondary:rgb(var(--color_12));--wst-color-text-primary:rgb(var(--color_15));--wst-color-text-secondary:rgb(var(--color_14));--wst-color-action:rgb(var(--color_18));--wst-color-disabled:rgb(var(--color_39));--wst-color-title:rgb(var(--color_45));--wst-color-subtitle:rgb(var(--color_46));--wst-color-line:rgb(var(--color_47));--wst-font-style-h2:var(--font_2);--wst-font-style-h3:var(--font_3);--wst-font-style-h4:var(--font_4);--wst-font-style-h5:var(--font_5);--wst-font-style-h6:var(--font_6);--wst-font-style-body-large:var(--font_7);--wst-font-style-body-medium:var(--font_8);--wst-font-style-body-small:var(--font_9);--wst-font-style-body-x-small:var(--font_10);--wst-color-custom-1:rgb(var(--color_13));--wst-color-custom-2:rgb(var(--color_16));--wst-color-custom-3:rgb(var(--color_17));--wst-color-custom-4:rgb(var(--color_19));--wst-color-custom-5:rgb(var(--color_20));--wst-color-custom-6:rgb(var(--color_21));--wst-color-custom-7:rgb(var(--color_22));--wst-color-custom-8:rgb(var(--color_23));--wst-color-custom-9:rgb(var(--color_24));--wst-color-custom-10:rgb(var(--color_25));--wst-color-custom-11:rgb(var(--color_26));--wst-color-custom-12:rgb(var(--color_27));--wst-color-custom-13:rgb(var(--color_28));--wst-color-custom-14:rgb(var(--color_29));--wst-color-custom-15:rgb(var(--color_30));--wst-color-custom-16:rgb(var(--color_31));--wst-color-custom-17:rgb(var(--color_32));--wst-color-custom-18:rgb(var(--color_33));--wst-color-custom-19:rgb(var(--color_34));--wst-color-custom-20:rgb(var(--color_35))}.wix-presets-wrapper{display:contents}.builder-root{box-sizing:border-box}#main_MF .wix-visibility-hidden{visibility:hidden}#main_MF .wix-visibility-collapsed.wix-visibility-collapsed{--l_display:none;display:none}#main_MF .wix-visibility-revealed:after{content:"";box-sizing:border-box;z-index:1;pointer-events:none;border-radius:inherit;background-image:repeating-linear-gradient(-45deg,transparent,transparent 40%,rgba(43,86,114,.5) 40%,rgba(43,86,114,.5) 45%,rgba(255,255,255,.333) 45%,rgba(255,255,255,.333) 50%,transparent 50%);background-size:10px 10px;background-clip:padding-box;border:1px solid rgba(43,86,114,.5);position:absolute;top:0;bottom:0;left:0;right:0} | |
| 112 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.5cae55b2.min.css.map*/</style> | |
| 113 | + | |
| 114 | + <meta name="format-detection" content="telephone=no"> | |
| 115 | + <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"> | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + <!--pageHtmlEmbeds.head start--> | |
| 123 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head start"></script> | |
| 124 | + | |
| 125 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.head end"></script> | |
| 126 | + <!--pageHtmlEmbeds.head end--> | |
| 127 | + | |
| 128 | + | |
| 129 | + <!-- head performance data start --> | |
| 130 | + | |
| 131 | + <!-- head performance data end --> | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + <style id="a11y-contrast"> | |
| 138 | + @media (forced-colors: active) { | |
| 139 | + #SITE_CONTAINER.focus-ring-active | |
| 140 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus, | |
| 141 | + #SITE_CONTAINER.focus-ring-active | |
| 142 | + :not(.has-custom-focus):not(.ignore-focus):not([tabindex='-1']):focus | |
| 143 | + ~ .wixSdkShowFocusOnSibling { | |
| 144 | + outline: 2px solid CanvasText; | |
| 145 | + outline-offset: 2px; | |
| 146 | + } | |
| 147 | + } | |
| 148 | + </style> | |
| 149 | + | |
| 150 | + | |
| 151 | + <script id="wix-skip-played-animations-setup"> | |
| 152 | + (function() { | |
| 153 | + var navEntry = performance.getEntriesByType('navigation')[0]; | |
| 154 | + if (navEntry && navEntry.type === 'reload') { | |
| 155 | + return; | |
| 156 | + } | |
| 157 | + if ('PageRevealEvent' in window) { | |
| 158 | + window.__pageRevealPromise = new Promise(function(resolve) { | |
| 159 | + window.addEventListener('pagereveal', resolve, { once: true }); | |
| 160 | + }); | |
| 161 | + } else { | |
| 162 | + window.__pageRevealPromise = Promise.resolve(); | |
| 163 | + } | |
| 164 | + })(); | |
| 165 | + </script> | |
| 166 | + | |
| 167 | +<meta http-equiv="X-Wix-Meta-Site-Id" content="39b9882f-9e71-4f93-bb6d-a87166c85cda"> | |
| 168 | +<meta http-equiv="X-Wix-Application-Instance-Id" content="452071c1-a99b-44c2-b686-dd15b11264a3"> | |
| 169 | + | |
| 170 | + <meta http-equiv="X-Wix-Published-Version" content="4"/> | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + <meta http-equiv="etag" content="bug"/> | |
| 175 | + | |
| 176 | +<!-- render-head end --> | |
| 177 | + | |
| 178 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap.2c161780.min.css">.EtmdIW{cursor:pointer}.XWeqiF{opacity:0}.bWoigz{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.HTrn1j{opacity:1}.sAGPNe{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.37,0,.63,1)}.cCFKrw{opacity:0}.yifJnQ{opacity:1;transition:opacity var(--transition-duration)cubic-bezier(.64,0,.78,0)}._mj5qU{opacity:1}.gG6uhp{opacity:0;transition:opacity var(--transition-duration)cubic-bezier(.22,1,.36,1)}.k0CnHT{transform:translate(100%)}.URQNsX{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.CCwVTE{transform:translate(0)}.TX_1qK{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(-100%)}.JMRv7x{transform:translate(-100%)}.AOzCGi{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(0)}.WzSMGx{transform:translate(0)}.I76Pz6{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translate(100%)}.bX95uQ{transform:translateY(100%)}.Ogwj62{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.GdyWfW{transform:translateY(0)}.YxqFze{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(-100%)}.NrDww4{transform:translateY(-100%)}.ciVV17{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(0)}.BMKrqh{transform:translateY(0)}.jNxMkI{transition:transform var(--transition-duration)cubic-bezier(.87,0,.13,1);transform:translateY(100%)}body:not(.responsive) .Y3K28_{overflow-x:clip}:root:active-view-transition .Y3K28_{view-transition-name:page-group}.uvik8H{grid-template-rows:1fr;grid-template-columns:1fr;height:100%;display:grid}.uvik8H>div{grid-area:1/1/2/2;align-self:stretch!important;justify-self:stretch!important}.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}ul.font_100,ol.font_100{color:#080808;font-variant:normal;letter-spacing:normal;margin:0;font-family:"Arial, Helvetica, sans-serif",serif;font-size:10px;font-style:normal;font-weight:400;line-height:normal;text-decoration:none}ul.font_100 li,ol.font_100 li{margin-bottom:12px}ul.wix-list-text-align,ol.wix-list-text-align{list-style-position:inside}ul.wix-list-text-align p,ul.wix-list-text-align h1,ul.wix-list-text-align h2,ul.wix-list-text-align h3,ul.wix-list-text-align h4,ul.wix-list-text-align h5,ul.wix-list-text-align h6,ol.wix-list-text-align p,ol.wix-list-text-align h1,ol.wix-list-text-align h2,ol.wix-list-text-align h3,ol.wix-list-text-align h4,ol.wix-list-text-align h5,ol.wix-list-text-align h6{display:inline}.E28gHm{cursor:pointer}.V9ooqn{clip:rect(0 0 0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}@supports ((-webkit-appearance:none)) and (stroke-color:transparent){._v6ohL>*>:first-child{vertical-align:top}}@supports (-webkit-touch-callout:none){._v6ohL>*>:first-child{vertical-align:top}}._v6ohL [data-attr-richtext-marker=true]{display:block}._v6ohL [data-attr-richtext-marker=true] table{border-collapse:collapse;width:100%;margin:15px 0}._v6ohL [data-attr-richtext-marker=true] table td{padding:12px;position:relative}._v6ohL [data-attr-richtext-marker=true] table td:after{content:"";opacity:.2;border-bottom:1px solid;border-left:1px solid;position:absolute;inset:0}._v6ohL [data-attr-richtext-marker=true] table tr td:last-child:after{border-right:1px solid}._v6ohL [data-attr-richtext-marker=true] table tr:first-child td:after{border-top:1px solid}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) [class$=rich-text__text],.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div)[class$=rich-text__text]{color:var(--corvid-color,currentColor)}.N5mCVp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div) span[style*=color]{color:var(--corvid-color,currentColor)!important}.V3wkP4{min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction)}.V3wkP4 .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.V3wkP4 .nzCBBu ul{list-style:inside}.V3wkP4 .nzCBBu li{margin-bottom:12px}.UwkEpO p,.UwkEpO h1,.UwkEpO h2,.UwkEpO h3,.UwkEpO h4,.UwkEpO h5,.UwkEpO h6,.UwkEpO blockquote,.UwkEpO div{letter-spacing:normal;line-height:normal}.JykKzs{min-height:var(--min-height);min-width:var(--min-width)}.JykKzs .nzCBBu{word-wrap:break-word;overflow-wrap:break-word;width:100%;height:100%;position:relative}.JykKzs .nzCBBu ol,.JykKzs .nzCBBu ul{letter-spacing:normal;margin-inline-start:.5em;padding-inline-start:1.3em;line-height:normal}.JykKzs .nzCBBu ul{list-style-type:disc}.JykKzs .nzCBBu ol{list-style-type:decimal}.JykKzs .nzCBBu ul ul,.JykKzs .nzCBBu ol ul{line-height:normal;list-style-type:circle}.JykKzs .nzCBBu ol ol ul,.JykKzs .nzCBBu ol ul ul,.JykKzs .nzCBBu ul ol ul,.JykKzs .nzCBBu ul ul ul{line-height:normal;list-style-type:square}.JykKzs .nzCBBu li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.JykKzs .nzCBBu p,.JykKzs .nzCBBu h1,.JykKzs .nzCBBu h2,.JykKzs .nzCBBu h3,.JykKzs .nzCBBu h4,.JykKzs .nzCBBu h5,.JykKzs .nzCBBu h6{margin-block:0;letter-spacing:normal;margin:0;line-height:normal}.JykKzs .nzCBBu a{color:inherit}.N8MGzv,.UwkEpO{word-wrap:break-word;overflow-wrap:break-word;text-align:start;pointer-events:none;min-height:var(--min-height);min-width:var(--min-width);direction:var(--text-direction);mix-blend-mode:var(--blendMode,normal);text-transform:var(--textTransform,"none");text-shadow:var(--textOutline,0px 0px transparent),var(--textShadow,0px 0px transparent)}.N8MGzv>*,.UwkEpO>*{pointer-events:auto}.N8MGzv li,.UwkEpO li{font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal}.N8MGzv ol,.UwkEpO ol,.N8MGzv ul,.UwkEpO ul{letter-spacing:normal;margin-inline:.5em 0;line-height:normal}.N8MGzv:not(.PO9MfV) ol,.UwkEpO:not(.PO9MfV) ol,.N8MGzv:not(.PO9MfV) ul,.UwkEpO:not(.PO9MfV) ul{padding-inline:1.3em 0}.N8MGzv ul,.UwkEpO ul{list-style-type:disc}.N8MGzv ol,.UwkEpO ol{list-style-type:decimal}.N8MGzv ul ul,.UwkEpO ul ul,.N8MGzv ol ul,.UwkEpO ol ul{list-style-type:circle}.N8MGzv ul ul ul,.UwkEpO ul ul ul,.N8MGzv ol ul ul,.UwkEpO ol ul ul,.N8MGzv ul ol ul,.UwkEpO ul ol ul,.N8MGzv ol ol ul,.UwkEpO ol ol ul{list-style-type:square}.N8MGzv p,.UwkEpO p,.N8MGzv h1,.UwkEpO h1,.N8MGzv h2,.UwkEpO h2,.N8MGzv h3,.UwkEpO h3,.N8MGzv h4,.UwkEpO h4,.N8MGzv h5,.UwkEpO h5,.N8MGzv h6,.UwkEpO h6,.N8MGzv blockquote,.UwkEpO blockquote,.N8MGzv div,.UwkEpO div{margin-block:0;margin:0}.N8MGzv a,.UwkEpO a{color:inherit}.PO9MfV li{margin-inline:1.3em 0}.qe3oTb{pointer-events:none;white-space:nowrap;padding:0;overflow:hidden}.TvbeET{display:none}.CNHfeA{width:100%;position:absolute;inset:0}.ZfNvr6{transition:all .2s ease-in;transform:translateY(-100%)}.ICcIQy{transition:all .2s}.xL7MJu{opacity:0;transition:all .2s ease-in}.xL7MJu.Dbjboh{pointer-events:none}.xg8z1A{opacity:1;transition:all .2s}.G6vvJF{width:100%;height:auto;position:relative}.ZgDNL8{width:100%;position:relative}body:not(.device-mobile-optimized) ._c_gnD,:host(:not(.device-mobile-optimized)) ._c_gnD{margin-left:calc((100% - var(--site-width))/2);width:var(--site-width)}.HQtdHX[data-focuscycled=active]{outline:1px solid #0000}.HQtdHX[data-focuscycled=active]:not(:focus-within){outline:2px solid #0000;transition:outline 10ms}.HQtdHX ._c_gnD{position:absolute;inset:0}.w4DepW{direction:var(--direction)}.w4DepW .tN_ggS .re13Ik{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.w4DepW .tN_ggS .re13Ik:last-child{margin-block:0;margin-inline:0}.w4DepW .tN_ggS .re13Ik .twXk19{display:block}.w4DepW .tN_ggS .re13Ik .twXk19 .ZK9snE{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.w4DepW .tN_ggS .re13Ik .twXk19{outline-offset:0;outline:2px solid buttontext}.w4DepW .tN_ggS .re13Ik .twXk19:hover{outline-offset:-2px;outline:3px solid highlight}.w4DepW .tN_ggS .re13Ik .twXk19:focus,.w4DepW .tN_ggS .re13Ik .twXk19:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.w4DepW .tN_ggS{white-space:nowrap;width:100%;height:100%;position:absolute}body.device-mobile-optimized .w4DepW .tN_ggS,:host(.device-mobile-optimized) .w4DepW .tN_ggS{white-space:normal}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.QED8q1{width:100%;height:calc(100% - var(--wix-ads-height));margin-top:var(--wix-ads-height);pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container));grid-template-rows:1fr;grid-template-columns:1fr;display:grid;position:fixed;top:0;left:0}.MswS0Y{pointer-events:none;z-index:var(--pinned-layer-in-container,var(--above-all-in-container))}</style> | |
| 179 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SkipToContentButton].c9649c22.min.css">.BqYkvS{pointer-events:none;z-index:9999;color:#116dff;opacity:0;cursor:pointer;background:#fff;border-radius:24px;width:0;height:0;margin-left:-94px;padding:0 24px;font-family:Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;position:absolute;top:60px;left:50%}.BqYkvS:focus{opacity:1;pointer-events:auto;border:2px solid;width:auto;height:40px}</style> | |
| 180 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[GoogleMap].c573a625.min.css">.DDi8v8 .oD_vT7{position:absolute;inset:0}.ZzH1gE{background:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ZzH1gE .oD_vT7{border-radius:var(--rd,0);top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);display:inline-block;position:absolute;overflow:hidden;-webkit-mask-image:radial-gradient(circle,#fff,#000);mask-image:radial-gradient(circle,#fff,#000)}.d45pDW .oD_vT7{position:absolute;inset:9px}.d45pDW .BIO33b{background-image:url(https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/media/sloppyframe.3214ce8e.png);background-repeat:no-repeat;position:absolute;inset:0}.d45pDW .tq8JQN{background-position:0 0;bottom:3px;right:3px}.d45pDW .wiMpk0{background-position:100% 100%;top:3px;left:3px}.PhoT72{background-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.PhoT72 .oD_vT7{top:var(--brw,0);right:var(--brw,0);bottom:var(--brw,0);left:var(--brw,0);position:absolute;overflow:hidden}.PhoT72 .Yg0Qgp{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAAAaCAYAAADR0BVGAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAACIFJREFUeNrsnOuS2ygQhRuBnWTf/1k3O5aA/QNbJ8enQfJkapMJXeWyrPul+TjdjRzsmgUxvbXpYGaxfTaYTmZ2a597+/5Cn69t2b1NfzWzbzTvrzadYH5q2+O+Uzvunc7lDucU27q4HM85nLwfta1bzeyAeWo9M7O9fZe2foDlxcxy+53bukebLmb2ZmYPM/unffY2f2+ft7Y+/v7etu/bHm3bA/bff/flfZ+5/eZPhk+B6X4NBab7d7/G6kxf8b3gTHc/xO9t4JfdN/nTfWMDX0vNBxP42FdY/qVt9w388Ub+2fd5Ax/v227UVmK7pgjX0O9VavOsrWuOv/Z5CXz0il/zMy7gl+gDD1r+AN/Z22/0zwf42sPM/m4+2Od/Bx9/gM+/0Qf3vZNvsl+yH9pF37P0Tkiik24ETXbKbfIJ4kEVuOn/tOkbNMLeeBM47Y0cLzrnEcHpAp2LUSPb6Nw6TO5tnQOuuztkXye043QnqgQjfrA7LNsBnOhIbwBPXPeN9vFGkEWQ7rDsgPtc6HwOmH8Q1BUUq/gwHD1HrQOf834zNAP5IH8jfBIAMQkfSeAnXwB0CEKEHUIxwu8IAqGvh0IgAvgi7YMBf4Pz79v259KXYQfe4VqbD9xEeyvU2Rn4AT5b7LgLATPT8h18DjvZNwdweA74fGfciOR3BbbDawt0X4ymfxooZ865OWqSp28CYOzQrLQOghj2lgykO91EPgY3IgPnMoKiEQDZQSJsh5AJcN47bVsEmDJArwhFyeoRHbDvn6F5DJxYTSvgeUrRTsJw1nvXF3zvTAc+g6gNlKcCLHaqajqKCArhGMDvsUNHlcnbbrB9FOBmkXGD+ZVg3+9BFp1BcDqxAtsVao+VwMRRRgEfrSRqdhGxFIKX6tzw/vZjJEctZmJIeK/vpYvOGcT3iPTbQNEpOFbRS20UsvYeFIHLob/6vcFDC7C/Sje1kqIt4mFnguFIIT4EYHeC5iHCml0ALgvAsfLmkCM7Sq8IB5sB72y4XO1jrL4DqDbxYw+wKnIKjkhgv0uOeNiEWkyUEooEUITjTbSn+0SBIkRxn4HacRSdSiWVVmF5oXZbB78P6sQPEgeZtgtOOgWVJLbR6HTcCFNOmYUzvpVe7MFn4c4ovOZGmCE3V+giOjASfG8UOkVHLaBjc6NHFXg4gDwEpDBkrSJUzk4eJ4tw1oR6PCj0OURYwdNGDjkKdT8aZL+KfTTIw8VoK5KwCM50It9NQmWaSBNEJ/8eRSgfKIXAsE4OMBOpU+5cCvmuEh4HddKHyIVj7rEQH4zEjseZSqBV56vSPPUVUHr5oBEkgwhnvAQ7XvgB4UIliByOGq2kXI16DXN6lkygG+XldgHOMoDh7oS6nNcxgnUeFIPqBHrLfh0Q1xehGwb5WAy3cX50orc0ACYXMRmMtxP52jBQnnwNnCcsBNUi0kO7KBB5eUvV2WxwnDBQx+qZubBML0DSU49B5D42UUXmm4e/N1JJ2MNGCBU8J6t0Y6tTmVVwLATIQqDEYgbnV7C4pMLk7OT0gggLlv150B0B9qBoTLXHOAjnA8EOgZcItpgzTU6aYKMiaBTV+UDtvjrpnIOiycPJXSJouY4QKAzfBkwpJzo4Cct0ITluE+XofQcnX3DQfgx6g11UnKOjRk1Uy7OTbOaqnVe5O0h1IggLqeAiCjomKsNV3NPL1bdlf5wFBzLoO4eIrriQg+kqDPVZ0KhRACqii0J5qtqAxxYeElec3LqJiE4JjgD82ChC3Qa8MJGnfGqP6YUK4izsDgOaqzF32Z6H5KhjbuLGqyStGr7AYXZ2FGUm1RjsueJbBoWQM+O1FhCXfUS+NduP1d6thbCjoXycEqukNqOjKKMIx9U6r7TfKpaVicLktjdj0xlA/gDLq8ODgo3HsiEUuVLGlXKjB6dOHMdFKdLzUBaz52E43s3NYlkGpVvoeAz8Zct+RZjOwkwj5cltqwNTqcUOQLPnMambPQ9bMnsecqVC3CpEEl8LXg8Pa+NquQm1qQThuwechwkcR5bhogvk+6KTDxjlaxB63lgoVIaBch9cIebKHALdU4orLF722YzBE4TKyqQ0gz2/kKHSbJgbrfZct1BtmOHqcYfZwKNKlEo9I/6m7T0NgDV7K8JIyamL64DDga78cIJQhwzNTMvMgWlxZLval9cbz94WWbbss4Xz3pjZ4rR/VJaqzuCF+QpSal8mVGgVEMuCDSpVlp12HCb34r9jp4laPDO6PRDkuIfBJOtuz4nV4PRyZn5hhC+Uh94EB+Q2uGnLli0biwYj8cHhPKsz9QaQgiRC1py0nOIFg1GNN569JHEmcgzpxM0KJw5U6ILUMIaN8iDm9Fyequx5CXN6P7xBGPpn59yWLVv2OkSLgNZGy6qNx1kmey7AmOk6hopUZ1Ac/f/A6HVb80LvV+S6US5DqU6vis3vT9sg/Ma3dIqNq8kqx+lVopctW/a6FfPHLzMoVfiOOUxeVxV/1Jt9dZAqYAFlE1AObVaomb0Ly6oxODkIJZ25N7KBVOZxVWdyLcuWLft/bVbnUMOIRsMDzXRV20sHjNTj6L8MToHQBj3A6IJHAPYGXHsnulHPVWwVWpYt+4zg5Gq6UTg+Y8aINSbEmNn1Mc71TGX7TM8QJoA9m1Advb1yivzLli37bYDpia96UciFCfCu/n6aP/t/v7M9w5ntgkN3m+QLtgvrLlu27PcAZZiovtG6KhS3GewuRqI/rBNfhOJsOcMsXAQx7yss31q27NOCslyEahhEpK/+s9Nwebx4cbNlKjQOJ06wnjz+UpPLln0uYP6sP2NWbDjzqmL9GQe/sn2dXHh478kuW7bsjwXqVXao4UkvcybUuhi1bNmyZSPb1i1YtmzZsgXKZcuWLVugXLZs2bKPtH8HADJQ9p+EtD02AAAAAElFTkSuQmCC);background-repeat:no-repeat;width:165px;height:26px;position:absolute;bottom:-26px}.PhoT72 .u2ipRh{background-position:0 0;left:-20px}.PhoT72 .JNSeQ8{background-position:100% 0;right:-20px}.tE8VE3{width:100%;height:100%}.TlDFAU{font-size:14px;font-weight:500;line-height:15px}.erPUts{color:#333;font-size:13px;font-weight:400}.dKbVyb{color:var(--wst-links-and-actions-color,#1a73e8);font-size:13px;font-weight:400;text-decoration:underline;display:block}.ug7ltv svg{width:32px;height:32px}.gTl8fV{clip-path:polygon(0 0,0 0,0 0,0 0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}</style> | |
| 181 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_mobile.a7aaff2a.min.css">.BZjmPL{direction:var(--direction,ltr)}.BZjmPL>ul{box-sizing:border-box;width:100%}.BZjmPL>ul li{display:block}.BZjmPL>ul li>div:focus,.BZjmPL>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.BZjmPL .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);position:relative;-webkit-transform:translateZ(0)}.d2V6sy{display:var(--display);--display:grid;direction:var(--direction,ltr);grid-template-columns:minmax(0,1fr)}.d2V6sy>ul{box-sizing:border-box;width:100%}.d2V6sy>ul li{display:block}.d2V6sy>ul li>div:focus,.d2V6sy>ul li>div:active{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1));transition:var(--itemBGColorNoTrans,background-color 50ms ease 0s)}.d2V6sy .OXEw4D{box-shadow:var(--shd,0 1px 4px #0009);min-height:1px;position:relative;-webkit-transform:translateZ(0)}.FWN1UT{--padding-start-lvl1:var(--padding-start,0);--padding-end-lvl1:var(--padding-end,0);--padding-start-lvl2:var(--sub-padding-start,0);--padding-end-lvl2:var(--sub-padding-end,0);--padding-start-lvl3:calc(2*var(--padding-start-lvl2) - var(--padding-start-lvl1));--padding-end-lvl3:calc(2*var(--padding-end-lvl2) - var(--padding-end-lvl1));background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;min-width:100px;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.FWN1UT .keDKhi{cursor:pointer;height:var(--item-height,50px);grid-template-columns:1fr;display:grid;position:relative}.FWN1UT .keDKhi>.j945c8{text-overflow:ellipsis;position:relative}.FWN1UT .keDKhi>.j945c8>.G7GdaI{-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:absolute;inset:0;overflow:hidden}.FWN1UT .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.FWN1UT .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_14,color_14)))}@supports (-webkit-touch-callout:none){.FWN1UT .keDKhi>.j945c8>.G7GdaI{text-decoration:underline #0000}}.FWN1UT.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.FWN1UT.Hp2waC>.keDKhi>.j945c8{grid-area:label}.FWN1UT.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.FWN1UT.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.FWN1UT.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.FWN1UT.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .FWN1UT.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.FWN1UT>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.FWN1UT>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.FWN1UT>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));line-height:var(--item-height,50px);color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--padding-start-lvl2,0);padding-inline-end:var(--padding-end-lvl2,0)}.FWN1UT>.tFexI9 .tFexI9 .G7GdaI{padding-inline-start:var(--padding-start-lvl3,0);padding-inline-end:var(--padding-end-lvl3,0)}.FWN1UT .DpFF8A{opacity:0;position:absolute}.FWN1UT .G7GdaI{padding-inline-start:var(--padding-start-lvl1,0);padding-inline-end:var(--padding-end-lvl1,0)}.Onlmt7{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));box-sizing:border-box;text-align:var(--text-align,left);border-style:solid;border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));border-width:var(--brw,1px);transition:var(--itemBGColorTrans,background-color .4s ease 0s);margin:0;list-style:none;display:flex;position:relative}.Onlmt7 .keDKhi{cursor:pointer;grid-template-columns:1fr;height:auto;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8{text-overflow:ellipsis;display:grid;position:relative}.Onlmt7 .keDKhi>.j945c8>.G7GdaI{padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);-webkit-user-select:none;user-select:none;font:var(--fnt,var(--font_1));color:rgb(var(--txt,var(--color_15,color_15)));white-space:nowrap;text-overflow:ellipsis;display:inline;position:relative;overflow:hidden}.Onlmt7 .keDKhi>.NUCS6n{cursor:pointer;min-width:12px;font-family:Arial,Helvetica,sans-serif;font-size:10px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8{width:1em;min-width:12px;margin:0 20px}.Onlmt7 .keDKhi>.NUCS6n>.jIDNF8 svg{pointer-events:none;fill:rgb(var(--arrowColor,var(--color_15,color_15)))}.Onlmt7.Hp2waC>.keDKhi{grid-template-columns:var(--template-columns,1fr 52px);grid-template-areas:var(--template-areas,"label arrow")}.Onlmt7.Hp2waC>.keDKhi>.j945c8{grid-area:label}.Onlmt7.Hp2waC>.keDKhi>.NUCS6n{flex-direction:column;grid-area:arrow;justify-content:center;align-items:flex-end;display:flex}.Onlmt7.rErQ82>.tFexI9{opacity:1;transition:var(--subMenuOpacityTrans,all .4s ease 0s);display:block}.Onlmt7.rErQ82>.keDKhi .jIDNF8{transform:rotate(180deg)}.Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgs,var(--color_15,color_15)),var(--alpha-bgs,1))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi{background-color:rgba(var(--bgsSub,var(--color_15,color_15)),var(--alpha-bgsSub,1))}.Onlmt7.jqR3kU>.keDKhi>.j945c8>.G7GdaI{color:rgb(var(--txts,var(--color_13,color_13)))}.Hp2waC .Onlmt7.jqR3kU>.keDKhi.QdG3LK>.j945c8>.G7GdaI{color:rgb(var(--txtsSub,var(--color_13,color_13)))}.Onlmt7>.tFexI9{opacity:0;transition:var(--subMenuOpacityTrans,all .4s ease 0s);min-width:100%;display:none}.Onlmt7>.tFexI9>.GrMktH{background-color:rgba(var(--bgexpanded,var(--color_15,color_15)),var(--alpha-bgexpanded,1));border:none}.Onlmt7>.tFexI9>.GrMktH .G7GdaI{font:var(--fntSubMenu,var(--font_1));color:rgb(var(--txtexpanded,var(--color_13,color_13)));padding-inline-start:var(--sub-padding-start,0);padding-inline-end:var(--sub-padding-end,0)}.Onlmt7 .DpFF8A{opacity:0;position:absolute}.Onlmt7 .G7GdaI{padding-inline-start:var(--padding-start,0);padding-inline-end:var(--padding-end,0)}.WIf5uD .keDKhi{direction:var(--item-depth0-direction);text-align:var(--item-depth0-align,var(--text-align))}.jieHoL .keDKhi{direction:var(--item-depth1-direction);text-align:var(--item-depth1-align,var(--text-align))}.pk6ct0 .keDKhi{direction:var(--item-depth2-direction);text-align:var(--item-depth2-align,var(--text-align))}.Uym66v{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.Uym66v.I_VSKP{opacity:1;visibility:visible}.Uym66v[data-undisplayed=true]{display:none}.Uym66v:not([data-is-mesh]) .a6myrz,.Uym66v:not([data-is-mesh]) .vaRtfC{position:absolute;inset:0}.PuJkmm{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.PuJkmm.nQIUtw{display:none}body.device-mobile-optimized .PuJkmm,:host(.device-mobile-optimized) .PuJkmm{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.nQIUtw,:host(.device-mobile-optimized) .Uym66v.nQIUtw{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .Uym66v.PV8CZu,:host(.device-mobile-optimized) .Uym66v.PV8CZu{height:100vh}body:not(.device-mobile-optimized) .Uym66v.PV8CZu,:host(:not(.device-mobile-optimized)) .Uym66v.PV8CZu{height:100vh}.JssDma.PV8CZu{height:calc(var(--menu-height) - var(--wix-ads-height))}.JssDma.PV8CZu>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.Uym66v.PV8CZu{top:0}.vaRtfC{width:100%;height:100%}.Uym66v{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.GtYgZN{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.GtYgZN.DhNUBc{opacity:1;visibility:visible}.GtYgZN[data-undisplayed=true]{display:none}.GtYgZN:not([data-is-mesh]) .PGRltO,.GtYgZN:not([data-is-mesh]) .ontAlD{position:absolute;inset:0}.bKMmNw{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.bKMmNw.XiExOX{display:none}body.device-mobile-optimized .bKMmNw,:host(.device-mobile-optimized) .bKMmNw{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.XiExOX,:host(.device-mobile-optimized) .GtYgZN.XiExOX{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .GtYgZN.u1yVmb,:host(.device-mobile-optimized) .GtYgZN.u1yVmb{height:100vh}body:not(.device-mobile-optimized) .GtYgZN.u1yVmb,:host(:not(.device-mobile-optimized)) .GtYgZN.u1yVmb{height:100vh}.fgXcGP.u1yVmb{height:calc(var(--menu-height) - var(--wix-ads-height))}.fgXcGP.u1yVmb>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.GtYgZN.u1yVmb{top:0}.ontAlD{width:100%;height:100%}.GtYgZN{z-index:calc(var(--above-all-z-index) - 1);position:fixed}.fgXcGP{scrollbar-width:none;overflow-x:hidden;overflow-y:scroll;overflow:-moz-scrollbars-none;-ms-overflow-style:none;position:relative}.fgXcGP::-webkit-scrollbar{width:0;height:0}.ml3dss{display:inherit;height:inherit;width:auto}.qJB7LV{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .ml3dss,body:not(.responsive) .qJB7LV{z-index:var(--above-all-in-container)}.ml3dss.d0L2ow,.qJB7LV.d0L2ow{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.qJB7LV{touch-action:manipulation}}.vlJDcR{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.vlJDcR.d0L2ow{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.Pfl7LL{display:inherit;height:inherit;width:auto}.SOW3kh{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .Pfl7LL,body:not(.responsive) .SOW3kh{z-index:var(--above-all-in-container)}.Pfl7LL.EstcUq,.SOW3kh.EstcUq{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.SOW3kh{touch-action:manipulation}}.xC357X{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.xC357X.EstcUq{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.JJE8Wh{cursor:pointer;border-radius:50%;width:22px;height:22px;transition:all .3s linear;display:block;position:relative}.JJE8Wh:before,.JJE8Wh:after{content:"";background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:5px;margin:auto;position:absolute;inset:0}.JJE8Wh:before{width:22px;height:3px}.JJE8Wh:after{width:22px;height:3px;transition:all .12s linear;transform:rotate(90deg)}.JJE8Wh.EstcUq{transform:rotate(180deg)}.JJE8Wh.EstcUq:before{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.JJE8Wh.EstcUq:after{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(180deg)}.igzAYe{display:inherit;height:inherit;width:auto}.ISBHB0{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .igzAYe,body:not(.responsive) .ISBHB0{z-index:var(--above-all-in-container)}.igzAYe.v_eR1n,.ISBHB0.v_eR1n{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ISBHB0{touch-action:manipulation}}.FVpEn7{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.FVpEn7.v_eR1n{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.vWwHt3{cursor:pointer;flex-direction:column;justify-content:space-between;width:26px;height:21px;transition:transform .33s ease-out;display:flex}.vWwHt3.v_eR1n{transform:rotate(-45deg)}.jECeES{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1.5px;width:100%;height:3px}.jECeES.wjOCYk{width:50%}.jECeES.IgM_eH{transform-origin:100%;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.IgM_eH{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(4px)}.jECeES.Zp0zoK{transform-origin:0;align-self:flex-end;transition:transform .33s cubic-bezier(.54,-.81,.57,.57)}.v_eR1n .jECeES.Zp0zoK{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-90deg)translate(-4px)}.v_eR1n .jECeES.GVKWTt{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wsSrN4{display:inherit;height:inherit;width:auto}.dfqkHk{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wsSrN4,body:not(.responsive) .dfqkHk{z-index:var(--above-all-in-container)}.wsSrN4.n_2AWG,.dfqkHk.n_2AWG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.dfqkHk{touch-action:manipulation}}.XTpFTd{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.XTpFTd.n_2AWG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.voZlI_{width:22px;height:20px;position:absolute}.LhBFsy{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.KMI4iR{width:50%;top:0}.b6pJLW,.sItLyG{width:100%;top:9px}.erfbYp{width:50%;bottom:0}.Os6vNa{left:0}.HryFHb{right:0}.b6pJLW.LhBFsy,.sItLyG.LhBFsy{transform-origin:50%}.KMI4iR.LhBFsy.Os6vNa{transform-origin:0 0}.KMI4iR.LhBFsy.HryFHb{transform-origin:100% 0}.erfbYp.LhBFsy.Os6vNa{transform-origin:0 100%}.erfbYp.LhBFsy.HryFHb{transform-origin:100% 100%}.voZlI_.n_2AWG .KMI4iR.LhBFsy.Os6vNa,.voZlI_.n_2AWG .KMI4iR.LhBFsy.HryFHb,.voZlI_.n_2AWG .erfbYp.LhBFsy.Os6vNa,.voZlI_.n_2AWG .erfbYp.LhBFsy.HryFHb{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.voZlI_.n_2AWG .b6pJLW.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(-45deg)scaleX(1)}.voZlI_.n_2AWG .sItLyG.LhBFsy{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:rotate(45deg)scaleX(1)}.VK1Hr1{display:inherit;height:inherit;width:auto}.PbaYul{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .VK1Hr1,body:not(.responsive) .PbaYul{z-index:var(--above-all-in-container)}.VK1Hr1.sqDofR,.PbaYul.sqDofR{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.PbaYul{touch-action:manipulation}}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.pp3XSB{width:22px;height:20px;margin:auto;position:relative}.Z_qSkN{background-color:rgba(var(--lineColor,var(--color_11,color_11)),var(--alpha-lineColor,1));border-radius:2px;width:100%;height:2px;transition:all .25s ease-in-out;position:absolute;left:0}.hczDnO{margin:auto;top:0;bottom:0}.VmRHI1{bottom:0}.pp3XSB.sqDofR .Z_qSkN{background-color:rgba(var(--lineColorOpen,var(--color_11,color_11)),var(--alpha-lineColorOpen,1))}.pp3XSB.sqDofR .bYgNSB{transform:translateY(10px)translateY(-50%)rotate(-45deg)}.pp3XSB.sqDofR .hczDnO{opacity:0}.pp3XSB.sqDofR .VmRHI1{transform:translateY(-10px)translateY(50%)rotate(45deg)}.tA5iy4{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_15,color_15)),var(--alpha-bordercolor,1))}.tA5iy4.sqDofR{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_15,color_15)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_15,color_15)),var(--alpha-bordercolorOpen,1))}.aYkftZ{display:inherit;height:inherit;width:auto}.xFZxP2{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .aYkftZ,body:not(.responsive) .xFZxP2{z-index:var(--above-all-in-container)}.aYkftZ.DJyiS4,.xFZxP2.DJyiS4{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.xFZxP2{touch-action:manipulation}}.uFKDKj{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.uFKDKj.DJyiS4{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.D_1muR{cursor:pointer;width:26px;height:26px}.mV6DGf{opacity:1;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;transition:opacity .5s}.YBeTIR{color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));letter-spacing:5px;font-family:Helvetica-bold;font-size:12px;transition:all .25s;position:absolute;top:50%;left:55%;transform:translate(-50%,-50%)}.g_9F_D,.MMZbiz{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;width:0;height:2px;position:absolute;top:50%;left:50%}.g_9F_D{transition:all .3s;transform:translate(-50%,-50%)rotate(45deg)}.MMZbiz{transition:all .3s .3s;transform:translate(-50%,-50%)rotate(-45deg)}.D_1muR.DJyiS4 .g_9F_D,.D_1muR.DJyiS4 .MMZbiz{opacity:1;width:24px}.D_1muR.DJyiS4 .mV6DGf{opacity:0}.mi7tiY{display:inherit;height:inherit;width:auto}.ajCUJZ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .mi7tiY,body:not(.responsive) .ajCUJZ{z-index:var(--above-all-in-container)}.mi7tiY.WpOYnf,.ajCUJZ.WpOYnf{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.ajCUJZ{touch-action:manipulation}}.zBWfOh{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.zBWfOh.WpOYnf{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.VOuQ3v{width:22px;height:22px;display:block;position:relative}.VOuQ3v *,.VOuQ3v :before,.VOuQ3v :after{box-sizing:border-box}.VOuQ3v .Ieo4Vm{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:100%;width:4.4px;height:4.4px;transition:all .2s ease-in-out;position:absolute}.VOuQ3v .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v .Ieo4Vm:nth-of-type(2){transform:translate(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(4){transform:translateY(8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(5){transform:translate(8.8px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(6){transform:translate(17.6px,8.8px)}.VOuQ3v .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(8){transform:translate(8.8px,17.6px)}.VOuQ3v .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.VOuQ3v.WpOYnf .Ieo4Vm:first-of-type{transform:translate(0)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(2){transform:translate(4.4px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(3){transform:translate(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(4){transform:translate(4.4px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(6){transform:translate(13.2px,4.4px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(7){transform:translateY(17.6px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(8){transform:translate(13.2px,13.2px)}.VOuQ3v.WpOYnf .Ieo4Vm:nth-of-type(9){transform:translate(17.6px,17.6px)}.tAZggB{display:inherit;height:inherit;width:auto}.DQvE55{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .tAZggB,body:not(.responsive) .DQvE55{z-index:var(--above-all-in-container)}.tAZggB.Afzcr2,.DQvE55.Afzcr2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.DQvE55{touch-action:manipulation}}.cGMrez{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.cGMrez.Afzcr2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.lPW_G3{width:25px;height:20px;transition:transform .3s ease-in-out}.lPW_G3 span{content:"";background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:1px;width:100%;height:3px;transition:width .3s ease-in-out,transform .3s ease-in-out,opacity .3s ease-in-out;display:block;position:relative}.lPW_G3 span:first-child{top:0}.lPW_G3 span:nth-child(2){top:5px}.lPW_G3 span:nth-child(3){top:10px}.Afzcr2.lPW_G3{transform:rotate(180deg)}.Afzcr2.lPW_G3 span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:16px}.Afzcr2.lPW_G3 span:first-child{opacity:0}.Afzcr2.lPW_G3 span:nth-child(2){transform:rotate(45deg)translate(0)translateY(1px)}.Afzcr2.lPW_G3 span:nth-child(3){transform:rotate(-45deg)translate(12px)translateY(1px)}.iT1uR5{display:inherit;height:inherit;width:auto}.H8XzQw{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .iT1uR5,body:not(.responsive) .H8XzQw{z-index:var(--above-all-in-container)}.iT1uR5.xL58zS,.H8XzQw.xL58zS{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.H8XzQw{touch-action:manipulation}}.ph3zmg{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.ph3zmg.xL58zS{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}._2OyzB{width:24px;height:20px;display:block;position:relative}._2OyzB span,._2OyzB span:before,._2OyzB span:after{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:24px;height:2px;margin-top:-1px;position:absolute;top:50%}._2OyzB span:before,._2OyzB span:after{content:"";transition:all .2s}._2OyzB span:before{transform:translateY(-9px)}._2OyzB span:after{transform:translateY(9px)}.xL58zS span{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:23px;transform:translate(1px)}.xL58zS span:before{transform-origin:0 100%;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(-35deg)}.xL58zS span:after{transform-origin:0 0;background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:12px;transform:rotate(35deg)}.ADO5Zm{justify-content:center;align-items:center;display:flex}.nUIszS{transform-origin:100%;opacity:0;transition:all .5s;transform:translate(50%)}.hRUbUe{opacity:1;transform:translate(0%)}._xk4dL{display:inherit;height:inherit;width:auto}.JA1Uo1{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) ._xk4dL,body:not(.responsive) .JA1Uo1{z-index:var(--above-all-in-container)}._xk4dL.suGS6F,.JA1Uo1.suGS6F{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.JA1Uo1{touch-action:manipulation}}.Tnmpzm{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Tnmpzm.suGS6F{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.XYRJOb{flex-direction:column;justify-content:space-around;align-items:center;width:26px;height:26px;transition:transform .2s;display:flex}.wzUA2b{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:30px;height:2px;transition:opacity .2s,transform .2s;transform:rotate(-45deg)}.UEwx1J{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:10px;width:17px;height:2px;transition:transform .2s,border-color .2s}.UEwx1J.trUHhA{transform:rotate(-45deg)translate(-7px,-3px)}.UEwx1J.rjaPi6{transform:rotate(-45deg)translate(6px,2px)}.XYRJOb.suGS6F .trUHhA{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(9px)rotate(135deg)}.XYRJOb.suGS6F .rjaPi6{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:20px;transform:translateY(-9px)rotate(45deg)}.XYRJOb.suGS6F .wzUA2b{opacity:0;transform:rotate(45deg)}.h2hVnU{display:inherit;height:inherit;width:auto}.Iyw1gJ{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .h2hVnU,body:not(.responsive) .Iyw1gJ{z-index:var(--above-all-in-container)}.h2hVnU.m_Fqbp,.Iyw1gJ.m_Fqbp{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Iyw1gJ{touch-action:manipulation}}.CnBWJM{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.CnBWJM.m_Fqbp{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.GlYaWf,.KHg340{cursor:pointer;-webkit-user-select:none;user-select:none;-webkit-tap-highlight-color:#0000;width:22px;transition:all .2s ease-in-out;position:relative}.GlYaWf span,.KHg340 span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-tap-highlight-color:#0000;border-radius:2em;width:100%;height:3px;transition:all .2s ease-in-out;position:absolute}.GlYaWf span:nth-child(2),.KHg340 span:nth-child(2){transform:rotate(90deg)}.GlYaWf.m_Fqbp,.m_Fqbp.KHg340{transform:rotate(135deg)}.GlYaWf.m_Fqbp span,.m_Fqbp.KHg340 span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.KHg340{justify-content:center;align-items:center;display:flex}.KHg340 span{left:0}.KHg340 span:nth-child(2){transform:rotate(90deg)}.KHg340.m_Fqbp{transform:rotate(135deg)}.KHg340.m_Fqbp span{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.jxFaGF{display:inherit;height:inherit;width:auto}.wu4jpM{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .jxFaGF,body:not(.responsive) .wu4jpM{z-index:var(--above-all-in-container)}.jxFaGF.diaQsa,.wu4jpM.diaQsa{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.wu4jpM{touch-action:manipulation}}.e2jpjV{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.e2jpjV.diaQsa{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.DS2KZ9{cursor:pointer;width:26px;height:20px;display:block;position:relative}.DS2KZ9 div{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:2px;height:2px;transition:transform .45s cubic-bezier(.9,-.6,.3,1.6),width .2s .2s;position:absolute}.DS2KZ9 .MLWS98{transform-origin:50%;width:26px;margin:-2px 0 0;top:11px;left:0}.DS2KZ9 .LTPYyD{transform-origin:0;width:13px;left:0}.DS2KZ9 .VaoqxS{transform-origin:100%;width:18px;bottom:0}.DS2KZ9.diaQsa .MLWS98{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s;transform:rotate(-45deg)translate(0)}.DS2KZ9.diaQsa .LTPYyD{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(4px)rotate(45deg)}.DS2KZ9.diaQsa .VaoqxS{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));width:13px;transition:transform .2s cubic-bezier(.9,-.6,.3,1.6) .1s,width .15s;transform:translate(9px)rotate(45deg)}.NxdLn2{display:inherit;height:inherit;width:auto}.NvEdZv{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .NxdLn2,body:not(.responsive) .NvEdZv{z-index:var(--above-all-in-container)}.NxdLn2.nq0ZU6,.NvEdZv.nq0ZU6{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.NvEdZv{touch-action:manipulation}}.PSaCAQ{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.PSaCAQ.nq0ZU6{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.IjZy4M{cursor:pointer;position:absolute}.LtWZVJ{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:19px;height:2px;margin-bottom:6px;transition:all .3s cubic-bezier(0,1,.5,1);position:relative}.LtWZVJ:first-child{top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:first-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;left:0;transform:rotate(-45deg)}.LtWZVJ:nth-child(2){opacity:1;right:-5px}.nq0ZU6 .LtWZVJ:nth-child(2){background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));opacity:0;right:0}.LtWZVJ:last-child{margin:0;top:0;left:0;transform:rotate(0)}.nq0ZU6 .LtWZVJ:last-child{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:-8px;left:0;transform:rotate(45deg)}.nq0ZU6 .LtWZVJ{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.wLzWM9{display:inherit;height:inherit;width:auto}.YFvXED{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .wLzWM9,body:not(.responsive) .YFvXED{z-index:var(--above-all-in-container)}.wLzWM9.DlhxCV,.YFvXED.DlhxCV{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.YFvXED{touch-action:manipulation}}._G4uuH{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}._G4uuH.DlhxCV{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.rP06EV{width:26px;height:18px}.woYbvh{background:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));border-radius:4px;height:2px;transition:all .4s;position:relative}.yawLPy{width:26px;top:0}.DKfMJX{width:26px;top:6px}.Upme0v{width:13px;top:12px}.DlhxCV .yawLPy{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px}.DlhxCV .DKfMJX{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1))}.DlhxCV .Upme0v{background:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:4px}.fkVx4H{display:inherit;height:inherit;width:auto}.AX0rkT{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .fkVx4H,body:not(.responsive) .AX0rkT{z-index:var(--above-all-in-container)}.fkVx4H.pf7lKG,.AX0rkT.pf7lKG{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.AX0rkT{touch-action:manipulation}}.X43m5R{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.X43m5R.pf7lKG{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CpmaBD{width:22px;height:22px;margin:auto;position:absolute}.CpmaBD span{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));width:22px;height:2px;transition:transform .2s cubic-bezier(.25,.46,.45,.94),top .2s cubic-bezier(.3,1.4,.7,1) .2s,bottom .2s cubic-bezier(.3,1.4,.7,1) .2s;display:block;position:relative}.CpmaBD span:first-of-type{top:5px}.CpmaBD span:last-of-type{top:13px}.CpmaBD.pf7lKG span{transition:transform .2s cubic-bezier(.25,.46,.45,.94) .2s,top .2s cubic-bezier(.3,1.4,.7,1),bottom .2s cubic-bezier(.3,1.4,.7,1)}.CpmaBD.pf7lKG span:first-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:10px;transform:rotate(45deg)}.CpmaBD.pf7lKG span:last-of-type{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));top:8px;transform:rotate(-45deg)}.L1tNuO{display:inherit;height:inherit;width:auto}.Ae0iFd{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .L1tNuO,body:not(.responsive) .Ae0iFd{z-index:var(--above-all-in-container)}.L1tNuO.tUxMan,.Ae0iFd.tUxMan{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.Ae0iFd{touch-action:manipulation}}.Hmm20G{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.Hmm20G.tUxMan{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.AuZIx7{width:22px;height:19px;position:absolute}.BQuno6{background-color:rgba(var(--lineColor,var(--color_2,color_2)),var(--alpha-lineColor,1));height:3px;transition:all .25s;position:absolute}.oP04HO{width:50%;top:0}.p_ySCY{width:100%;top:8px}.u6J0wc{width:50%;bottom:0}.P03akj{left:0}.WBsrGG{right:0}.oP04HO.BQuno6.P03akj{transform-origin:0 0}.oP04HO.BQuno6.WBsrGG{transform-origin:100% 0}.u6J0wc.BQuno6.P03akj{transform-origin:0 100%}.u6J0wc.BQuno6.WBsrGG{transform-origin:100% 100%}.AuZIx7.tUxMan .oP04HO.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,2px)rotate(45deg)}.AuZIx7.tUxMan .oP04HO.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,2px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.P03akj{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(5px,-1px)rotate(-45deg)}.AuZIx7.tUxMan .u6J0wc.BQuno6.WBsrGG{background-color:rgba(var(--lineColorOpen,var(--color_2,color_2)),var(--alpha-lineColorOpen,1));transform:translate(-5px,-1px)rotate(45deg)}.AuZIx7.tUxMan .p_ySCY.BQuno6{transform:scaleX(0)}.p2xU2j{display:inherit;height:inherit;width:auto}.tB06Km{-webkit-tap-highlight-color:#0000;cursor:pointer}body:not(.responsive) .p2xU2j,body:not(.responsive) .tB06Km{z-index:var(--above-all-in-container)}.p2xU2j.sb2ja2,.tB06Km.sb2ja2{z-index:var(--above-all-z-index)!important}@supports (-webkit-touch-callout:none){.tB06Km{touch-action:manipulation}}.bSvkl8{border-radius:var(--rd,0);box-shadow:var(--shd,0 0 0 #0009);background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));border:solid var(--borderwidth,0)rgba(var(--bordercolor,var(--color_11,color_11)),var(--alpha-bordercolor,1));box-sizing:border-box;justify-content:center;align-items:center;width:100%;height:100%;transition:all .5s;display:flex}.bSvkl8.sb2ja2{border-radius:var(--rdOpen,0);box-shadow:var(--shdOpen,0 0 0 #0009);background-color:rgba(var(--bgOpen,var(--color_11,color_11)),var(--alpha-bgOpen,1));border-color:rgba(var(--bordercolorOpen,var(--color_11,color_11)),var(--alpha-bordercolorOpen,1));border-width:var(--borderwidthOpen,0);box-sizing:border-box;border-style:solid;justify-content:center;align-items:center;width:100%;height:100%;display:flex}.CT0UM6{width:22px;height:20px;position:absolute}.i2Blxa{background-color:rgba(var(--lineColor,var(--color_15,color_15)),var(--alpha-lineColor,1));height:2px;transition:all .25s;position:absolute}.NL9V92{width:100%;top:0}.xp7A7t{width:100%;top:9px}.dMTSgd{width:100%;bottom:0}.NL9V92.i2Blxa{transform-origin:0 0}.dMTSgd.i2Blxa{transform-origin:0 100%}.CT0UM6.sb2ja2 .NL9V92.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,2px)rotate(45deg)}.CT0UM6.sb2ja2 .dMTSgd.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:translate(4px,-1px)rotate(-45deg)}.CT0UM6.sb2ja2 .xp7A7t.i2Blxa{background-color:rgba(var(--lineColorOpen,var(--color_15,color_15)),var(--alpha-lineColorOpen,1));transform:scaleX(0)}.PzP3Ka{cursor:pointer;opacity:0;visibility:hidden;display:var(--display);--display:flex;transition:visibility 0s .5s,opacity .5s}.PzP3Ka .XdXNO7{width:100%;height:100%;opacity:var(--icon-opacity,1)}.PzP3Ka .XdXNO7 svg{overflow:visible}.z7UpAt{opacity:1;visibility:visible;z-index:var(--above-all-z-index);transition-delay:0s;position:relative}</style> | |
| 182 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VectorImage_VectorButton].8d19a428.min.css">.IT88M3{position:absolute;inset:0}.LXgYyC{cursor:pointer}.iL7Pq5{-webkit-tap-highlight-color:#0000;opacity:var(--opacity);fill:var(--corvid-fill-color,var(--fill));fill-opacity:var(--fill-opacity);stroke:var(--corvid-stroke-color,var(--stroke));stroke-opacity:var(--stroke-opacity);stroke-width:var(--stroke-width);transform:var(--flip);filter:var(--drop-shadow,none);position:absolute;inset:0}.iL7Pq5 svg{width:var(--svg-calculated-width,100%);height:var(--svg-calculated-height,100%);padding:var(--svg-calculated-padding,0);margin:auto;position:absolute;inset:0}.iL7Pq5 svg:not([data-type=ugc]){overflow:visible}@media (forced-colors:active){.iL7Pq5 svg:not([data-type=ugc]):not([data-type=color]){fill:currentColor}}.gx51wo *{vector-effect:non-scaling-stroke}</style> | |
| 183 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextInput].ff8b5cd8.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nbaJII:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nbaJII:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nbaJII.BOzGbm[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;-moz-appearance:none;margin:0}.nbaJII[disabled]{pointer-events:none}.Q1MQrw{min-height:25px;display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);flex-direction:column;position:relative}.Q1MQrw .nuFEsg{height:var(--inputHeight);position:relative}.Q1MQrw .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Q1MQrw .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;max-width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");min-height:var(--inputHeight);border-style:solid;width:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Q1MQrw .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;width:100%}.Q1MQrw .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Q1MQrw .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Q1MQrw .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Q1MQrw:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Q1MQrw.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Q1MQrw .QyrExM{display:none}.Q1MQrw.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Q1MQrw.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Yz8ZCc{display:var(--display);--display:flex;direction:var(--direction);text-align:var(--align,start);justify-content:var(--align,start);flex-direction:column}.Yz8ZCc .nuFEsg{flex-direction:column;flex:1;display:flex;position:relative}.Yz8ZCc .wqbFCn{font:var(--fntprefix,normal normal normal 16px/1.4em helvetica-w01-roman);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));justify-content:center;align-items:center;width:50px;min-height:100%;max-height:100%;display:flex;position:absolute;top:0;left:0}.Yz8ZCc .nbaJII{box-shadow:var(--shd,0 0 0 #0000);font:var(--fnt,var(--font_8));-webkit-appearance:none;-moz-appearance:none;border-radius:var(--corvid-border-radius,var(--rd,0));background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));border-width:var(--corvid-border-width,var(--brw,1px));padding:var(--textPadding);text-overflow:ellipsis;width:100%;direction:var(--inputDirection,"inherit");text-align:var(--inputAlign,"inherit");border-style:solid;flex:1;min-height:100%;margin:0;padding-inline-start:var(--textPadding_start);padding-inline-end:var(--textPadding_end);box-sizing:border-box!important}.Yz8ZCc .nbaJII[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield}.Yz8ZCc .nbaJII::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.Yz8ZCc .nbaJII:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.Yz8ZCc .nbaJII:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1))}.Yz8ZCc:not(.bcsnlz) .nbaJII:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc.bcsnlz .nbaJII:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.Yz8ZCc.bcsnlz .nbaJII:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.Yz8ZCc .QyrExM{display:none}.Yz8ZCc.pZqgsf .QyrExM{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom);direction:var(--labelDirection,inherit);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.Yz8ZCc.pZqgsf.TqroEf .QyrExM:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 184 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[TextAreaInput].1476131e.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.fRbOAc{text-align:var(--align);direction:var(--direction)}.fRbOAc .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);min-width:100%;max-width:100%;height:var(--inputHeight);direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");margin:0;padding-top:.75em;display:block;overflow-y:auto;box-sizing:border-box!important}.fRbOAc .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .fRbOAc .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.fRbOAc .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.fRbOAc .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.fRbOAc .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.fRbOAc:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.fRbOAc.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.fRbOAc .P3lL3X{display:none}.fRbOAc.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.fRbOAc.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.YbkIHV{display:var(--display);--display:flex;text-align:var(--align);direction:var(--direction);flex-direction:column}.YbkIHV .XXgBXC{-webkit-appearance:none;box-shadow:var(--shd,0 0 0 #0000);border-radius:var(--corvid-border-radius,var(--rd,0));font:var(--fnt,var(--font_8));border-width:var(--corvid-border-width,var(--brw,1px));resize:none;background-color:var(--corvid-background-color,rgba(var(--bg,255,255,255),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));border-style:solid;border-color:var(--corvid-border-color,rgba(var(--brd,227,227,227),var(--alpha-brd,1)));padding-top:var(--textPaddingTop);padding-bottom:3px;width:100%;height:100%;direction:var(--inputDirection);text-align:var(--inputAlign,"inherit");flex:1;margin:0;padding-inline-start:var(--textPaddingStart);padding-inline-end:var(--textPaddingEnd);overflow-y:auto;box-sizing:border-box!important}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .YbkIHV .XXgBXC:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.YbkIHV .XXgBXC:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.YbkIHV .XXgBXC::placeholder{color:rgb(var(--txt2,var(--color_15,color_15)))}.YbkIHV .XXgBXC:hover{border-width:var(--brwh,1px);background-color:rgba(var(--bgh,255,255,255),var(--alpha-bgh,1));border-style:solid;border-color:rgba(var(--brdh,163,217,246),var(--alpha-brdh,1))}.YbkIHV .XXgBXC:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));color:rgb(var(--txtd,255,255,255));border-width:var(--brwd,1px);border-style:solid;border-color:rgba(var(--brdd,163,217,246),var(--alpha-brdd,1));pointer-events:none}.YbkIHV:not(.tkHMZu) .XXgBXC:focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV.tkHMZu .XXgBXC:invalid{border-width:var(--brwe,1px);background-color:rgba(var(--bge,255,255,255),var(--alpha-bge,1));border-style:solid;border-color:rgba(var(--brde,163,217,246),var(--alpha-brde,1))}.YbkIHV.tkHMZu .XXgBXC:not(:invalid):focus{border-width:var(--brwf,1px);background-color:rgba(var(--bgf,255,255,255),var(--alpha-bgf,1));border-style:solid;border-color:rgba(var(--brdf,163,217,246),var(--alpha-brdf,1))}.YbkIHV .P3lL3X{display:none}.YbkIHV.bCYfl0 .P3lL3X{font:var(--fntlbl,var(--font_8));color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);box-sizing:border-box;width:100%;direction:var(--labelDirection);text-align:var(--labelAlign,inherit);padding-inline-start:var(--labelPadding_start,0);padding-inline-end:var(--labelPadding_end,0);line-height:1;display:inline-block}.YbkIHV.bCYfl0.edzMuY .P3lL3X:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}</style> | |
| 185 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInput].2af36bd9.min.css">.Z0mg9X{color:rgb(var(--errorTextColor,#ff4040));direction:var(--errorDirection);align-items:center;gap:4px;justify-content:var(--errorAlign,inherit);flex-direction:row;padding:8px 0 0;display:flex}.Z0mg9X .mZemNb{flex:none;order:0}.Z0mg9X .TTK5ZL{font:var(--errorTextFont,var(--font_8));word-break:break-word;word-break:break-word;flex-grow:0;order:1;line-height:1;display:inline-block}.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}.alMCqG{opacity:0;pointer-events:none;justify-content:center;width:100%;height:0;display:flex}.vkQCnw{max-width:0;max-height:0;overflow:hidden}.l5LWAe .qKjd3E,.l5LWAe .Hae_iI:invalid{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.qa3D4M .Hae_iI:disabled{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.qa3D4M{display:var(--display);--display:flex;flex-direction:column}.qa3D4M .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight)}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .qa3D4M .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.qa3D4M .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.qa3D4M .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.qa3D4M .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}.qa3D4M .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.qa3D4M .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.qa3D4M .Hae_iI:disabled+.R8pbpf{border:none}.qa3D4M .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.qa3D4M .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.nYCc7p .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.nYCc7p{display:var(--display);--display:flex;flex-direction:column}.nYCc7p .Hae_iI{min-width:100%;max-width:100%;height:100%;min-height:var(--inputHeight);border-width:1px 0;border-color:#0003}.nYCc7p .Hae_iI:hover:not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .nYCc7p .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.nYCc7p .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.nYCc7p .Hae_iI:focus{border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.nYCc7p .Hae_iI:disabled{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1))}.nYCc7p .Hae_iI:disabled+.R8pbpf{border:none}.nYCc7p .Hae_iI .WdV6vy{color:#44474d;background-color:#fff}.nYCc7p .UuIgyh{flex:1;position:relative}.nYCc7p .R8pbpf{border-style:solid;border-color:#0003;border-width:var(--arrowBorderWidth,0)}.l5LWAe .Hae_iI:invalid,.l5LWAe .qKjd3E{border-width:var(--brwe,2px);border-style:solid;border-color:rgba(var(--brde,249,249,249),var(--alpha-brde,1));background-color:rgba(var(--bge,var(--color_8,color_8)),var(--alpha-bge,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf,.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E,.qa3D4M .Hae_iI:disabled,.qa3D4M .Hae_iI:disabled+.R8pbpf,.nYCc7p .Hae_iI:disabled,.nYCc7p .Hae_iI:disabled+.R8pbpf{border-width:var(--corvid-border-width,var(--brw,2px));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1));color:rgb(var(--txtd,255,255,255));cursor:default}.uvl2Tw{text-align:var(--align);text-align-last:var(--align);direction:var(--direction)}.UuIgyh{direction:var(--inputDirection)}.Hae_iI{direction:var(--inputDirection);text-align-last:var(--inputAlign,"inherit");border-radius:var(--corvid-border-radius,var(--rd,5px));-webkit-appearance:none;-moz-appearance:none;box-shadow:var(--shd,0 0 0 #0000);background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_8,color_8)),var(--alpha-bg,1)));color:var(--corvid-color,rgb(var(--txt,136,136,136)));cursor:pointer;text-overflow:ellipsis;white-space:nowrap;font:var(--fnt);border-style:solid;margin:0;padding-inline-start:var(--textPaddingInput_start);padding-inline-end:var(--textPaddingInput_end);display:block;position:relative}.Hae_iI option{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.Hae_iI option.QfNCKR{color:rgb(var(--txt2,var(--color_15,color_15)));display:none}.Hae_iI.ztWMYz{color:rgb(var(--txt_placeholder,136,136,136));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Hae_iI::placeholder{color:rgb(var(--txt_placeholder,136,136,136))}.Hae_iI:-moz-focusring{color:#0000;text-shadow:0 0 #000}.Hae_iI::-ms-expand{display:none}.Hae_iI:focus::-ms-value{background:0 0}.Hae_iI:disabled+.R8pbpf .ue5GsJ{fill:rgb(var(--txtd,255,255,255))}.R8pbpf{pointer-events:none;top:0;bottom:0;box-sizing:border-box;height:inherit;align-items:center;padding-left:20px;padding-right:20px;display:flex;position:absolute;inset-inline-start:var(--arrowInsetInlineStart);inset-inline-end:var(--arrowInsetInlineEnd)}.R8pbpf .XiOJeV{width:12px}.R8pbpf .XiOJeV .ue5GsJ{height:100%;fill:rgba(var(--arrowColor,var(--color_12,color_12)),var(--alpha-arrowColor,1))}.R8pbpf .XiOJeV.xlNOHs{transform:rotate(180deg)}.lo03zG{display:none}.VYqX7C .lo03zG{font:var(--fntlbl);text-align:var(--labelAlign,"inherit");direction:var(--labelDirection);color:rgb(var(--txtlbl,var(--color_15,color_15)));word-break:break-word;margin-bottom:var(--labelMarginBottom,14px);padding-inline-start:var(--labelPadding_start);padding-inline-end:var(--labelPadding_end);line-height:1;display:inline-block}.DCgvoa .lo03zG:after{display:var(--requiredIndicationDisplay,none);content:" *";color:rgba(var(--txtlblrq,0,0,0),var(--alpha-txtlblrq,0))}.Y_w4j4{display:var(--display);--display:flex;flex-direction:column}.Y_w4j4 .UuIgyh{flex-direction:column;flex:1;display:flex;position:relative}.Y_w4j4 .Hae_iI{box-sizing:border-box;flex:1;align-items:center;width:100%;display:flex}.Y_w4j4 .Hae_iI:not(.qKjd3E){border-width:var(--corvid-border-width,var(--brw,2px));border-color:var(--corvid-border-color,rgba(var(--brd,248,248,248),var(--alpha-brd,1)))}.Y_w4j4 .Hae_iI:hover:not(.qKjd3E):not(:disabled){border-width:var(--brwh,2px);border-style:solid;border-color:rgba(var(--brdh,249,249,249),var(--alpha-brdh,1));background-color:rgba(var(--bgh,var(--color_8,color_8)),var(--alpha-bgh,1))}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .Y_w4j4 .Hae_iI:focus{outline-offset:1px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.Y_w4j4 .Hae_iI:focus{box-shadow:none;outline-offset:1px!important;outline:3px solid highlight!important}}.Y_w4j4 .Hae_iI:focus:not(.qKjd3E){border-width:var(--brwf,2px);border-style:solid;border-color:rgba(var(--brdf,249,249,249),var(--alpha-brdf,1));background-color:rgba(var(--bgf,var(--color_8,color_8)),var(--alpha-bgf,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E),.Y_w4j4 .Hae_iI:disabled.qKjd3E{background-color:rgba(var(--bgd,204,204,204),var(--alpha-bgd,1));border-color:rgba(var(--brdd,204,204,204),var(--alpha-brdd,1))}.Y_w4j4 .Hae_iI:disabled:not(.qKjd3E)+.R8pbpf,.Y_w4j4 .Hae_iI:disabled.qKjd3E+.R8pbpf{border:none}</style> | |
| 186 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_Default].24db2c41.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 187 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LanguageSelector].1814237c.min.css">.d53IyJ .CjkVyx>button,.d53IyJ .drWYz5 .SVOqp3,.drWYz5 .d53IyJ .SVOqp3,.d53IyJ .drWYz5 .clBgzu,.drWYz5 .d53IyJ .clBgzu{justify-content:flex-start}.kyRJB9 .CjkVyx>button,.kyRJB9 .drWYz5 .SVOqp3,.drWYz5 .kyRJB9 .SVOqp3,.kyRJB9 .drWYz5 .clBgzu,.drWYz5 .kyRJB9 .clBgzu{justify-content:center}.OIbSKK .CjkVyx>button,.OIbSKK .drWYz5 .SVOqp3,.drWYz5 .OIbSKK .SVOqp3,.OIbSKK .drWYz5 .clBgzu,.drWYz5 .OIbSKK .clBgzu{direction:rtl}.CjkVyx .z6NAhm img,.drWYz5 .vDrjru .gEOfRC img,.drWYz5 .clBgzu .gEOfRC img{height:var(--iconSize);display:block}.drWYz5 .SVOqp3.tJr0E9,.CjkVyx>button:hover,.drWYz5 .SVOqp3:hover,.drWYz5 .clBgzu:hover{color:rgb(var(--itemTextColorHover,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorHover,var(--color_4,color_4)),var(--alpha-backgroundColorHover,1))}.drWYz5 .SVOqp3.tJr0E9 path,.CjkVyx>button:hover path,.drWYz5 .SVOqp3:hover path,.drWYz5 .clBgzu:hover path{fill:rgb(var(--itemTextColorHover,var(--color_1,color_1)))}.CjkVyx>button:active,.drWYz5 .SVOqp3:active,.drWYz5 .clBgzu:active,.CjkVyx>button.nOw6jW,.drWYz5 .nOw6jW.SVOqp3,.drWYz5 .nOw6jW.clBgzu{color:rgb(var(--itemTextColorActive,var(--color_1,color_1)));background-color:rgba(var(--backgroundColorActive,var(--color_4,color_4)),var(--alpha-backgroundColorActive,1));cursor:default}.CjkVyx>button:active path,.drWYz5 .SVOqp3:active path,.drWYz5 .clBgzu:active path,.CjkVyx>button.nOw6jW path,.drWYz5 .nOw6jW.SVOqp3 path,.drWYz5 .nOw6jW.clBgzu path{fill:rgb(var(--itemTextColorActive,var(--color_1,color_1)))}.xDaLqh{width:var(--width);height:100%}body.device-mobile-optimized .xDaLqh,:host(.device-mobile-optimized) .xDaLqh{display:var(--display);--display:table}.xDaLqh.uEjKHu{opacity:.38}.xDaLqh.uEjKHu *,.xDaLqh.uEjKHu:active{pointer-events:none}.drWYz5 .SVOqp3,.drWYz5 .clBgzu{height:calc(var(--height) - var(--borderWidth,1px)*2);align-items:center;display:flex}.drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .clBgzu .YvJYK8{line-height:0}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{position:absolute;right:0}.OIbSKK .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .OIbSKK .SVOqp3 .YvJYK8,.OIbSKK .drWYz5 .clBgzu .YvJYK8,.drWYz5 .OIbSKK .clBgzu .YvJYK8,.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8{margin:0 20px 0 14px}.kyRJB9 .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .kyRJB9 .SVOqp3 .YvJYK8,.kyRJB9 .drWYz5 .clBgzu .YvJYK8,.drWYz5 .kyRJB9 .clBgzu .YvJYK8,.d53IyJ .drWYz5 .SVOqp3 .YvJYK8,.drWYz5 .d53IyJ .SVOqp3 .YvJYK8,.d53IyJ .drWYz5 .clBgzu .YvJYK8,.drWYz5 .d53IyJ .clBgzu .YvJYK8{margin:0 14px 0 20px}.d53IyJ .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .d53IyJ .SVOqp3 .GZ9kig,.d53IyJ .drWYz5 .clBgzu .GZ9kig,.drWYz5 .d53IyJ .clBgzu .GZ9kig,.OIbSKK .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .OIbSKK .SVOqp3 .GZ9kig,.OIbSKK .drWYz5 .clBgzu .GZ9kig,.drWYz5 .OIbSKK .clBgzu .GZ9kig{flex-grow:1}.kyRJB9 .drWYz5 .SVOqp3 .GZ9kig,.drWYz5 .kyRJB9 .SVOqp3 .GZ9kig,.kyRJB9 .drWYz5 .clBgzu .GZ9kig,.drWYz5 .kyRJB9 .clBgzu .GZ9kig{flex-shrink:0;width:20px}.drWYz5 .SVOqp3 svg,.drWYz5 .clBgzu svg{width:12px;height:auto}.drWYz5 .SVOqp3 path,.drWYz5 .clBgzu path{fill:rgb(var(--itemTextColor,var(--color_9,color_9)))}.drWYz5 .vDrjru,.drWYz5 .clBgzu{border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));overflow:hidden}.drWYz5 .vDrjru .gEOfRC,.drWYz5 .clBgzu .gEOfRC{margin:0 -6px 0 14px}.kyRJB9 .drWYz5 .vDrjru .gEOfRC,.drWYz5 .kyRJB9 .vDrjru .gEOfRC,.kyRJB9 .drWYz5 .clBgzu .gEOfRC,.drWYz5 .kyRJB9 .clBgzu .gEOfRC{margin:0 4px}.OIbSKK .drWYz5 .vDrjru .gEOfRC,.drWYz5 .OIbSKK .vDrjru .gEOfRC,.OIbSKK .drWYz5 .clBgzu .gEOfRC,.drWYz5 .OIbSKK .clBgzu .gEOfRC{margin:0 14px 0 -6px}.xDaLqh{height:100%}.drWYz5{cursor:pointer;width:var(--width);font:var(--itemFont,var(--font_0));color:rgb(var(--itemTextColor,var(--color_9,color_9)));height:100%;position:relative}.drWYz5 *{box-sizing:border-box}.drWYz5 .clBgzu{z-index:1;height:100%;position:relative}.FDTMKK.drWYz5 .clBgzu{display:none!important}.drWYz5 .yHM59W{text-overflow:ellipsis;white-space:nowrap;margin:0 0 0 14px;overflow:hidden}.kyRJB9 .drWYz5 .yHM59W{margin:0 4px}.OIbSKK .drWYz5 .yHM59W{margin:0 14px 0 0}.drWYz5 .vDrjru{z-index:1;min-width:100%;max-height:calc(var(--height)*5.5);flex-direction:column;display:flex;position:absolute;overflow-y:auto}.drWYz5 .vDrjru:not(.jLVp_T){--itemBorder:1px 0 0;top:0}.drWYz5 .vDrjru.jLVp_T{--itemBorder:0 0 1px;flex-direction:column-reverse;bottom:0}.FDTMKK.drWYz5 .vDrjru svg{transform:rotate(180deg)}.drWYz5.FDTMKK{z-index:47}.drWYz5:not(.FDTMKK) .vDrjru{display:none}.drWYz5 .SVOqp3{flex-shrink:0}#SITE_CONTAINER.focus-ring-active.keyboard-tabbing-on .drWYz5 .SVOqp3:focus{outline-offset:1px;outline-offset:-2px;outline:2px solid #116dff;box-shadow:0 0 1px 2px #fff}@media (forced-colors:active){.drWYz5 .SVOqp3:focus{box-shadow:none;outline-offset:-3px!important;outline:3px solid highlight!important}}.drWYz5 .SVOqp3:not(:first-child){--force-state-metadata:false;border-width:var(--itemBorder);border-style:solid;border-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.Q0JjLQ{height:100%}body.device-mobile-optimized .Q0JjLQ,:host(.device-mobile-optimized) .Q0JjLQ{width:100%;display:table}.CjkVyx{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));border-style:solid;border-color:rgba(var(--borderColor,32,32,32),var(--alpha-borderColor,1));border-width:var(--borderWidth,1px);height:100%;color:rgb(var(--itemTextColor,var(--color_9,color_9)));border-radius:var(--borderRadius,5px);box-shadow:var(--boxShadow,0 1px 3px #00000080);font:var(--itemFont,var(--font_0));display:flex}.CjkVyx,.CjkVyx *{box-sizing:border-box}.CjkVyx>button{background-color:rgba(var(--backgroundColor,var(--color_4,color_4)),var(--alpha-backgroundColor,1));height:100%;color:inherit;cursor:pointer;font:inherit;flex:auto;align-items:center;display:flex}.CjkVyx>button:not(:first-child){--force-state-metadata:false;border-left-style:solid;border-left-width:1px;border-left-color:rgba(var(--separatorColor,254,254,254),var(--alpha-separatorColor,1))}.CjkVyx>button:first-child,.CjkVyx>button:last-child{border-radius:var(--borderRadius,5px)}.CjkVyx>button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.CjkVyx>button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.OIbSKK .CjkVyx .z6NAhm{margin:0 14px 0 -6px}.kyRJB9 .CjkVyx .z6NAhm{margin:0 4px}.d53IyJ .CjkVyx .z6NAhm{margin:0 -6px 0 14px}.CjkVyx ._L5t7V{margin:0 14px}.kyRJB9 .CjkVyx ._L5t7V{margin:0 4px}._1Ry_8 select{opacity:0;z-index:1;width:100%;height:100%;position:absolute;top:0;left:0}._1Ry_8 .XDBTy_{display:none}</style> | |
| 188 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[SiteButton_WrappingButton].339c1169.min.css">.ZhVEJq{touch-action:manipulation}.PoVCDy{text-align:initial;box-sizing:border-box;align-items:center;justify-content:var(--label-align);width:max-content;min-width:100%;display:flex}@media (forced-colors:active){.PoVCDy{outline-offset:0px;outline:2px solid buttontext}.PoVCDy:hover{outline-offset:1px;outline:3px solid highlight}.PoVCDy:focus,.PoVCDy:focus-visible{outline-offset:1px;outline:3px solid highlight!important}[aria-disabled=true] .PoVCDy{outline:none}}.PoVCDy:before{content:"";max-width:var(--margin-start,0px);flex-grow:1;align-self:stretch}.PoVCDy:after{content:"";max-width:var(--margin-end,0px);flex-grow:1;align-self:stretch}.lIkFMb{display:var(--display);--display:grid;grid-template-columns:minmax(0,1fr)}.lIkFMb .PoVCDy{border-radius:var(--corvid-border-radius,var(--rd,0));transition:var(--trans1,border-color .4s ease 0s,background-color .4s ease 0s);box-shadow:var(--shd,0 1px 4px #0009);padding-left:var(--horizontalPadding,0);padding-right:var(--horizontalPadding,0);padding-top:var(--verticalPadding,0);padding-bottom:var(--verticalPadding,0);width:auto;position:relative}.lIkFMb .PoVCDy:before{width:var(--margin-start,0px);flex-shrink:0}.lIkFMb .PoVCDy:after{width:var(--margin-end,0px);flex-shrink:0}.lIkFMb .Gf1CuA{font:var(--fnt,var(--font_5));transition:var(--trans2,color .4s ease 0s);color:var(--corvid-color,rgb(var(--txt,var(--color_15,color_15))));position:relative}.lIkFMb[aria-disabled=false] .PoVCDy{background-color:var(--corvid-background-color,rgba(var(--bg,var(--color_17,color_17)),var(--alpha-bg,1)));border:solid var(--corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)))var(--corvid-border-width,var(--brw,0));cursor:pointer!important}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .PoVCDy,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body.device-mobile-optimized .lIkFMb[aria-disabled=false]:active .Gf1CuA,:host(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:active .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .PoVCDy,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .PoVCDy{background-color:var(--corvid-hover-background-color,rgba(var(--bgh,var(--color_18,color_18)),var(--alpha-bgh,1)));border-color:var(--corvid-hover-border-color,rgba(var(--brdh,var(--color_15,color_15)),var(--alpha-brdh,1)))}body:not(.device-mobile-optimized) .lIkFMb[aria-disabled=false]:hover .Gf1CuA,:host(:not(.device-mobile-optimized)) .lIkFMb[aria-disabled=false]:hover .Gf1CuA{color:var(--corvid-hover-color,rgb(var(--txth,var(--color_15,color_15))))}.lIkFMb[aria-disabled=true] .PoVCDy{background-color:var(--corvid-disabled-background-color,rgba(var(--bgd,204,204,204),var(--alpha-bgd,1)));border-color:var(--corvid-disabled-border-color,rgba(var(--brdd,204,204,204),var(--alpha-brdd,1)))}.lIkFMb[aria-disabled=true] .Gf1CuA{color:var(--corvid-disabled-color,rgb(var(--txtd,255,255,255)))}.lIkFMb .Gf1CuA{text-align:var(--label-text-align)}</style> | |
| 189 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[VerticalLine_VerticalSolidLine].81222752.min.css">.n8bAtI .zACo20{border-left:var(--lnw,3px)solid rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));height:100%}</style> | |
| 190 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[LinkBar_Responsive].9d761e03.min.css">.eAOB3n{direction:var(--direction)}.eAOB3n .tDHQQD .VGXFRO{display:var(--item-display);width:var(--item-size);height:var(--item-size);margin-inline:var(--item-margin-inline);margin-block:var(--item-margin-block)}.eAOB3n .tDHQQD .VGXFRO:last-child{margin-block:0;margin-inline:0}.eAOB3n .tDHQQD .VGXFRO .FvIvPq{display:block}.eAOB3n .tDHQQD .VGXFRO .FvIvPq .IKlnHc{width:var(--item-size);height:var(--item-size)}@media (forced-colors:active){.eAOB3n .tDHQQD .VGXFRO .FvIvPq{outline-offset:0;outline:2px solid buttontext}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:hover{outline-offset:-2px;outline:3px solid highlight}.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus,.eAOB3n .tDHQQD .VGXFRO .FvIvPq:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.eAOB3n{display:var(--display);--display:initial;width:-moz-fit-content;width:fit-content}.eAOB3n .tDHQQD{flex-direction:var(--flex-direction);display:flex}.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}</style> | |
| 191 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_menu.d7f69225.min.css">.StylableButton2545352419__root{-archetype:box;cursor:pointer;box-sizing:border-box;touch-action:manipulation;border:0;width:100%;min-width:10px;height:100%;min-height:10px;padding:0;display:block}.StylableButton2545352419__root[disabled]{pointer-events:none}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBackgroundColor{background-color:var(--corvid-background-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBackgroundColor{background-color:var(--corvid-hover-background-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBackgroundColor{background-color:var(--corvid-disabled-background-color)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasBorderColor{border-color:var(--corvid-border-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverBorderColor{border-color:var(--corvid-hover-border-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledBorderColor{border-color:var(--corvid-disabled-border-color)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderRadius{border-radius:var(--corvid-border-radius)!important}.StylableButton2545352419__root.StylableButton2545352419--hasBorderWidth{border-width:var(--corvid-border-width)!important}.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor,.StylableButton2545352419__root:not(:hover):not([disabled]).StylableButton2545352419--hasColor .StylableButton2545352419__label{color:var(--corvid-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor,.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverColor .StylableButton2545352419__label{color:var(--corvid-hover-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor,.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledColor .StylableButton2545352419__label{color:var(--corvid-disabled-color)!important}.StylableButton2545352419__link{-archetype:box;box-sizing:border-box;color:#000;text-decoration:none}.StylableButton2545352419__container{flex-direction:row;flex-grow:1;flex-basis:auto;justify-content:center;align-items:center;width:100%;height:100%;transition:all .2s,visibility;display:flex;overflow:hidden}.StylableButton2545352419__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(first);text-overflow:ellipsis;text-align:center;white-space:nowrap;min-width:1.8em;max-width:100%;transition:inherit;overflow:hidden}.StylableButton2545352419__root.StylableButton2545352419--isMaxContent .StylableButton2545352419__label{text-overflow:unset}.StylableButton2545352419__root.StylableButton2545352419--isWrapText .StylableButton2545352419__label{overflow-wrap:break-word;white-space:break-spaces;word-break:break-word;min-width:10px}.StylableButton2545352419__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown,LayoutFlexChildSpacing(last);flex-shrink:0;min-width:1px;height:50px;transition:inherit}.StylableButton2545352419__icon.StylableButton2545352419--override{display:block!important}.StylableButton2545352419__icon>span,.StylableButton2545352419__icon svg{width:inherit;height:inherit;display:flex}.StylableButton2545352419__root:not(:hover):not([disalbed]).StylableButton2545352419--hasIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-icon-color)!important;stroke:var(--corvid-icon-color)!important}.StylableButton2545352419__root:hover:not([disabled]).StylableButton2545352419--hasHoverIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-hover-icon-color)!important;stroke:var(--corvid-hover-icon-color)!important}.StylableButton2545352419__root:not(:hover)[disabled].StylableButton2545352419--hasDisabledIconColor .StylableButton2545352419__icon svg{fill:var(--corvid-disabled-icon-color)!important;stroke:var(--corvid-disabled-icon-color)!important}@media (forced-colors:active){.StylableButton2545352419__root:not([disabled]){outline-offset:0px;outline:2px solid buttontext}.StylableButton2545352419__root:hover:not([disabled]),.StylableButton2545352419__root[aria-pressed=true],.StylableButton2545352419__root[aria-selected=true],.StylableButton2545352419__root[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.StylableButton2545352419__root:focus,.StylableButton2545352419__root:focus-visible{outline-offset:1px;outline:3px solid highlight!important}.StylableButton2545352419__icon,.StylableButton2545352419__icon svg,.StylableButton2545352419__icon svg *{fill:currentColor!important;stroke:currentColor!important}}.umBpNq{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.umBpNq:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.umBpNq:not(:disabled):hover,.umBpNq:not(:disabled)[aria-pressed=true],.umBpNq:not(:disabled)[aria-selected=true],.umBpNq:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.umBpNq:not(:disabled):focus,.umBpNq:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.umBpNq.b5wzzG:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.umBpNq.IdBKRQ:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.umBpNq:hover,.umBpNq [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.umBpNq.olGtjp:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.umBpNq.H4kLBj:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.umBpNq:disabled,.umBpNq [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.umBpNq.jRfRxf:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.umBpNq.yNUpJa:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.xuJAxK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.umBpNq.EOdpK9:not(:hover):not(:disabled) .xuJAxK{color:var(--corvid-color,var(--color))}.umBpNq:hover .xuJAxK,.umBpNq [data-preview=hover] .xuJAxK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.umBpNq.wCtkkB:hover:not(:disabled) .xuJAxK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.umBpNq:disabled .xuJAxK,.umBpNq [data-preview=disabled] .xuJAxK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.umBpNq.GsVIhZ:disabled:not(:hover) .xuJAxK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.wVQcpq{box-sizing:border-box;color:#000;text-decoration:none}.NZHz_8{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.GvoWb8{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.umBpNq.LwoP3t:not(:hover):not(:disabled) .GvoWb8{fill:var(--corvid-icon-color,var(--icon-color))}.umBpNq:hover .GvoWb8,.umBpNq [data-preview=hover] .GvoWb8{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.umBpNq.Sbl9_q:hover:not(:disabled) .GvoWb8{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.umBpNq:disabled .GvoWb8,.umBpNq [data-preview=disabled] .GvoWb8{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.umBpNq.ET2QWr:disabled:not(:hover) .GvoWb8{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.GvoWb8>span,.GvoWb8 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.GvoWb8,.GvoWb8 svg,.GvoWb8 svg *{fill:currentColor!important;stroke:currentColor!important}}.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}.gDZ5xr{border-radius:var(--overflow-wrapper-border-radius)}.ZBf0K1{opacity:var(--hamburger-menu-container-initial-opacity)}.ZBf0K1>*{transform:var(--hamburger-menu-container-initial-transform)}.ZBf0K1[data-animation-name=revealFromRight]{clip-path:inset(0)}.ZBf0K1[data-animation-name=revealFromRight]>*{transition:transform .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterActive]>*,.ZBf0K1[data-animation-name=revealFromRight][data-animation-state=enterDone]>*{transform:translate(0)}.ZBf0K1[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterActive],.ZBf0K1[data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.fy6eJk{--container-overflow-y:hidden}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1{clip-path:inset(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=revealFromRight]:checked) .ZBf0K1>*{transition:transform .4s cubic-bezier(.645,.045,.355,1);transform:translate(0)}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=fadeIn]:checked) .ZBf0K1{opacity:1;transition:opacity .4s cubic-bezier(.645,.045,.355,1)}[data-prehydration]:has([data-hamburger-toggle]:checked) .ZBf0K1{z-index:2;position:relative}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1{opacity:1}[data-prehydration]:has([data-hamburger-toggle][data-hamburger-animation=none]:checked) .ZBf0K1>*{transform:translate(0)}.HamburgerMenuContainer502174924__root{-archetype:paintBox;box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.Qkigz2{box-sizing:border-box;top:0;background:var(--background);border:var(--border);border-radius:var(--border-radius);width:100%;height:100%;box-shadow:var(--box-shadow);position:absolute;inset-inline-start:0}.NxO5nt{flex-direction:var(--container-flex-direction);flex-grow:var(--menu-items-flex-grow);align-items:center;gap:var(--menu-items-main-axis-gap);flex-wrap:nowrap;display:flex}.fYThT1{height:var(--menu-item-wrapper-height);display:var(--item-wrapper-display);width:var(--item-wrapper-width);justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow)}.FBAIyH{width:var(--item-width);box-sizing:border-box;align-items:center;height:100%;display:flex;position:relative}.FBAIyH a{color:inherit}.FBAIyH.QFOPOz{border-left:var(--item-border-left);border-right:var(--item-border-right);border-radius:var(--item-border-radius);padding-left:var(--item-padding-left,var(--item-horizontal-padding));padding-right:var(--item-padding-right,var(--item-horizontal-padding))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8{background:var(--item-hover-background,var(--item-background));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow));border-top:var(--item-hover-border-top,var(--item-border-top));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH.QFOPOz,.FBAIyH[data-interactive=true]:hover.QFOPOz,.FBAIyH[data-preview=hover].QFOPOz,.FBAIyH.BjD2X8.QFOPOz{border-left:var(--item-hover-border-left,var(--item-border-left));border-right:var(--item-hover-border-right,var(--item-border-right));border-radius:var(--item-hover-border-radius,var(--item-border-radius))}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .ijO_Jr,.FBAIyH[data-interactive=true]:hover .ijO_Jr,.FBAIyH[data-preview=hover] .ijO_Jr,.FBAIyH.BjD2X8 .ijO_Jr{color:var(--item-hover-color,var(--item-color));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration));text-shadow:var(--item-hover-text-outline,var(--item-text-outline)),var(--item-hover-text-shadow,var(--item-text-shadow));background-color:var(--item-hover-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH path,.FBAIyH[data-interactive=true]:hover path,.FBAIyH[data-preview=hover] path,.FBAIyH.BjD2X8 path{fill:var(--item-hover-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH[data-selected],.FBAIyH[data-preview=selected],.FBAIyH.aH0Njg{background:var(--item-selected-background,var(--item-background));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow));border-top:var(--item-selected-border-top,var(--item-border-top));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom))}.FBAIyH[data-selected].QFOPOz,.FBAIyH[data-preview=selected].QFOPOz,.FBAIyH.aH0Njg.QFOPOz{border-left:var(--item-selected-border-left,var(--item-border-left));border-right:var(--item-selected-border-right,var(--item-border-right));border-radius:var(--item-selected-border-radius,var(--item-border-radius))}.FBAIyH[data-selected] .ijO_Jr,.FBAIyH[data-preview=selected] .ijO_Jr,.FBAIyH.aH0Njg .ijO_Jr{color:var(--item-selected-color,var(--item-color));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration));text-shadow:var(--item-selected-text-outline,var(--item-text-outline)),var(--item-selected-text-shadow,var(--item-text-shadow));background-color:var(--item-selected-text-highlight,var(--item-text-highlight));line-height:var(--item-line-height)}.FBAIyH[data-selected] path,.FBAIyH[data-preview=selected] path,.FBAIyH.aH0Njg path{fill:var(--item-selected-icon-color,var(--item-icon-color,currentcolor))}.FBAIyH>a:before{content:"";position:absolute;inset:0}@media (forced-colors:active){.FBAIyH{outline-offset:-1px;outline:2px solid buttontext}.FBAIyH .RXCM8H{color:buttontext}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH,.FBAIyH[data-interactive=true]:hover,.FBAIyH[data-preview=hover],.FBAIyH.BjD2X8,.FBAIyH[data-selected],.FBAIyH[data-preview=selected]{outline-offset:-2px;outline:3px solid highlight}[data-open]:not([data-animation-state=exitActive]):not([data-animation-state=exitDone])>.fYThT1>.FBAIyH .RXCM8H,.FBAIyH[data-interactive=true]:hover .RXCM8H,.FBAIyH[data-preview=hover] .RXCM8H,.FBAIyH.BjD2X8 .RXCM8H,.FBAIyH[data-selected] .RXCM8H,.FBAIyH[data-preview=selected] .RXCM8H{color:highlight}.FBAIyH:focus-within{outline-offset:-2px!important;outline:3px solid highlight!important}.FBAIyH:focus-within .RXCM8H{color:highlight}.FBAIyH>a:focus,.FBAIyH>a:focus-visible{outline:none!important}.FBAIyH .RXCM8H:focus,.FBAIyH .RXCM8H:focus-visible{outline-offset:1px!important;outline:3px solid highlight!important}}.ijO_Jr{direction:var(--item-direction);background-color:var(--item-text-highlight);white-space:nowrap}.rpHatU{--computed-anchor:var(--anchor,var(--dropdown-anchor));--computed-align:var(--align,var(--dropdown-align));--computed-space-above:var(--space-above,var(--dropdown-space-above));--computed-horizontal-margin:var(--horizontal-margin,var(--dropdown-horizontal-margin));--before-el-top:calc(-1*var(--computed-space-above));visibility:hidden;z-index:var(--above-all-z-index);margin-top:var(--computed-space-above)!important;inset:auto!important;left:var(--dropdown-left)!important;display:none!important;position:absolute!important}.rpHatU:before{content:"";height:var(--computed-space-above);top:var(--before-el-top);width:100%;display:block;position:absolute}.rpHatU[data-open=true]{visibility:visible}.NxO5nt[data-open=calculating] .rpHatU,.NxO5nt[data-open=true] .rpHatU{display:grid!important}.RXCM8H{cursor:pointer;display:var(--item-icon-display,flex)}.RXCM8H svg{height:var(--item-icon-size);width:var(--item-icon-size)}.RXCM8H path{fill:var(--item-icon-color,currentcolor)}.RXCM8H.wWora8:before{content:"";position:absolute;inset:0}.RXCM8H.G_xd9z{display:var(--sr-only-item-icon-display,flex);clip:rect(0 0 0 0);clip-path:inset(50%);position:absolute}.RXCM8H.G_xd9z:focus,.RXCM8H.G_xd9z:active{clip-path:unset;position:static}.kbbiAh[data-open]{transform:rotate(-180deg)}.iincGk{display:var(--vertical-expand-collapse-display,var(--item-icon-display,flex))}.RXCM8H:not(.wWora8):not(.G_xd9z){position:relative}.RXCM8H:not(.wWora8):before{content:"";height:max(100%,24px);width:max(var(--item-icon-size),24px);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}@media (forced-colors:active){.RXCM8H,.RXCM8H svg,.RXCM8H svg *,.RXCM8H path{fill:currentColor!important;stroke:currentColor!important}}.JFWRCg{display:var(--horizontal-menu-dropdown-display,block)}.lmsYvh{display:var(--vertical-menu-dropdown-display);margin-top:calc(var(--menu-items-main-axis-gap,0)*-1);width:100%}.t_wvYI{--computed-space-above:var(--space-above,var(--dropdown-space-above));visibility:var(--vertical-dropdown-visibility);height:var(--vertical-dropdown-height);margin-top:var(--vertical-dropdown-height,var(--computed-space-above))!important}.Rfl5du .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}.BDrALc{display:var(--divider-display,none);border-left:var(--horizontal-menu-item-divider,none);border-top:var(--vertical-menu-item-divider,none);align-self:stretch}.NxO5nt:last-child .BDrALc{display:none}.jGiW2t{display:contents}.twZzaW{display:none}.WCS58T{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}[data-prehydration] [data-submenu-toggle]:checked~.lmsYvh .t_wvYI{visibility:unset;height:unset;margin-top:var(--computed-space-above)!important}[data-prehydration] .jGiW2t{z-index:1;display:flex;position:relative}[data-prehydration] .jGiW2t .RXCM8H{pointer-events:none}[data-prehydration] .twZzaW{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}[data-prehydration] .twZzaW:before{content:"";min-width:44px;min-height:44px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}[data-prehydration] [data-submenu-toggle]:checked~.fYThT1 .kbbiAh{transform:rotate(-180deg)}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=screen]{visibility:visible;left:var(--computed-horizontal-margin)!important;width:calc(100vw - 2*var(--computed-horizontal-margin))!important;display:grid!important;position:fixed!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuStretched]{visibility:visible;width:100%!important;display:grid!important;left:0!important}[data-prehydration] .NxO5nt:hover{anchor-name:--ee-hovered-menu-item}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth]{visibility:visible;display:grid!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{left:0!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:0!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:50%!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:0!important}@supports (anchor-name:--a){[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem]{width:max-content!important;min-width:anchor-size(--ee-hovered-menu-item width)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=start],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=start]{left:anchor(--ee-hovered-menu-item left)!important;right:auto!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=center],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=center]{left:anchor(--ee-hovered-menu-item center)!important;right:auto!important;transform:translate(-50%)!important}[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuItem][data-align=end],[data-prehydration] .NxO5nt:hover .rpHatU[data-anchor=menuCustomWidth][data-align=end]{left:auto!important;right:anchor(--ee-hovered-menu-item right)!important}}.cVnJ7u{justify-content:var(--item-text-align);background:var(--item-background);box-shadow:var(--item-box-shadow);border-top:var(--item-border-top);border-bottom:var(--item-border-bottom);padding-top:var(--item-padding-top,var(--item-vertical-padding));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding));gap:var(--spacing-between-label-and-dropdown-icon)}.GPIJZi{font:var(--item-font,font_6);color:var(--item-color);text-decoration-line:var(--item-text-decoration);text-transform:var(--item-text-transform);text-shadow:var(--item-text-outline),var(--item-text-shadow);letter-spacing:var(--item-letter-spacing);line-height:var(--item-line-height)}.Y4Cdvx [data-part=menu-item]{--underline-scale:scaleX(0);--wash-scale:scaleX(0);--circle-clip-path:circle(0%);--dropdown-icon-transform:rotate(0);--bullet-translate:translateX(-150%);--bullet-opacity:0;--wave-tarnslate:scaleY(0)}.Y4Cdvx [data-part=menu-item]:not([data-animation-name=none]) [data-part=dropdown-icon]{transition-property:transform;transition-duration:.4s}.Y4Cdvx [data-part=menu-item] [data-part=label]:after,.Y4Cdvx [data-part=menu-item] [data-part=dropdown-item-label]:after{content:"";width:100%;height:1px;display:block;display:var(--item-label-underline-display,block);background-color:currentColor;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item] [data-part=label]:before{content:"•"/"";display:var(--item-label-bullet-display,inline-block);opacity:0;padding-inline-end:3px}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:after{display:var(--item-selected-label-underline-display,block);transform:scaleX(1)}.Y4Cdvx [data-part=menu-item] [data-part=menu-item-content][data-selected] [data-part=label]:before{opacity:1}.Y4Cdvx [data-part=menu-item][data-open=true],.Y4Cdvx [data-part=menu-item][data-animation-state=enterActive],.Y4Cdvx [data-part=menu-item][data-animation-state=enterDone]{--underline-scale:scaleX(1);--wash-scale:scaleX(1);--circle-clip-path:circle(100%);--dropdown-icon-transform:rotate(-540deg);--bullet-translate:translateX(0%);--bullet-opacity:1;--wave-tarnslate:scaleY(1.5)}.Y4Cdvx [data-part=menu-item] [data-selected]{--underline-scale:scaleX(1);--wash-scale:scaleX(0);--bullet-translate:translateX(0%);--bullet-opacity:1}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=label]:after{transform-origin:0;transform:var(--underline-scale);transition:transform .3s}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item-label]:after{transform-origin:0;transition-property:transform;transition-duration:.3s;display:block;transform:scaleX(0)}.Y4Cdvx [data-part=menu-item][data-animation-name=underline] [data-part=dropdown-item]:hover [data-part=dropdown-item-label]:after{transform:scaleX(1)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);transform-origin:0;transform:var(--wash-scale);transition:transform .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wash] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);clip-path:var(--circle-clip-path);transition:clip-path .4s;display:block;position:absolute;inset:0}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=circle] [data-part=dropdown-icon]{transform:var(--dropdown-icon-transform)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:not([data-selected]):hover{background-color:var(--item-background)}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]{isolation:isolate;position:relative;overflow:hidden}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=menu-item-content]:before{content:"";z-index:-1;background-color:var(--item-hover-background);height:135%;inset:0;bottom:unset;transform-origin:bottom;transform:var(--wave-tarnslate);transition:transform .4s;display:block;position:absolute;-webkit-mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2758%27 height=%2717%27 preserveAspectRatio=%27none%27 viewBox=%27-0.004 0 58.004 25.784%27%3E%3Cpath d=%27M44.993-.004c-5.749 0-5.749 6.12-11.497 6.12s-5.751-6.12-11.502-6.12-5.749 6.12-11.497 6.12C5.105 6.116 4.771.728.003.064l-.004 25.719 58.012-.002-.008-19.841a6.69 6.69 0 0 1-1.505.176c-5.753 0-5.753-6.12-11.505-6.12Z%27/%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100% 100%;mask-size:100% 100%}.Y4Cdvx [data-part=menu-item][data-animation-name=wave] [data-part=dropdown-item-label]{transition:color .2s ease-in-out}.Y4Cdvx [data-part=menu-item][data-animation-name=bullet] [data-part=label]:before{transform:var(--bullet-translate);opacity:var(--bullet-opacity);transition-duration:.3s;display:inline-block}.Y4Cdvx{width:100%;height:100%;overflow-x:var(--container-overflow-x,unset);overflow-y:var(--container-overflow-y,visible);scrollbar-width:none;box-sizing:border-box;display:flex}.Y4Cdvx.VxjUGd{border-left:var(--container-border-left);border-right:var(--container-border-right);border-radius:var(--container-border-radius);padding-right:var(--container-padding-right,0);padding-left:var(--container-padding-left,0)}.tn8ZSa{direction:var(--direction)}.OD_PyT{width:100%;min-width:-moz-fit-content;height:auto;justify-content:var(--container-align);flex-grow:var(--menu-items-flex-grow);flex-direction:var(--container-flex-direction);flex-wrap:var(--container-flex-wrap,unset);scrollbar-width:none;row-gap:var(--menu-items-row-gap);column-gap:var(--menu-items-column-gap);min-width:fit-content;display:flex;overflow-x:visible}.YUEUpV{background:var(--container-background);box-shadow:var(--container-box-shadow);border-top:var(--container-border-top);border-bottom:var(--container-border-bottom);padding-top:var(--container-padding-top,0);padding-bottom:var(--container-padding-bottom,0)}.PnnIOa{cursor:pointer;pointer-events:auto;visibility:hidden;transform:var(--scroll-button-transform);--icon-rotation:var(--scroll-button-icon-rotation-deg,calc(var(--scroll-button-icon-rotation)*1deg));--icon-rotation-hover:var(--scroll-button-hover-icon-rotation-deg,calc(var(--scroll-button-hover-icon-rotation)*1deg));justify-content:center;align-items:center;display:flex;overflow:hidden}.PnnIOa.hcRPG3{border-left:var(--scroll-button-border-left);border-right:var(--scroll-button-border-right);border-radius:var(--scroll-button-border-radius)}.PnnIOa.hcRPG3 .KEUNmX{padding-right:var(--scroll-button-padding-right,0);padding-left:var(--scroll-button-padding-left,0)}.PnnIOa.Od2sOd .KEUNmX{padding-inline-start:var(--scroll-button-padding-inline-start,0);padding-inline-end:var(--scroll-button-padding-inline-end,0)}.PnnIOa:hover,.PnnIOa[data-preview=hover]{background:var(--scroll-button-hover-background,var(--scroll-button-background));box-shadow:var(--scroll-button-hover-box-shadow,var(--scroll-button-box-shadow));border-top:var(--scroll-button-hover-border-top,var(--scroll-button-border-top));border-bottom:var(--scroll-button-hover-border-bottom,var(--scroll-button-border-bottom))}.PnnIOa:hover.hcRPG3,.PnnIOa[data-preview=hover].hcRPG3{border-left:var(--scroll-button-hover-border-left,var(--scroll-button-border-left));border-right:var(--scroll-button-hover-border-right,var(--scroll-button-border-right));border-radius:var(--scroll-button-hover-border-radius,var(--scroll-button-border-radius))}.PnnIOa:hover.hcRPG3 .KEUNmX,.PnnIOa[data-preview=hover].hcRPG3 .KEUNmX{padding-right:var(--scroll-button-hover-padding-right,var(--scroll-button-padding-right,0));padding-left:var(--scroll-button-hover-padding-left,var(--scroll-button-padding-left,0))}.PnnIOa:hover .KEUNmX,.PnnIOa[data-preview=hover] .KEUNmX{fill:var(--scroll-button-hover-icon-color,var(--scroll-button-icon-color));transform:rotate(var(--icon-rotation-hover,var(--icon-rotation)));height:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size));width:var(--scroll-button-hover-icon-size,var(--scroll-button-icon-size))}.PnnIOa:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.fXBvwp{visibility:visible;pointer-events:auto}.sLcDXV{visibility:hidden;pointer-events:none}.KEUNmX{min-width:1px;max-width:100%;max-height:100%;fill:var(--scroll-button-icon-color);transform:rotate(var(--icon-rotation));height:var(--scroll-button-icon-size);width:var(--scroll-button-icon-size)}.KEUNmX>svg{width:inherit;height:inherit}@media (forced-colors:active){.PnnIOa.fXBvwp{outline-offset:0px;color:buttontext;outline:2px solid buttontext}.PnnIOa.fXBvwp:hover,.PnnIOa[data-preview=hover]{outline-offset:1px;color:highlight;outline:3px solid highlight}.KEUNmX,.KEUNmX *{fill:currentColor;stroke:currentColor}}.MXA4tA{background:var(--scroll-button-background);box-shadow:var(--scroll-button-box-shadow);border-top:var(--scroll-button-border-top);border-bottom:var(--scroll-button-border-bottom)}.UU6mel{padding-top:inherit;padding-bottom:inherit;border:inherit;pointer-events:none;display:var(--scroll-button-icon-display,flex);border-color:#0000;justify-content:space-between;position:absolute;inset:0}.toi7Rj{direction:var(--submenu-direction,var(--dropdown-menu-direction,var(--direction)));box-sizing:border-box;background:var(--container-background,var(--dropdown-menu-container-background));border-top:var(--container-border-top,var(--dropdown-menu-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-menu-container-border-bottom));border-left:var(--container-border-left,var(--dropdown-menu-container-border-left));border-right:var(--container-border-right,var(--dropdown-menu-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-menu-container-border-radius));box-shadow:var(--container-box-shadow,var(--dropdown-menu-container-box-shadow));text-align:var(--align,var(--dropdown-menu-align));padding-top:var(--container-padding-top,var(--container-vertical-padding,var(--dropdown-menu-container-padding-top,var(--dropdown-menu-container-vertical-padding))));padding-bottom:var(--container-padding-bottom,var(--container-vertical-padding,var(--dropdown-menu-container-padding-bottom,var(--dropdown-menu-container-vertical-padding))));min-width:min-content!important}.toi7Rj.x0UOau{padding-right:var(--container-padding-right,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-right,var(--dropdown-menu-container-horizontal-padding))));padding-left:var(--container-padding-left,var(--container-horizontal-padding,var(--dropdown-menu-container-padding-left,var(--dropdown-menu-container-horizontal-padding))))}.toi7Rj.esKf1e{padding-inline-start:var(--container-padding-inline-start);padding-inline-end:var(--container-padding-inline-end)}@media (forced-colors:active){.toi7Rj{outline-offset:0px;outline:2px solid buttontext}.toi7Rj:focus-within{outline-offset:1px;outline:3px solid highlight!important}}.sbxaYn{--rows-number:calc((var(--items-number)/$columns-number) + .49);grid-template-columns:repeat(var(--columns-number,var(--dropdown-menu-columns-number)),1fr);grid-template-rows:repeat(var(--rows-number),auto);row-gap:var(--item-vertical-spacing,var(--dropdown-menu-item-vertical-spacing));column-gap:var(--item-horizontal-spacing,var(--dropdown-menu-item-horizontal-spacing));display:grid}@supports (width:round(1.9px, 1px)){.sbxaYn{--rows-number:calc(round(up,var(--items-number)/$columns-number))}}.SjbYta{gap:var(--sub-items-vertical-spacing-between,var(--dropdown-menu-sub-items-vertical-spacing-between));margin-top:var(--sub-items-vertical-spacing-before,var(--dropdown-menu-sub-items-vertical-spacing-before));flex-direction:column;display:flex}.P3tBK7{width:100%}.ptLEUT{direction:var(--submenu-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--dropdown-menu-item-justify-self);text-align:var(--item-align,var(--align,var(--dropdown-menu-item-align,var(--dropdown-menu-align))));padding-top:var(--item-padding-top,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));padding-bottom:var(--item-padding-bottom,var(--item-vertical-padding,var(--dropdown-menu-item-vertical-padding)));display:block}.ptLEUT.x0UOau{border-left:var(--item-border-left,var(--dropdown-menu-item-border-left));border-right:var(--item-border-right,var(--dropdown-menu-item-border-right));border-radius:var(--item-border-radius,var(--dropdown-menu-item-border-radius));padding-left:var(--item-padding-left,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-right:var(--item-padding-right,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.esKf1e{padding-inline-start:var(--item-padding-inline-start,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)));padding-inline-end:var(--item-padding-inline-end,var(--item-horizontal-padding,var(--dropdown-menu-item-horizontal-padding)))}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected]{font:var(--item-selected-font,var(--item-font,var(--dropdown-menu-item-selected-font,var(--dropdown-menu-item-font))));color:var(--item-selected-color,var(--item-color,var(--dropdown-menu-item-selected-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-selected-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-selected-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-selected-line-height,var(--item-line-height,var(--dropdown-menu-item-selected-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-selected-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-selected-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-selected-text-transform,var(--item-text-transform,var(--dropdown-menu-item-selected-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-selected-text-outline,var(--item-text-outline,var(--dropdown-menu-item-selected-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-selected-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-selected-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-selected-background,var(--item-background,var(--dropdown-menu-item-selected-background,var(--dropdown-menu-item-background))));border-top:var(--item-selected-border-top,var(--item-border-top,var(--dropdown-menu-item-selected-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-selected-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-selected-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-selected-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-selected-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT.WB5Q35.x0UOau,.ptLEUT[data-preview=selected].x0UOau{border-left:var(--item-selected-border-left,var(--item-border-left,var(--dropdown-menu-item-selected-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-selected-border-right,var(--item-border-right,var(--dropdown-menu-item-selected-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-selected-border-radius,var(--item-border-radius,var(--dropdown-menu-item-selected-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT.WB5Q35 .u9_aLl,.ptLEUT[data-preview=selected] .u9_aLl{background-color:var(--item-selected-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-selected-text-highlight,var(--dropdown-menu-item-text-highlight))))}.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{font:var(--item-hover-font,var(--item-font,var(--dropdown-menu-item-hover-font,var(--dropdown-menu-item-font))));color:var(--item-hover-color,var(--item-color,var(--dropdown-menu-item-hover-color,var(--dropdown-menu-item-color))));letter-spacing:var(--item-hover-letter-spacing,var(--item-letter-spacing,var(--dropdown-menu-item-hover-letter-spacing,var(--dropdown-menu-item-letter-spacing))));line-height:var(--item-hover-line-height,var(--item-line-height,var(--dropdown-menu-item-hover-line-height,var(--dropdown-menu-item-line-height))));text-decoration-line:var(--item-hover-text-decoration,var(--item-text-decoration,var(--dropdown-menu-item-hover-text-decoration,var(--dropdown-menu-item-text-decoration))));text-transform:var(--item-hover-text-transform,var(--item-text-transform,var(--dropdown-menu-item-hover-text-transform,var(--dropdown-menu-item-text-transform))));text-shadow:var(--item-hover-text-outline,var(--item-text-outline,var(--dropdown-menu-item-hover-text-outline,var(--dropdown-menu-item-text-outline)))),var(--item-hover-text-shadow,var(--item-text-shadow,var(--dropdown-menu-item-hover-text-shadow,var(--dropdown-menu-item-text-shadow))));background:var(--item-hover-background,var(--item-background,var(--dropdown-menu-item-hover-background,var(--dropdown-menu-item-background))));border-top:var(--item-hover-border-top,var(--item-border-top,var(--dropdown-menu-item-hover-border-top,var(--dropdown-menu-item-border-top))));border-bottom:var(--item-hover-border-bottom,var(--item-border-bottom,var(--dropdown-menu-item-hover-border-bottom,var(--dropdown-menu-item-border-bottom))));box-shadow:var(--item-hover-box-shadow,var(--item-box-shadow,var(--dropdown-menu-item-hover-box-shadow,var(--dropdown-menu-item-box-shadow))))}.ptLEUT:hover.x0UOau,.ptLEUT.brJofP.x0UOau,.ptLEUT[data-preview=hover].x0UOau{border-left:var(--item-hover-border-left,var(--item-border-left,var(--dropdown-menu-item-hover-border-left,var(--dropdown-menu-item-border-left))));border-right:var(--item-hover-border-right,var(--item-border-right,var(--dropdown-menu-item-hover-border-right,var(--dropdown-menu-item-border-right))));border-radius:var(--item-hover-border-radius,var(--item-border-radius,var(--dropdown-menu-item-hover-border-radius,var(--dropdown-menu-item-border-radius))))}.ptLEUT:hover .u9_aLl,.ptLEUT.brJofP .u9_aLl,.ptLEUT[data-preview=hover] .u9_aLl{background-color:var(--item-hover-text-highlight,var(--item-text-highlight,var(--dropdown-menu-item-hover-text-highlight,var(--dropdown-menu-item-text-highlight))))}@media (forced-colors:active){.ptLEUT{outline-offset:0px;outline:2px solid buttontext}.ptLEUT.WB5Q35,.ptLEUT[data-preview=selected],.ptLEUT:hover,.ptLEUT.brJofP,.ptLEUT[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.ptLEUT:focus,.ptLEUT:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.B2qCAf{direction:var(--submenu-sub-item-direction,var(--submenu-direction,var(--dropdown-menu-sub-item-direction,var(--dropdown-menu-direction,var(--direction)))));justify-self:var(--sub-item-justify-self);text-align:var(--sub-item-align,var(--align,var(--dropdown-menu-sub-item-align,var(--dropdown-menu-align))));display:block}.B2qCAf.x0UOau{border-left:var(--sub-item-border-left,var(--dropdown-menu-sub-item-border-left));border-right:var(--sub-item-border-right,var(--dropdown-menu-sub-item-border-right));border-radius:var(--sub-item-border-radius,var(--dropdown-menu-sub-item-border-radius));padding-left:var(--sub-item-padding-left,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)));padding-right:var(--sub-item-padding-right,var(--sub-item-horizontal-padding,var(--dropdown-menu-sub-item-horizontal-padding)))}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected]{font:var(--sub-item-selected-font,var(--sub-item-font,var(--dropdown-menu-sub-item-selected-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-selected-color,var(--sub-item-color,var(--dropdown-menu-sub-item-selected-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-selected-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-selected-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-selected-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-selected-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-selected-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-selected-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-selected-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-selected-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-selected-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-selected-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-selected-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-selected-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-selected-background,var(--sub-item-background,var(--dropdown-menu-sub-item-selected-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-selected-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-selected-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-selected-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-selected-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-selected-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-selected-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf.WB5Q35.x0UOau,.B2qCAf[data-preview=selected].x0UOau{border-left:var(--sub-item-selected-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-selected-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-selected-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-selected-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-selected-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-selected-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf.WB5Q35 .UCVF7R,.B2qCAf[data-preview=selected] .UCVF7R{background-color:var(--sub-item-selected-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-selected-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{font:var(--sub-item-hover-font,var(--sub-item-font,var(--dropdown-menu-sub-item-hover-font,var(--dropdown-menu-sub-item-font))));color:var(--sub-item-hover-color,var(--sub-item-color,var(--dropdown-menu-sub-item-hover-color,var(--dropdown-menu-sub-item-color))));letter-spacing:var(--sub-item-hover-letter-spacing,var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-hover-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing))));line-height:var(--sub-item-hover-line-height,var(--sub-item-line-height,var(--dropdown-menu-sub-item-hover-line-height,var(--dropdown-menu-sub-item-line-height))));text-decoration-line:var(--sub-item-hover-text-decoration,var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-hover-text-decoration,var(--dropdown-menu-sub-item-text-decoration))));text-transform:var(--sub-item-hover-text-transform,var(--sub-item-text-transform,var(--dropdown-menu-sub-item-hover-text-transform,var(--dropdown-menu-sub-item-text-transform))));text-shadow:var(--sub-item-hover-text-outline,var(--sub-item-text-outline,var(--dropdown-menu-sub-item-hover-text-outline,var(--dropdown-menu-sub-item-text-outline)))),var(--sub-item-hover-text-shadow,var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-hover-text-shadow,var(--dropdown-menu-sub-item-text-shadow))));background:var(--sub-item-hover-background,var(--sub-item-background,var(--dropdown-menu-sub-item-hover-background,var(--dropdown-menu-sub-item-background))));border-top:var(--sub-item-hover-border-top,var(--sub-item-border-top,var(--dropdown-menu-sub-item-hover-border-top,var(--dropdown-menu-sub-item-border-top))));border-bottom:var(--sub-item-hover-border-bottom,var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-hover-border-bottom,var(--dropdown-menu-sub-item-border-bottom))));box-shadow:var(--sub-item-hover-box-shadow,var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-hover-box-shadow,var(--dropdown-menu-sub-item-box-shadow))))}.B2qCAf:hover.x0UOau,.B2qCAf.brJofP.x0UOau,.B2qCAf[data-preview=hover].x0UOau{border-left:var(--sub-item-hover-border-left,var(--sub-item-border-left,var(--dropdown-menu-sub-item-hover-border-left,var(--dropdown-menu-sub-item-border-left))));border-right:var(--sub-item-hover-border-right,var(--sub-item-border-right,var(--dropdown-menu-sub-item-hover-border-right,var(--dropdown-menu-sub-item-border-right))));border-radius:var(--sub-item-hover-border-radius,var(--sub-item-border-radius,var(--dropdown-menu-sub-item-hover-border-radius,var(--dropdown-menu-sub-item-border-radius))))}.B2qCAf:hover .UCVF7R,.B2qCAf.brJofP .UCVF7R,.B2qCAf[data-preview=hover] .UCVF7R{background-color:var(--sub-item-hover-text-highlight,var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-hover-text-highlight,var(--dropdown-menu-sub-item-text-highlight))))}@media (forced-colors:active){.B2qCAf{outline-offset:0px;outline:2px solid buttontext}.B2qCAf.WB5Q35,.B2qCAf[data-preview=selected],.B2qCAf:hover,.B2qCAf.brJofP,.B2qCAf[data-preview=hover]{outline-offset:-2px;outline:3px solid highlight}.B2qCAf:focus,.B2qCAf:focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.u9_aLl{background-color:var(--item-text-highlight,var(--dropdown-menu-item-text-highlight));text-align:inherit;text-decoration-line:inherit;text-transform:inherit;text-shadow:inherit;display:inline-block}.UCVF7R{background-color:var(--sub-item-text-highlight,var(--dropdown-menu-sub-item-text-highlight))}.eP1KVV{font:var(--item-font,var(--dropdown-menu-item-font,var(--font_7)));color:var(--item-color,var(--dropdown-menu-item-color));letter-spacing:var(--item-letter-spacing,var(--dropdown-menu-item-letter-spacing));line-height:var(--item-line-height,var(--dropdown-menu-item-line-height));text-decoration-line:var(--item-text-decoration,var(--dropdown-menu-item-text-decoration));text-transform:var(--item-text-transform,var(--dropdown-menu-item-text-transform));text-shadow:var(--item-text-outline,var(--dropdown-menu-item-text-outline)),var(--item-text-shadow,var(--dropdown-menu-item-text-shadow));background:var(--item-background,var(--dropdown-menu-item-background));border-top:var(--item-border-top,var(--dropdown-menu-item-border-top));border-bottom:var(--item-border-bottom,var(--dropdown-menu-item-border-bottom));box-shadow:var(--item-box-shadow,var(--dropdown-menu-item-box-shadow))}._3mA1c{font:var(--sub-item-font,var(--dropdown-menu-sub-item-font));color:var(--sub-item-color,var(--dropdown-menu-sub-item-color));letter-spacing:var(--sub-item-letter-spacing,var(--dropdown-menu-sub-item-letter-spacing));line-height:var(--sub-item-line-height,var(--dropdown-menu-sub-item-line-height));text-decoration-line:var(--sub-item-text-decoration,var(--dropdown-menu-sub-item-text-decoration));text-transform:var(--sub-item-text-transform,var(--dropdown-menu-sub-item-text-transform));text-shadow:var(--sub-item-text-outline,var(--dropdown-menu-sub-item-text-outline)),var(--sub-item-text-shadow,var(--dropdown-menu-sub-item-text-shadow));background:var(--sub-item-background,var(--dropdown-menu-sub-item-background));border-top:var(--sub-item-border-top,var(--dropdown-menu-sub-item-border-top));border-bottom:var(--sub-item-border-bottom,var(--dropdown-menu-sub-item-border-bottom));box-shadow:var(--sub-item-box-shadow,var(--dropdown-menu-sub-item-box-shadow));padding-top:var(--sub-item-padding-top,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)));padding-bottom:var(--sub-item-padding-bottom,var(--sub-item-vertical-padding,var(--dropdown-menu-sub-item-vertical-padding)))}.cNddzb[data-animation-name=revealFromTop]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),clip-path .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enter],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exitDone]{clip-path:var(--animation-clip-path);opacity:0}.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive]{clip-path:inset(var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%)var(--shadow-margin,0%))}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone]{clip-path:unset}.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterActive],.cNddzb[data-animation-name=revealFromTop][data-animation-state=enterDone],.cNddzb[data-animation-name=revealFromTop][data-animation-state=exit]{opacity:1}.cNddzb[data-animation-name=fadeIn]{transition:opacity .4s cubic-bezier(.645,.045,.355,1)}.cNddzb[data-animation-name=fadeIn][data-animation-state=enter],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=exitDone]{opacity:0}.cNddzb[data-animation-name=fadeIn][data-animation-state=enterActive],.cNddzb[data-animation-name=fadeIn][data-animation-state=enterDone],.cNddzb[data-animation-name=fadeIn][data-animation-state=exit]{opacity:1}.cNddzb{background:var(--container-background,var(--dropdown-container-background));border-top:var(--container-border-top,var(--dropdown-container-border-top));border-bottom:var(--container-border-bottom,var(--dropdown-container-border-bottom));box-shadow:var(--container-box-shadow,var(--dropdown-container-box-shadow))}.cNddzb.Nk9NbA{border-left:var(--container-border-left,var(--dropdown-container-border-left));border-right:var(--container-border-right,var(--dropdown-container-border-right));border-radius:var(--container-border-radius,var(--dropdown-container-border-radius))}.cNddzb.W_BIhg{border-inline-start:var(--container-border-inline-start,var(--dropdown-container-border-inline-start));border-inline-end:var(--container-border-inline-end,var(--dropdown-container-border-inline-end));border-start-start-radius:var(--container-border-start-start-radius,var(--dropdown-container-border-start-start-radius));border-start-end-radius:var(--container-border-start-end-radius,var(--dropdown-container-border-start-end-radius));border-end-end-radius:var(--container-border-end-end-radius,var(--dropdown-container-border-end-end-radius));border-end-start-radius:var(--container-border-end-start-radius,var(--dropdown-container-border-end-start-radius))}.OOc2NG{direction:ltr}.G4Bkwp{box-sizing:border-box}div.wiZmhC{display:var(--l_display,var(--hamburger-menu-root-display,var(--container-display)))}[data-hamburger-btn-label]{display:none}div.wiZmhC[data-prehydration] [data-hamburger-btn-label]{z-index:1;cursor:pointer;pointer-events:auto;display:block;position:absolute;inset:0}.pcn0FH{clip:rect(0,0,0,0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.HamburgerOpenButton3537389287__nav{display:inherit;height:inherit;width:auto}.uxNlIP{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.uxNlIP:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.uxNlIP:not(:disabled):hover,.uxNlIP:not(:disabled)[aria-pressed=true],.uxNlIP:not(:disabled)[aria-selected=true],.uxNlIP:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.uxNlIP:not(:disabled):focus,.uxNlIP:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.uxNlIP.KuCfHA:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.uxNlIP.aNAcG0:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.uxNlIP:hover,.uxNlIP [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.uxNlIP.GPIMxy:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.uxNlIP.KceBs9:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.uxNlIP:disabled,.uxNlIP [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.uxNlIP.N3sAZG:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.uxNlIP._FFhff:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.I0RXdK{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.uxNlIP.siSNn5:not(:hover):not(:disabled) .I0RXdK{color:var(--corvid-color,var(--color))}.uxNlIP:hover .I0RXdK,.uxNlIP [data-preview=hover] .I0RXdK{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.uxNlIP.EJ6L9y:hover:not(:disabled) .I0RXdK{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.uxNlIP:disabled .I0RXdK,.uxNlIP [data-preview=disabled] .I0RXdK{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.uxNlIP.S6tzPA:disabled:not(:hover) .I0RXdK{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.kAoW_K{box-sizing:border-box;color:#000;text-decoration:none}.VzoZx_{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.p_5A25{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.uxNlIP.iN4eVS:not(:hover):not(:disabled) .p_5A25{fill:var(--corvid-icon-color,var(--icon-color))}.uxNlIP:hover .p_5A25,.uxNlIP [data-preview=hover] .p_5A25{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.uxNlIP.SGrXAN:hover:not(:disabled) .p_5A25{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.uxNlIP:disabled .p_5A25,.uxNlIP [data-preview=disabled] .p_5A25{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.uxNlIP.ZBuT2t:disabled:not(:hover) .p_5A25{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.p_5A25>span,.p_5A25 svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.p_5A25,.p_5A25 svg,.p_5A25 svg *{fill:currentColor!important;stroke:currentColor!important}}.HMOnu5{display:inherit;height:inherit;width:auto}.HamburgerOverlay547129737__root{-archetype:paintBox;visibility:hidden;box-sizing:border-box;z-index:var(--above-all-z-index);left:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;top:var(--wix-ads-height)!important;position:fixed!important}.HamburgerOverlay547129737__overlay{box-sizing:border-box;width:100%;height:100%;position:absolute;top:0;left:0}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--isMenuOpen{visibility:visible}.HamburgerOverlay547129737__root:not(.HamburgerOverlay547129737--showBackgroundOverlay){background-color:#0000}.HamburgerOverlay547129737__root.HamburgerOverlay547129737--shouldScroll{overflow-x:hidden;overflow-y:scroll}.HamburgerOverlay547129737__scrollContent{position:relative}.OrbgmN[data-part=hamburger-overlay]{opacity:var(--hamburger-overlay-initial-opacity)}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn]{transition:opacity .4s}.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterActive],.OrbgmN[data-part=hamburger-overlay][data-animation-name=fadeIn][data-animation-state=enterDone]{opacity:1}.xdu0As{background:var(--background);border:var(--border);border-radius:var(--border-radius);box-shadow:var(--box-shadow);z-index:var(--above-all-z-index);box-sizing:border-box;visibility:hidden;inset-inline-start:0;height:calc(100vh - var(--wix-ads-height))!important;width:100vw!important;position:fixed!important;inset-block-start:var(--wix-ads-height)!important}.oSs9UC{box-sizing:border-box;width:100%;height:100%;position:absolute;inset-block-start:0;inset-inline-start:0}.UOTM1J{visibility:visible}.xdu0As:not(.mh8_De){background-color:#0000}.vCpC6x{overflow-x:hidden;overflow-y:scroll}.mhdEAw{position:relative}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay]{transition:opacity .4s cubic-bezier(.645,.045,.355,1),visibility linear;opacity:1!important;visibility:visible!important}[data-hamburger-overlay-label]{display:none}[data-prehydration]:has([data-hamburger-toggle]:checked) [data-part=hamburger-overlay] [data-hamburger-overlay-label]{z-index:1;cursor:pointer;display:block;position:absolute;inset:0}.EtmdIW{cursor:pointer}.gpDCD5{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--backdrop-filter:$backdrop-filter}.jv9xi4{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));backdrop-filter:var(--backdrop-filter,none);background-image:var(--bg-gradient,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.StylableHorizontalMenu3372578893__root{-archetype:paddingBox;box-sizing:border-box;width:100%;height:100%;display:flex}.StylableHorizontalMenu3372578893__root *{box-sizing:border-box}.StylableHorizontalMenu3372578893__menu{flex-wrap:var(--menu-flex-wrap,wrap);min-width:-moz-fit-content;min-width:fit-content;display:flex}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menuItem{box-sizing:border-box;height:100%;margin-top:0!important;margin-bottom:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:first-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-start:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu>li:last-of-type .StylableHorizontalMenu3372578893__menuItem{margin-inline-end:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll .StylableHorizontalMenu3372578893__menu{height:auto!important;margin:0!important}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll{scrollbar-width:none;-ms-overflow-style:none;overflow-x:scroll}.StylableHorizontalMenu3372578893__root.StylableHorizontalMenu3372578893---menuMode-6-scroll::-webkit-scrollbar{display:none}.StylableHorizontalMenu3372578893__menuItem{position:relative;--focus-ring-box-shadow:inset 0 0 0 2px #116dff,inset 0 0 0 4px #fff!important}.StylableHorizontalMenu3372578893__megaMenuWrapper{display:flex}.itemDepth02233374943__root{-archetype:paintBox;cursor:pointer;flex:1;text-decoration:none;display:block}.itemDepth02233374943__root.itemDepth02233374943--isHovered,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage,.itemDepth02233374943__root.itemDepth02233374943--isHovered .itemDepth02233374943__label,.itemDepth02233374943__root.itemDepth02233374943--isCurrentPage .itemDepth02233374943__label{transition:all 80ms cubic-bezier(0,0,1,1)}.itemDepth02233374943__container{-archetype:box;align-items:center;height:100%;display:flex}.itemDepth02233374943__label{-archetype:text;-controller-part-type:LayoutChildDisplayDropdown;white-space:nowrap;transition:inherit}.itemDepth02233374943__itemWrapper{flex-grow:inherit}.itemDepth02233374943__positionBox{z-index:var(--position-box-z-index,47);margin:auto;display:none;position:fixed}.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn{position:absolute;left:0;right:0}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched{max-width:unset}@keyframes itemDepth02233374943__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth02233374943__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);max-height:var(--max-height,none);overflow-y:var(--overflow-y,visible);transition:border-color 80ms cubic-bezier(.25,1,.5,1),box-shadow 80ms cubic-bezier(.25,1,.5,1);animation-fill-mode:forwards}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched>.itemDepth02233374943__animationBox{width:100%}.itemDepth02233374943__positionBox.itemDepth02233374943--isStretched .itemDepth02233374943__megaMenuComp{width:100%!important}.itemDepth02233374943__alignBox{display:flex}.itemDepth02233374943__list{column-gap:calc(1px*var(--horizontalSpacing))}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox{visibility:hidden;display:block}.itemDepth02233374943__itemWrapper[data-shown]>.itemDepth02233374943__positionBox{visibility:visible;display:block}.itemDepth02233374943__itemWrapper[data-hovered]>.itemDepth02233374943__positionBox>.itemDepth02233374943__animationBox{animation-name:itemDepth02233374943__fadeIn}.itemDepth02233374943__megaMenuComp{direction:ltr;flex-shrink:0;margin-top:var(--containerMarginTop)!important;padding:0!important}.itemDepth02233374943__itemWrapper:not([data-hovered]) .itemDepth02233374943__megaMenuComp{display:none}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn.itemDepth02233374943--isStretched{display:block;position:fixed!important}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn>.itemDepth02233374943__animationBox{opacity:1}[data-prehydration] .itemDepth02233374943__itemWrapper:hover>.itemDepth02233374943__positionBox.itemDepth02233374943--isColumn .itemDepth02233374943__megaMenuComp{display:block}.itemDepth12472627565__root{-archetype:paintBox;text-decoration:none;display:block;position:relative}.itemDepth12472627565__container{display:flex}.itemDepth12472627565__label{-archetype:text;text-overflow:clip;white-space:var(--white-space);overflow-wrap:var(--label-word-wrap);word-wrap:var(--label-word-wrap);display:block;overflow:hidden;text-align:inherit!important}.itemDepth12472627565__itemWrapper{page-break-inside:avoid;break-inside:avoid;position:relative}.itemDepth12472627565__itemWrapper:after{content:"";clear:both;display:table}.itemDepth12472627565__positionBox{position:var(--subsubmenu-box-position);display:var(--subsubmenu-box-display);top:0;left:var(--subsubmenu-box-left);right:var(--subsubmenu-box-right)}.itemDepth12472627565__positionBox[data-reverted]{left:var(--subsubmenu-box-right);right:var(--subsubmenu-box-left)}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox{display:block}@keyframes itemDepth12472627565__fadeIn{0%{opacity:0}to{opacity:1}}.itemDepth12472627565__animationBox{opacity:0;animation-duration:calc(var(--is-animated)*.1s);animation-delay:calc(var(--is-animated)*50ms);animation-fill-mode:forwards;margin-top:0!important}.itemDepth12472627565__itemWrapper[data-hovered]>.itemDepth12472627565__positionBox>.itemDepth12472627565__animationBox{animation-name:itemDepth12472627565__fadeIn}.submenu815198092__heading .itemDepth12472627565__label{color:#000}.submenu815198092__pageWrapper{margin-left:auto!important;margin-right:auto!important}.submenu815198092__overrideWidth{width:100%!important}.submenu815198092__rowItem:last-child{margin-bottom:0!important}.submenu815198092__rowItem:first-child,.submenu815198092__rowItem+.submenu815198092__rowItem{margin-top:0}.h75ntl{display:var(--navbar-display,block);height:100%}.I9v6Rw:hover{z-index:var(--is-sticky,auto)}.Aj_PK7{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.wZrAIE{min-width:var(--min-width-override);min-height:var(--min-height-override)}.itemShared2352141355__rootContainer{height:100%}.itemShared2352141355__rootContainer.itemShared2352141355--isRow{flex-direction:row;display:flex}.itemShared2352141355__rootContainer.itemShared2352141355--isRow .itemShared2352141355__menuItem{flex-grow:1}.itemShared2352141355__accessibilityIconWrapper{width:0}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isIconShown{width:unset;margin-inline:4px 8px}.itemShared2352141355__accessibilityIconWrapper.itemShared2352141355--isTopLevel.itemShared2352141355--isIconShown{align-items:center;display:flex}.itemShared2352141355__accessibilityIcon{clip:rect(0 0 0 0);clip-path:inset(50%);width:0;height:0}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isIconShown{width:24px;height:24px;clip-path:unset;background:#fff}.itemShared2352141355__accessibilityIcon.itemShared2352141355--isOpen{rotate:180deg}.ScrollButton2305195801__root{-archetype:paddingBox;cursor:pointer;opacity:0;pointer-events:none;justify-content:center;align-items:center;display:flex;overflow:hidden}.ScrollButton2305195801__root:hover{transition:all 80ms cubic-bezier(0,0,1,1)}.ScrollButton2305195801__root.ScrollButton2305195801---side-4-left{transform:scaleX(-1)}.ScrollButton2305195801__root.ScrollButton2305195801--isVisible{opacity:1;pointer-events:auto}.ScrollButton2305195801__icon{-archetype:icon;-controller-part-type:LayoutChildDisplayDropdown;min-width:1px;max-width:100%;max-height:100%}.ScrollButton2305195801__icon>svg{width:inherit;height:inherit}.ScrollControls2015960785__root{padding-top:inherit;padding-bottom:inherit;border:inherit;display:var(--scroll-controls-display,flex);pointer-events:none;border-color:#0000;justify-content:space-between;position:absolute;inset:0}</style> | |
| 192 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[StylableButton_StylableButton].37250527.min.css">.WZxFET{direction:var(--btn-direction);cursor:pointer;min-width:var(--btn-min-width);box-sizing:border-box;touch-action:manipulation;border-left:var(--border-left);border-right:var(--border-right);border-top:var(--border-top);border-bottom:var(--border-bottom);border-top-left-radius:var(--border-top-left-radius);border-top-right-radius:var(--border-top-right-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--border-bottom-right-radius);width:100%;height:100%;min-height:10px;box-shadow:var(--box-shadow);background:var(--background);padding-left:var(--padding-left);padding-right:var(--padding-right);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:block}@media (forced-colors:active){.WZxFET:not(:disabled){outline-offset:0px;outline:2px solid buttontext}.WZxFET:not(:disabled):hover,.WZxFET:not(:disabled)[aria-pressed=true],.WZxFET:not(:disabled)[aria-selected=true],.WZxFET:not(:disabled)[data-preview=selected]{outline-offset:1px;outline:3px solid highlight}.WZxFET:not(:disabled):focus,.WZxFET:not(:disabled):focus-visible{outline-offset:1px;outline:3px solid highlight!important}}.WZxFET.LEgq9n:not(:hover):not(:disabled){border-color:var(--corvid-border-color,initial)}.WZxFET.ANbqd3:not(:hover):not(:disabled){background-color:var(--corvid-background-color,var(--background))}.WZxFET:hover,.WZxFET [data-preview=hover]{border-left:var(--hover-border-left,var(--border-left));border-right:var(--hover-border-right,var(--border-right));border-top:var(--hover-border-top,var(--border-top));border-bottom:var(--hover-border-bottom,var(--border-bottom));border-top-left-radius:var(--hover-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--hover-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--hover-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--hover-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--hover-box-shadow,var(--box-shadow));background:var(--hover-background,var(--background));padding-left:var(--hover-padding-left,var(--padding-left));padding-right:var(--hover-padding-right,var(--padding-right));padding-top:var(--hover-padding-top,var(--padding-top));padding-bottom:var(--hover-padding-bottom,var(--padding-bottom))}.WZxFET.QHgQsb:hover:not(:disabled){border-color:var(--corvid-hover-border-color,initial)}.WZxFET.YXO83s:hover:not(:disabled){background-color:var(--corvid-hover-background-color,var(--hover-background,var(--background)))}.WZxFET:disabled,.WZxFET [data-preview=disabled]{cursor:default;border-left:var(--disabled-border-left,var(--border-left));border-right:var(--disabled-border-right,var(--border-right));border-top:var(--disabled-border-top,var(--border-top));border-bottom:var(--disabled-border-bottom,var(--border-bottom));border-top-left-radius:var(--disabled-border-top-left-radius,var(--border-top-left-radius));border-top-right-radius:var(--disabled-border-top-right-radius,var(--border-top-right-radius));border-bottom-left-radius:var(--disabled-border-bottom-left-radius,var(--border-bottom-left-radius));border-bottom-right-radius:var(--disabled-border-bottom-right-radius,var(--border-bottom-right-radius));box-shadow:var(--disabled-box-shadow,var(--box-shadow));background:var(--disabled-background,var(--background));padding-left:var(--disabled-padding-left,var(--padding-left));padding-right:var(--disabled-padding-right,var(--padding-right));padding-top:var(--disabled-padding-top,var(--padding-top));padding-bottom:var(--disabled-padding-bottom,var(--padding-bottom))}.WZxFET.Pl_R65:disabled:not(:hover){border-color:var(--corvid-disabled-border-color,initial)}.WZxFET.qSNL2N:disabled:not(:hover){background-color:var(--corvid-disabled-background-color,var(--disabled-background,var(--background)))}.QeinDR{display:var(--label-display);font:var(--font,var(--font_8));color:var(--color);letter-spacing:var(--letter-spacing);line-height:var(--line-height);text-decoration-line:var(--text-decoration);direction:var(--direction);text-align:var(--text-align,revert);background-color:var(--text-highlight,transparent);text-transform:var(--text-transform);text-shadow:var(--text-outline),var(--text-shadow);overflow:var(--overflow,hidden);text-overflow:var(--label-text-overflow);white-space:var(--label-white-space);min-width:1.8em;max-width:100%;transition:inherit}.WZxFET.xXDwXs:not(:hover):not(:disabled) .QeinDR{color:var(--corvid-color,var(--color))}.WZxFET:hover .QeinDR,.WZxFET [data-preview=hover] .QeinDR{display:var(--hover-label-display,var(--label-display));font:var(--hover-font,var(--font));color:var(--hover-color,var(--color));letter-spacing:var(--hover-letter-spacing,var(--letter-spacing));line-height:var(--hover-line-height,var(--line-height));text-decoration-line:var(--hover-text-decoration,var(--text-decoration));direction:var(--hover-direction,var(--direction));text-align:var(--hover-text-align,var(--text-align,revert));background-color:var(--hover-text-highlight,var(--text-highlight,transparent));text-transform:var(--hover-text-transform,var(--text-transform));text-shadow:var(--hover-text-outline,var(--text-outline)),var(--hover-text-shadow,var(--text-shadow))}.WZxFET.DEbY45:hover:not(:disabled) .QeinDR{color:var(--corvid-hover-color,var(--hover-color,var(--color)))}.WZxFET:disabled .QeinDR,.WZxFET [data-preview=disabled] .QeinDR{display:var(--disabled-label-display,var(--label-display));font:var(--disabled-font,var(--font));color:var(--disabled-color,var(--color));letter-spacing:var(--disabled-letter-spacing,var(--letter-spacing));line-height:var(--disabled-line-height,var(--line-height));text-decoration-line:var(--disabled-text-decoration,var(--text-decoration));direction:var(--disabled-direction,var(--direction));text-align:var(--disabled-text-align,var(--text-align,revert));background-color:var(--disabled-text-highlight,var(--text-highlight,transparent));text-transform:var(--disabled-text-transform,var(--text-transform));text-shadow:var(--disabled-text-outline,var(--text-outline)),var(--disabled-text-shadow,var(--text-shadow))}.WZxFET.liVS6k:disabled:not(:hover) .QeinDR{color:var(--corvid-disabled-color,var(--disabled-color,var(--color)))}.OOhWpA{box-sizing:border-box;color:#000;text-decoration:none}.UPWJFm{justify-content:var(--container-justify-content);flex-basis:auto;flex-direction:var(--container-flex-direction);align-items:var(--container-align-items);gap:var(--content-gap,"0px");flex-grow:1;width:100%;height:100%;transition:all .4s,visibility;display:flex;overflow:hidden}.vwUNxR{min-width:1px;display:var(--icon-display);width:var(--icon-size);height:var(--icon-size);fill:var(--icon-color);flex-shrink:0;order:var(--icon-order,0);transform:rotate(var(--icon-rotation));transition:inherit}.WZxFET.PlqraU:not(:hover):not(:disabled) .vwUNxR{fill:var(--corvid-icon-color,var(--icon-color))}.WZxFET:hover .vwUNxR,.WZxFET [data-preview=hover] .vwUNxR{display:var(--hover-icon-display,var(--icon-display));width:var(--hover-icon-size,var(--icon-size));height:var(--hover-icon-size,var(--icon-size));fill:var(--hover-icon-color,var(--icon-color));transform:rotate(var(--hover-icon-rotation,var(--icon-rotation)))}.WZxFET.jEsvuh:hover:not(:disabled) .vwUNxR{fill:var(--corvid-hover-icon-color,var(--hover-icon-color,var(--icon-color)))}.WZxFET:disabled .vwUNxR,.WZxFET [data-preview=disabled] .vwUNxR{display:var(--disabled-icon-display,var(--icon-display));width:var(--disabled-icon-size,var(--icon-size));height:var(--disabled-icon-size,var(--icon-size));fill:var(--disabled-icon-color,var(--icon-color));transform:rotate(var(--disabled-icon-rotation,var(--icon-rotation)))}.WZxFET.xcGqHs:disabled:not(:hover) .vwUNxR{fill:var(--corvid-disabled-icon-color,var(--disabled-icon-color,var(--icon-color)))}.vwUNxR>span,.vwUNxR svg{width:inherit;height:inherit;display:flex}@media (forced-colors:active){.vwUNxR,.vwUNxR svg,.vwUNxR svg *{fill:currentColor!important;stroke:currentColor!important}}</style> | |
| 193 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[ComboBoxInputListModal].80f46385.min.css">.HFooX6{--force-state-metadata:hovered}.iRk8ds{font:var(--dropdownListFont,var(--font_1));background-color:rgba(var(--dropdownListBackgroundColor,var(--color_1,color_1)),var(--alpha-dropdownListBackgroundColor,1));border-color:rgba(var(--dropdownListStrokeColor,var(--color_2,color_2)),var(--alpha-dropdownListStrokeColor,1));border-radius:var(--dropdownListBorderRadius,0px);border-width:var(--dropdownListStrokeWidth,0px);box-shadow:var(--dropdownListBoxShadow,none);direction:var(--direction);border-style:solid;height:100%!important;width:initial!important}.iRk8ds .VGi_35{border-radius:inherit;max-height:calc((var(--optionLineHeight,1.3em) + var(--dropdownItemsSpacing,12px))*6);overscroll-behavior:contain;background-color:#0000;overflow-x:hidden;overflow-y:auto}.iRk8ds .VGi_35 .wWQK7H{height:var(--optionLineHeight,1.3em);color:rgb(var(--dropdownListTextColor,var(--color_2,color_2)));justify-content:var(--dropdownOptionJustifyContent);cursor:pointer;padding-top:calc(var(--dropdownItemsSpacing,12px)/2);padding-bottom:calc(var(--dropdownItemsSpacing,12px)/2);direction:var(--dropdownDirection,"inherit");background-color:#0000;flex-wrap:nowrap;align-items:center;transition:background-color .5s;display:flex}.iRk8ds .VGi_35 .wWQK7H.HFooX6{background-color:rgba(var(--dropdownListHoverBackgroundColor,var(--color_7,color_7)),var(--alpha-dropdownListHoverBackgroundColor,1));color:rgb(var(--dropdownListHoverTextColor,var(--color_2,color_2)))}.iRk8ds .VGi_35 .wWQK7H:focus{--focus-ring-box-shadow:none!important}.iRk8ds .VGi_35 .wWQK7H .O8hkKm{white-space:nowrap;text-overflow:ellipsis;padding-inline-start:var(--textPaddingDropDown_start);padding-inline-end:var(--textPaddingDropDown_end);line-height:normal;overflow:hidden}</style> | |
| 194 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt_bootstrap-responsive.4e8a21db.min.css">.H4AHlN{clip-path:inset(50%);width:24px;height:24px;position:absolute}.H4AHlN:focus,.H4AHlN:active{clip-path:unset;top:50%;right:0;transform:translateY(-50%)}.H4AHlN.Ln3X5V{transform:translateY(-50%)rotate(180deg)}.RHcakQ,.CUYeWp{height:100%;width:initial;box-sizing:border-box;position:relative;overflow:visible}.RHcakQ[data-state~=header] a,[data-state~=header].CUYeWp a,.RHcakQ[data-state~=header] div,[data-state~=header].CUYeWp div{cursor:default!important}.RHcakQ .qMvpu5,.CUYeWp .qMvpu5{width:100%;height:100%;display:inline-block}.CUYeWp{display:var(--display);--display:inline-block;cursor:pointer;font:var(--fnt,var(--font_1))}.CUYeWp .EWeavx{padding:0 var(--pad,5px)}.CUYeWp .wGxoBM{color:rgb(var(--txt,var(--color_15,color_15)));transition:var(--trans,color .4s ease 0s);padding:0 10px;display:inline-block}.CUYeWp[data-state~=drop]{width:100%;display:block}.CUYeWp[data-state~=drop] .wGxoBM{padding:0 .5em}.CUYeWp[data-state~=over] .wGxoBM,.CUYeWp[data-state~=link]:hover .wGxoBM{color:rgb(var(--txth,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.CUYeWp[data-state~=selected] .wGxoBM{color:rgb(var(--txts,var(--color_14,color_14)));transition:var(--trans,color .4s ease 0s)}.H5oXMS{overflow-x:hidden}.H5oXMS .nzOiVF{flex-direction:column;width:100%;height:100%;display:flex}.H5oXMS .nzOiVF .sPUR9o{flex:1}.H5oXMS .nzOiVF .U7fR3t{width:calc(100% - (var(--menuTotalBordersX,0px)));height:calc(100% - (var(--menuTotalBordersY,0px)));white-space:nowrap;overflow:visible}.H5oXMS .nzOiVF .U7fR3t .CSt_RJ,.H5oXMS .nzOiVF .U7fR3t .NgQZsf{direction:var(--menu-direction);text-align:var(--menu-align,var(--align));display:inline-block}.H5oXMS .nzOiVF .U7fR3t .NV2Ozs{width:100%;display:block}.H5oXMS .dva_z0{z-index:99999;opacity:1;text-align:var(--submenus-align,var(--align));direction:var(--submenus-direction);display:block}.H5oXMS .dva_z0 .fYO6yN{display:inherit;white-space:nowrap;width:auto;visibility:inherit;overflow:visible}.H5oXMS .dva_z0.mmODQd{visibility:visible;transition:visibility 0s .2s}.H5oXMS .dva_z0 .NgQZsf{display:inline-block}.H5oXMS .YStAo7{display:none}.MV6Z4B>nav{position:absolute;inset:0}.MV6Z4B .U7fR3t{position:absolute}.MV6Z4B .dva_z0{visibility:hidden;margin-top:7px;position:absolute}.MV6Z4B .dva_z0[data-dropMode="dropUp"]{margin-top:0;margin-bottom:7px}.MV6Z4B .fYO6yN{background-color:rgba(var(--bgDrop,var(--color_11,color_11)),var(--alpha-bgDrop,1));border-radius:var(--rd,0);box-shadow:var(--shd,0 1px 4px #0009)}.ETqrjz .g0IvTF{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));position:absolute;inset:0;overflow:hidden}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}</style> | |
| 195 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Section].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 196 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[RefComponent].98cd6e5f.min.css">.S829f_{pointer-events:var(--ref-container-pointer-events)!important}.S829f_>*{pointer-events:auto}</style> | |
| 197 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Container_ResponsiveBox].c25ed6c0.min.css">.EtmdIW{cursor:pointer}.HFEOE3{--container-corvid-border-color:rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1));--container-corvid-border-size:var(--brw,1px);--container-corvid-background-color:var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));--overflow-wrapper-border-radius:var(--rd);--backdrop-filter:$backdrop-filter}.NaeT1r{box-shadow:none!important;background:0 0!important;border:none!important}.NYfD3h{border:var(--container-corvid-border-width,var(--brw,1px))solid var(--container-corvid-border-color,rgba(var(--brd,var(--color_15,color_15)),var(--alpha-brd,1)));background-color:var(--container-corvid-background-color,var(--background,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));background-image:var(--bg-gradient,none);backdrop-filter:var(--backdrop-filter,none);border-radius:var(--rd,5px);box-shadow:var(--shd,0 1px 4px #0009);position:absolute;inset:0}.jdJeEr{width:unset!important;min-width:unset!important;max-width:unset!important;height:unset!important;min-height:unset!important;max-height:unset!important;z-index:unset!important;margin:0!important;padding:0!important;position:absolute!important;inset:0!important}</style> | |
| 198 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[FooterSection].34d022c0.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}</style> | |
| 199 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[MenuContainer_Responsive].a710ff33.min.css">.vO4l6e{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}.vO4l6e.Wy7QN0{opacity:1;visibility:visible}.vO4l6e[data-undisplayed=true]{display:none}.vO4l6e:not([data-is-mesh]) .mTXgrW,.vO4l6e:not([data-is-mesh]) ._Cv0fj{position:absolute;inset:0}.F02QWW{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.F02QWW.boScYg{display:none}body.device-mobile-optimized .F02QWW,:host(.device-mobile-optimized) .F02QWW{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.boScYg,:host(.device-mobile-optimized) .vO4l6e.boScYg{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized .vO4l6e.cdbKA3,:host(.device-mobile-optimized) .vO4l6e.cdbKA3{height:100vh}body:not(.device-mobile-optimized) .vO4l6e.cdbKA3,:host(:not(.device-mobile-optimized)) .vO4l6e.cdbKA3{height:100vh}.KX5JJ6.cdbKA3{height:calc(var(--menu-height) - var(--wix-ads-height))}.KX5JJ6.cdbKA3>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}.vO4l6e.cdbKA3{top:0}.vO4l6e.B_nptD{z-index:calc(var(--above-all-z-index) - 1)}._Cv0fj{height:100%}.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}._TdTo8{-webkit-tap-highlight-color:#0000;opacity:0;visibility:hidden}._TdTo8.mYq8K5{opacity:1;visibility:visible}._TdTo8[data-undisplayed=true]{display:none}._TdTo8:not([data-is-mesh]) ._SG1a6,._TdTo8:not([data-is-mesh]) .V1WvhC{position:absolute;inset:0}.KyTZlx{background-color:rgba(var(--bg,var(--color_15,color_15)),var(--alpha-bg,1));width:100%;height:100%;display:initial;opacity:0;position:fixed;top:0;left:0}.KyTZlx.rL1cmJ{display:none}body.device-mobile-optimized .KyTZlx,:host(.device-mobile-optimized) .KyTZlx{height:100vh;width:var(--screen-width);left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.rL1cmJ,:host(.device-mobile-optimized) ._TdTo8.rL1cmJ{left:calc((100% - var(--screen-width))/2)}body.device-mobile-optimized ._TdTo8.ci1BOD,:host(.device-mobile-optimized) ._TdTo8.ci1BOD{height:100vh}body:not(.device-mobile-optimized) ._TdTo8.ci1BOD,:host(:not(.device-mobile-optimized)) ._TdTo8.ci1BOD{height:100vh}.dz6k8U.ci1BOD{height:calc(var(--menu-height) - var(--wix-ads-height))}.dz6k8U.ci1BOD>:first-child{height:calc(var(--menu-height) - var(--wix-ads-height));margin-top:var(--wix-ads-height)}._TdTo8.ci1BOD{top:0}.qINwWP{background-color:rgba(var(--containerBackground,var(--color_11,color_11)),var(--alpha-containerBackground,1));position:absolute;inset:0}.dz6k8U,.V1WvhC{height:100%}</style> | |
| 200 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[HeaderSection].cdbd0494.min.css">.Qh0lWW{width:100%;height:100%;display:block}.Qh0lWW img{max-width:var(--wix-img-max-width,100%)}.Qh0lWW[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.Qh0lWW[data-animate-blur] img[data-load-done]{filter:none}.sFiSiq{width:100%;height:100%;display:block}.aDzdcC{clip-path:var(--fill-layer-clip)}.aDzdcC,.rv3vOe{width:100%;height:100%;position:absolute;top:0}.dnHU4q img{width:100%;height:100%}.X9nqm0{opacity:0;position:absolute;top:0}.ZUV7Qj{width:0;height:0;position:absolute;top:0;left:0;overflow:hidden}.UZsu9f{position:var(--fill-layer-background-media-position);pointer-events:var(--fill-layer-background-media-pointer-events);width:100%;height:100%;top:0;left:0}.WnIl2C,.OAmk_6{width:100%;height:100%;top:0}.OAmk_6{position:absolute}.WnIl2C{background-color:var(--fill-layer-background-overlay-color);position:var(--fill-layer-background-overlay-position);opacity:var(--fill-layer-background-overlay-blend-opacity-fallback,1);transform:var(--fill-layer-background-overlay-transform)}@supports (mix-blend-mode:overlay){.WnIl2C{mix-blend-mode:var(--fill-layer-background-overlay-blend-mode);opacity:var(--fill-layer-background-overlay-blend-opacity,1)}}.QG9w8P.WIIr02{clip:rect(0px,auto,auto,0px)}.QG9w8P .ayCf9D{width:100%;height:100%;position:absolute;top:0}.QG9w8P .fO4mKs{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P .fO4mKs img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.WIIr02{clip:auto;-webkit-clip-path:inset(0)}}.ROWgFb{height:100%}.xSZeaB,.g4gDzl{opacity:var(--fill-layer-video-opacity)}.Ulxuud{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.NgeJ4N{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.g4gDzl{width:100%;height:100%;position:relative}.bzwgbw{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.bzwgbw .fO4mKs,.bzwgbw .g4gDzl,.bzwgbw .xSZeaB{opacity:1}.ejT4cR{--divider-pin-height__:min(1,calc(var(--divider-layers-pin-factor__) + 1));--divider-pin-layer-height__:var(--divider-layers-pin-factor__);--divider-pin-border__:min(1,calc(var(--divider-layers-pin-factor__)/-1 + 1));width:100%;height:calc(var(--divider-height__) + var(--divider-pin-height__)*var(--divider-layers-size__)*var(--divider-layers-y__));position:absolute;left:0}.ejT4cR .Mj2wZE{--divider-layer-i__:var(--divider-layer-i,0);width:100%;height:calc(var(--divider-height__) + var(--divider-pin-layer-height__)*var(--divider-layer-i__)*var(--divider-layers-y__));opacity:calc(1 - var(--divider-layer-i__)/(var(--divider-layer-i__) + 1));background-repeat:repeat-x;background-position:left calc(50% + var(--divider-offset-x__) + var(--divider-layers-x__)*var(--divider-layer-i__))bottom;border-bottom-width:calc(var(--divider-pin-border__)*var(--divider-layer-i__)*var(--divider-layers-y__));border-bottom-style:solid;position:absolute;left:0}.urGCgL{--divider-height__:var(--divider-top-height,auto);--divider-offset-x__:var(--divider-top-offset-x,0px);--divider-layers-size__:var(--divider-top-layers-size,0);--divider-layers-y__:var(--divider-top-layers-y,0px);--divider-layers-x__:var(--divider-top-layers-x,0px);--divider-layers-pin-factor__:var(--divider-top-layers-pin-factor,0);transform:var(--divider-top-flip,scaleY(-1));opacity:var(--divider-top-opacity,1);border-top:var(--divider-top-padding,0)solid var(--divider-top-color,currentColor);top:0}.urGCgL .Mj2wZE{border-color:var(--divider-top-color,currentColor);background-image:var(--divider-top-image,none);background-size:var(--divider-top-size,contain);filter:var(--divider-top-filter,none);bottom:0}.urGCgL .Mj2wZE[data-divider-layer="1"]{display:var(--divider-top-layer-1-display,block)}.urGCgL .Mj2wZE[data-divider-layer="2"]{display:var(--divider-top-layer-2-display,block)}.urGCgL .Mj2wZE[data-divider-layer="3"]{display:var(--divider-top-layer-3-display,block)}.yIAE9q{--divider-height__:var(--divider-bottom-height,auto);--divider-offset-x__:var(--divider-bottom-offset-x,0px);--divider-layers-size__:var(--divider-bottom-layers-size,0);--divider-layers-y__:var(--divider-bottom-layers-y,0px);--divider-layers-x__:var(--divider-bottom-layers-x,0px);--divider-layers-pin-factor__:var(--divider-bottom-layers-pin-factor,0);transform:var(--divider-bottom-flip,none);opacity:var(--divider-bottom-opacity,1);border-bottom:var(--divider-bottom-padding,0)solid var(--divider-bottom-color,currentColor);bottom:0}.yIAE9q .Mj2wZE{border-color:var(--divider-bottom-color,currentColor);background-image:var(--divider-bottom-image,none);background-size:var(--divider-bottom-size,contain);filter:var(--divider-bottom-filter,none);bottom:0}.yIAE9q .Mj2wZE[data-divider-layer="1"]{display:var(--divider-bottom-layer-1-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="2"]{display:var(--divider-bottom-layer-2-display,block)}.yIAE9q .Mj2wZE[data-divider-layer="3"]{display:var(--divider-bottom-layer-3-display,block)}.ke5pl1,.Dkb_qa{background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))}.ke5pl1>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))))}.w2JesW{transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.w2JesW.BjOAZh{transition-property:var(--transition-property),visibility;visibility:visible}.w2JesW.VHnL1N{transform:var(--scrolled-transform)translateY(calc(-1*var(--padding-top,0px)))}.w2JesW.EO98vq{opacity:var(--scrolled-opacity)}.w2JesW.EO98vq.BjOAZh{visibility:hidden;transition-delay:var(--transition-delay),calc(var(--transition-duration) + var(--transition-delay))}.w2JesW.NXBn1M{transition-delay:0s}.w2JesW.NXBn1M.BjOAZh{visibility:visible}.QG9w8P{width:100%;height:100%;-webkit-mask-image:var(--mask-image,none);mask-image:var(--mask-image,none);-webkit-mask-position:var(--mask-position,0);mask-position:var(--mask-position,0);-webkit-mask-size:var(--mask-size,100%);mask-size:var(--mask-size,100%);-webkit-mask-repeat:var(--mask-repeat,no-repeat);mask-repeat:var(--mask-repeat,no-repeat);pointer-events:var(--fill-layer-background-media-pointer-events);position:absolute;top:0;left:0;overflow:hidden}.QG9w8P.CrIOZj{clip:rect(0px,auto,auto,0px)}.QG9w8P .F6dXKW{width:100%;height:100%;position:absolute;top:0}.QG9w8P ._gD9B7{opacity:var(--fill-layer-image-opacity);height:var(--fill-layer-image-height,100%)}.QG9w8P ._gD9B7 img{width:100%;height:100%}@supports ((-webkit-hyphens:none)){.QG9w8P.CrIOZj{clip:auto;-webkit-clip-path:inset(0)}}.Njdfgu{height:100%}.LNYVZi{background-color:var(--bg-overlay-color);background-image:var(--bg-gradient);transition:var(--inherit-transition)}.FlTEtY,.D6Ehqq{opacity:var(--fill-layer-video-opacity)}.U8aRUE{width:100%;height:var(--media-padding-height);top:var(--media-padding-top);bottom:var(--media-padding-bottom);position:absolute}.a8Mxnk{transform:scale(var(--scale,1));transition:var(--transform-duration,transform 0s)}.D6Ehqq{width:100%;height:100%;position:relative}wix-media-canvas{height:100%;display:block}.dZP7lJ{opacity:var(--fill-layer-video-opacity,var(--fill-layer-image-opacity,1))}.dZP7lJ ._gD9B7,.dZP7lJ .D6Ehqq,.dZP7lJ .FlTEtY{opacity:1}.Lnr3dj,.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,var(--bg-overlay-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1))));transition-delay:var(--transition-delay);transition-duration:var(--transition-duration);transition-timing-function:var(--transition-timing-function);transition-property:var(--transition-property)}.aBo_xL.Lnr3dj,.aBo_xL.Lnr3dj>.QG9w8P .LNYVZi{background-color:var(--section-corvid-background-color,rgba(var(--bg-scrl,var(--color_11,color_11)),var(--alpha-bg-scrl,1)))}.fwXYgt:hover .HTT0h5{pointer-events:auto;clip:auto;opacity:1}.HTT0h5{box-sizing:border-box;z-index:9999;color:#000;pointer-events:none;clip:rect(0 0 0 0);opacity:0;background-color:#fff;border-radius:50%;outline:1px solid #000;align-items:center;justify-items:center;width:24px;height:24px;transition:all .2s ease-in-out;display:grid;position:absolute;bottom:3px;right:3px}.HTT0h5:focus,.HTT0h5:hover,.HTT0h5:active{pointer-events:auto;clip:auto;opacity:1}.Vs_TJq{z-index:1;position:relative}.yEgiaI{margin-top:var(--padding-top,0);margin-right:var(--padding-right,0);margin-bottom:var(--padding-bottom,0);margin-left:var(--padding-left,0)}</style> | |
| 201 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[Repeater_Responsive].4a747053.min.css">.ku1hVK{border-radius:var(--overflow-wrapper-border-radius)}.ArRNfA{--container-corvid-background-color:rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1));--container-corvid-border-color:rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0));direction:var(--wix-opt-in-direction,ltr);background-color:var(--container-corvid-background-color,rgba(var(--bg,var(--color_11,color_11)),var(--alpha-bg,1)));border-style:solid;border-color:var(--container-corvid-border-color,rgba(var(--borderColor,0,0,0),var(--alpha-borderColor,0)));background-image:var(--bg-gradient,none);box-shadow:var(--boxShadow,0 0 0 #0000);border-width:var(--borderWidth,0px);border-radius:var(--borderRadius,0)}</style> | |
| 202 | +<style data-href="https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/rb_wixui.thunderbolt[PageSections].7dbf3cd4.min.css">.ooGRUo{display:contents}</style> | |
| 203 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css">.chBh7{overflow:hidden}.UkML6{width:100%;height:100%;position:relative;overflow:hidden}.UkML6:-webkit-full-screen{min-height:auto!important}.UkML6:-moz-full-screen{min-height:auto!important}.UkML6:fullscreen{min-height:auto!important}.mqeQ0{visibility:hidden} | |
| 204 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/TPABaseComponent.88cd9698.chunk.min.css.map*/</style> | |
| 205 | +<style data-href="https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css">.QrIus{height:auto!important}.bsFmQ{overflow:hidden!important} | |
| 206 | +/*# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/group_7.c472a333.chunk.min.css.map*/</style> | |
| 207 | +<title>CONDO 4 1/2 À LOUER</title> | |
| 208 | + <meta name="description" content="4c23d084-7a89-4895-b6de-35ea4eafcd24"/> | |
| 209 | + <link rel="canonical" href="https://www.leshabitationssf.com/copy-of-location/condo-4-1%2F2-%C3%A0-louer"/> | |
| 210 | + <meta name="robots" content="index"/> | |
| 211 | + <meta property="og:title" content="CONDO 4 1/2 À LOUER"/> | |
| 212 | + <meta property="og:description" content="4c23d084-7a89-4895-b6de-35ea4eafcd24"/> | |
| 213 | + <meta property="og:image" content="https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fill/w_2048,h_1365,al_c,q_90/467782060_10161784445555673_7466571689321969760_n.jpg"/> | |
| 214 | + <meta property="og:image:width" content="2048"/> | |
| 215 | + <meta property="og:image:height" content="1365"/> | |
| 216 | + <meta property="og:url" content="https://www.leshabitationssf.com/copy-of-location/condo-4-1%2F2-%C3%A0-louer"/> | |
| 217 | + <meta property="og:site_name" content="SF Habitations"/> | |
| 218 | + <meta property="og:type" content="website"/> | |
| 219 | + <script type="application/ld+json">{}</script> | |
| 220 | + <script type="application/ld+json">{}</script> | |
| 221 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/condo-4-1%2F2-%C3%A0-louer" hreflang="x-default"/> | |
| 222 | + <link rel="alternate" href="https://www.leshabitationssf.com/en/copy-of-location/condo-4-1%2F2-%C3%A0-louer" hreflang="en-us"/> | |
| 223 | + <link rel="alternate" href="https://www.leshabitationssf.com/copy-of-location/condo-4-1%2F2-%C3%A0-louer" hreflang="fr-ca"/> | |
| 224 | + <meta name="google-site-verification" content="10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM"/> | |
| 225 | + <meta name="twitter:card" content="summary_large_image"/> | |
| 226 | + <meta name="twitter:title" content="CONDO 4 1/2 À LOUER"/> | |
| 227 | + <meta name="twitter:description" content="4c23d084-7a89-4895-b6de-35ea4eafcd24"/> | |
| 228 | + <meta name="twitter:image" content="https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fill/w_2048,h_1365,al_c,q_90/467782060_10161784445555673_7466571689321969760_n.jpg"/> | |
| 229 | +<script>;(function(){function isSamePageAnchor(e){let t=e.target,r=t&&t.closest&&t.closest("a[data-anchor]");if(!r||"_blank"===r.getAttribute("target"))return!1;let a=r.getAttribute("href");if(!a)return!1;try{let e=new URL(a,location.href);return e.origin===location.origin&&e.pathname===location.pathname}catch(e){return!1}};var guard=(function preventSamePageAnchorReloadBeforeHydration(e){e.metaKey||e.ctrlKey||isSamePageAnchor(e)&&e.preventDefault()});window.__tbAnchorGuard=guard;document.addEventListener('click',guard,true)})();</script> | |
| 230 | +<script type="speculationrules">{"prefetch":[{"tag":"mpa-prefetch-eager","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":"/copy-of-location/condo-4-1%2F2-%C3%A0-louer"}}]},"eagerness":"eager"}]}</script> | |
| 231 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidget.min.css">.sSAtY3z.ofOhStR--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.squ26My{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.stbqc1u.oJ8EvyQ--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.Q8TtId{padding:0;position:relative}.Q8TtId>svg{bottom:0;left:0;position:absolute!important;right:0;top:0}.aZhaoZ{opacity:0}.s1dvzA{display:block;outline:none;text-decoration:none;width:100%}.s1dvzA,.s1dvzA svg{overflow:visible}.js-focus-visible .s1dvzA:focus{box-shadow:none;position:relative}.js-focus-visible .s1dvzA:focus:after{box-shadow:inset 0 0 1px 1px #3899ec,inset 0 0 0 2px hsla(0,0%,100%,.9);content:"";height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.s1dvzA circle,.s1dvzA path,.s1dvzA polygon,.s1dvzA polyline,.s1dvzA rect{fill:rgb(var(--cartWidget_cartIcon,var(--wix-color-8)))}.s1dvzA text{fill:rgb(var(--cartWidget_cartIconText,var(--wix-color-8)));font:var(--cartWidget_cartIconTextFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-1)));font:var(--cartWidget_cartIconNumberFont,var(--wix-font-Body-M));font-size:90px}.s1dvzA .uxskpx.M846Y_{fill:rgba(var(--cartWidget_cartIconNumber,var(--wix-color-8)))}.s1dvzA .ptVJi9{fill:rgba(var(--cartWidget_cartIconBubble,var(--wix-color-8)))}.tx4Jvn text.uxskpx{font-size:50px!important}.tx4Jvn.qZfbbY .uxskpx{font-size:45px!important}.tx4Jvn.fzGViX .uxskpx{font-size:37px!important}.DRb0Pe.qZfbbY .uxskpx{font-size:80px!important}.DRb0Pe.fzGViX .uxskpx{font-size:58px!important}.WWgVyT.qZfbbY .uxskpx{font-size:60px!important}.WWgVyT.fzGViX .uxskpx{font-size:45px!important}.XPTyZQ.qZfbbY .uxskpx{font-size:60px!important}.XPTyZQ.fzGViX .uxskpx{font-size:40px!important}.KpNISr.qZfbbY .uxskpx{font-size:70px!important}.KpNISr.fzGViX .uxskpx{font-size:60px!important}.l3royO.qZfbbY .uxskpx{font-size:80px!important}.l3royO.fzGViX .uxskpx{font-size:60px!important}.hAeODa.qZfbbY .uxskpx{font-size:75px}.hAeODa.fzGViX .uxskpx{font-size:55px}.spQjTI.qZfbbY .uxskpx{font-size:75px!important}.spQjTI.fzGViX .uxskpx{font-size:59px!important}.yA1DNe.qZfbbY .uxskpx{font-size:80px!important}.yA1DNe.fzGViX .uxskpx{font-size:65px!important}.Rl4inp.qZfbbY .uxskpx{font-size:75px!important}.Rl4inp.fzGViX .uxskpx{font-size:60px!important}.of9Ja5.qZfbbY .uxskpx{font-size:80px!important}.of9Ja5.fzGViX .uxskpx{font-size:60px!important}</style> | |
| 232 | +<style rel="stylesheet" data-href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidget.min.css">.sWmh0WA{position:relative;width:100%}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-6-center img{object-position:center center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-4-left img{object-position:left center!important}.sWmh0WA.ovORhXe---imageResize-7-contain.ovORhXe---imageAlignment-5-right img{object-position:right center!important}.s__0oqQvY{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.sQHoZUY.orM9hcb--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.slGztSx{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}@media (forced-colors:active){.slGztSx{border:1px solid ButtonText!important}.slGztSx:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sMnC5St,.slGztSx:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sMnC5St{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formNextButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formNextButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formNextButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formNextButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formNextButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formNextButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formNextButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formNextButtonFontHover-style,var(--wix-forms-formNextButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formNextButtonFontHover-weight,var(--wix-forms-formNextButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formNextButtonFontHover-text-decoration,var(--wix-forms-formNextButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formNextButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formNextButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formNextButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formNextButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formNextButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formNextButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formNextButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formNextButtonBorderRadius);margin-left:auto}.sVmrY5m{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColor-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}@media (forced-colors:active){.sVmrY5m{border:1px solid ButtonText!important}.sVmrY5m:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sVmrY5m:not(:focus-visible):hover,.s__5lI9gM{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.s__5lI9gM{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formPreviousButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formPreviousButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formPreviousButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formPreviousButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formPreviousButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formPreviousButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formPreviousButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFont-weight);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formPreviousButtonFontHover-style,var(--wix-forms-formPreviousButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formPreviousButtonFontHover-weight,var(--wix-forms-formPreviousButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formPreviousButtonFontHover-text-decoration,var(--wix-forms-formPreviousButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formPreviousButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formPreviousButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formPreviousButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formPreviousButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formPreviousButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formPreviousButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formPreviousButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formPreviousButtonBorderRadius)}.sYP_tlR{--wbu-color-blue-0:#0f2ccf;--wbu-color-blue-100:#2f5dff;--wbu-color-blue-200:#597dff;--wbu-color-blue-300:#acbeff;--wbu-color-blue-400:#d5dfff;--wbu-color-blue-500:#eaefff;--wbu-color-blue-600:#f5f7ff;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#a8a6a5;--wbu-color-black-500:#e0dfdf;--wbu-color-black-600:#f1f0ef;--wbu-color-red-0:#9c2426;--wbu-color-red-100:#df3336;--wbu-color-red-200:#e55c5e;--wbu-color-red-300:#ed8f90;--wbu-color-red-400:#f4b8b9;--wbu-color-red-500:#f9d6d7;--wbu-color-red-600:#fcebeb;--wbu-color-green-0:#0d4f3d;--wbu-color-green-100:#4b916d;--wbu-color-green-200:#97c693;--wbu-color-green-300:#bde2a7;--wbu-color-green-400:#daf3c0;--wbu-color-green-500:#effae5;--wbu-color-green-600:#f1f5ed;--wbu-color-yellow-0:#d49341;--wbu-color-yellow-100:#f9ad4d;--wbu-color-yellow-200:#fabd71;--wbu-color-yellow-300:#fcd29d;--wbu-color-yellow-400:#fdead2;--wbu-color-yellow-500:#fef3e5;--wbu-color-yellow-600:#fef6ed;--wbu-color-orange-0:#ae3e09;--wbu-color-orange-100:#ff8044;--wbu-color-orange-200:#fe9361;--wbu-color-orange-300:#fda77f;--wbu-color-orange-400:#fbcfbb;--wbu-color-orange-500:#fbe3d9;--wbu-color-orange-600:#fdf1ec;--wbu-color-purple-0:#5000aa;--wbu-color-purple-100:#7200f3;--wbu-color-purple-200:#8b2df5;--wbu-color-purple-300:#be89f9;--wbu-color-purple-400:#d7b7fb;--wbu-color-purple-500:#f1e5fe;--wbu-color-purple-600:#f8f2ff;--wbu-color-ai-0:#4d3dd0;--wbu-color-ai-100:#5a48f5;--wbu-color-ai-200:#7b6df7;--wbu-color-ai-300:#a59bfa;--wbu-color-ai-400:#d6d1fc;--wbu-color-ai-500:#e7e4fe;--wbu-color-ai-600:#eeecfe;--wbu-heading-font-stack:"Madefor Display","Helvetica Neue",Helvetica,Arial,"\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA","meiryo","\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3","hiragino kaku gothic pro",sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600}.sRwjrN7.och83_y--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)}.sA7jId1,.sQ47qqC{outline:0}.sf2MeN5 .snFVMUZ{font-size:14px}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-5-basic{background-color:#000;border-color:#000;color:#fff}.sf2MeN5.otkPJbq---type-7-default:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-14-basicSecondary{border-color:#000;color:#000}.sf2MeN5.otkPJbq---type-4-text:not(.otkPJbq--wired) .snFVMUZ.otkPJbq---priority-7-primary{color:#000}.s__3jxMoq{display:inline-block;position:relative}.s__3jxMoq.ouhSmpM--fluid{display:block;width:100%}.sONxQKD{background-color:#fff;border-color:#000;border-radius:initial;border-style:solid;border-width:1px;padding:initial}.soEFkgN{border-style:solid;height:0;margin:5px;position:absolute;width:0}.swpyXyw[data-placement*=right].sVK_8pY{padding-left:5px}.swpyXyw[data-placement*=right].sVK_8pY .soEFkgN{border-color:transparent #000 transparent transparent;border-width:5px 5px 5px 0;left:-5px;margin-left:5px;margin-right:0}.swpyXyw[data-placement*=left].sVK_8pY{padding-right:5px}.swpyXyw[data-placement*=left].sVK_8pY .soEFkgN{border-color:transparent transparent transparent #000;border-width:5px 0 5px 5px;margin-left:0;margin-right:5px;right:-5px}.swpyXyw[data-placement*=bottom].sVK_8pY{padding-top:5px}.swpyXyw[data-placement*=bottom].sVK_8pY .soEFkgN{border-color:transparent transparent #000 transparent;border-width:0 5px 5px 5px;margin-bottom:0;margin-top:5px;top:-5px}.swpyXyw[data-placement*=top].sVK_8pY{padding-bottom:5px}.swpyXyw[data-placement*=top].sVK_8pY .soEFkgN{border-color:#000 transparent transparent transparent;border-width:5px 5px 0 5px;bottom:-5px;margin-bottom:5px;margin-top:0}.s__72lfJk{position:relative}.sgKo7D0{--submitbuttonwut805068570-explicit-padding:11px;--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight);--wix-ui-tpa-button-hover-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-hover-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-hover-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColor);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColor-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColor-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColor);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColor-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColor-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-padding-block-start:var(--submitbuttonwut805068570-explicit-padding);--wix-ui-tpa-button-padding-block-end:var(--submitbuttonwut805068570-explicit-padding);min-width:0!important;padding-inline:min(5%,15px)!important}.sgKo7D0 span{line-height:var(--submitbuttonwut805068570-submitButtonFont-line-height,1.2)!important}.sasFW9G{width:100%}.sEgWCPr{min-width:100px!important}.sCCUGm1{--wix-ui-tpa-text-button-main-text-color:var(--wix-forms-formSubmitButtonColor);--wix-ui-tpa-text-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColor-rgb);--wix-ui-tpa-text-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColor-opacity);--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formSubmitButtonFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formSubmitButtonFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formSubmitButtonFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formSubmitButtonFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formSubmitButtonFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFont-weight)}.sCCUGm1:hover,.skxLJE4{color:rgb(var(--wix-forms-formSubmitButtonColorHover,var(--wix-color-5)))!important}.sqrHXDy{--wix-ui-tpa-button-main-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-main-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-main-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity);--wix-ui-tpa-button-main-text-font-style:var(--wix-forms-formSubmitButtonFontHover-style,var(--wix-forms-formSubmitButtonFont-style));--wix-ui-tpa-button-main-text-font-weight:var(--wix-forms-formSubmitButtonFontHover-weight,var(--wix-forms-formSubmitButtonFont-weight));--wix-ui-tpa-button-main-text-font-text-decoration:var(--wix-forms-formSubmitButtonFontHover-text-decoration,var(--wix-forms-formSubmitButtonFont-text-decoration));--wix-ui-tpa-button-main-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-main-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-main-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-hover-background-color:var(--wix-forms-formSubmitButtonBackgroundColorHover);--wix-ui-tpa-button-hover-background-color-rgb:var(--wix-forms-formSubmitButtonBackgroundColorHover-rgb);--wix-ui-tpa-button-hover-background-color-opacity:var(--wix-forms-formSubmitButtonBackgroundColorHover-opacity);--wix-ui-tpa-button-main-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-main-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-main-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-hover-border-color:var(--wix-forms-formSubmitButtonBorderColorHover);--wix-ui-tpa-button-hover-border-color-rgb:var(--wix-forms-formSubmitButtonBorderColorHover-rgb);--wix-ui-tpa-button-hover-border-color-opacity:var(--wix-forms-formSubmitButtonBorderColorHover-opacity);--wix-ui-tpa-button-main-border-width:var(--wix-forms-formSubmitButtonBorderWidth);--wix-ui-tpa-button-main-border-radius:var(--wix-forms-formSubmitButtonBorderRadius);--wix-ui-tpa-button-hover-text-color:var(--wix-forms-formSubmitButtonColorHover);--wix-ui-tpa-button-hover-text-color-rgb:var(--wix-forms-formSubmitButtonColorHover-rgb);--wix-ui-tpa-button-hover-text-color-opacity:var(--wix-forms-formSubmitButtonColorHover-opacity)}.s__637HSU{align-self:end;width:100%}.sYsuLUN{display:flex;height:100%;width:100%}.s__0wMXKP{display:flex;justify-content:space-between}.sAX9qX_{min-width:100px}.sCjRp4V{text-align:center}.sdvxq7V{height:15px!important;width:15px!important}.sCCUGm1 .sdvxq7V circle,.sgKo7D0 .sdvxq7V circle{stroke:rgb(var(--wix-forms-formSubmitButtonColor,var(--wix-color-1)))}.stkCIdj{height:0;visibility:hidden}.s__5wusy3{gap:var(--submitbuttonwut805068570-wix-forms-formRowSpacing,24px)}.sHBmGR5{pointer-events:none}@media (forced-colors:active){.sgKo7D0{border:1px solid ButtonText!important}.sCCUGm1:focus-visible,.sgKo7D0:focus-visible{outline:2px solid Highlight!important;outline-offset:2px!important}.sgKo7D0.sqrHXDy,.sgKo7D0:not(:focus-visible):hover{outline:1px dashed CanvasText!important;outline-offset:2px!important}}.sFyI5ne .sONxQKD{word-wrap:break-word;overflow-wrap:break-word;word-break:break-word}.s__3DOwO7{align-items:center;cursor:pointer;display:inline-flex}.sXyzDDh,.siwI922{flex-shrink:0}.s__3DOwO7.oX5PGLp--disabled{cursor:default}.s__3DOwO7[disabled]{pointer-events:none}.s__5mJsIL{--wut-error-color:rgb(var(--wix-ui-tpa-error-message-wrapper-error-color,223,49,49));--ErrorMessageWrapper329640366-transparent:0,0,0,0}.s__5mJsIL:not(.oKPjoIj--visible){margin-bottom:var(--wix-ui-tpa-error-message-wrapper-min-message-height)}.s__5mJsIL.oKPjoIj--visible{margin-bottom:calc(var(--wix-ui-tpa-error-message-wrapper-min-message-height, 28px) - 20px - 8px)}.sT4cyzB{align-items:flex-start;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-transparent)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-transparent)));border-radius:var(--wix-ui-tpa-error-message-wrapper-border-radius,4px);border-style:solid;border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,0);color:var(--wut-error-color);display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:1.4;margin-top:8px;min-height:20px}.sDw6n7W{flex-shrink:0;margin-inline-end:2px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sT4cyzB{--ErrorMessageWrapper329640366-border-color:223,49,49,0.2;--ErrorMessageWrapper329640366-background-color:253,243,243;background-color:rgb(var(--wix-ui-tpa-error-message-wrapper-background-color,var(--ErrorMessageWrapper329640366-background-color)));border-color:rgb(var(--wix-ui-tpa-error-message-wrapper-border-color,var(--ErrorMessageWrapper329640366-border-color)));border-width:var(--wix-ui-tpa-error-message-wrapper-border-width,1px);padding:8px}.s__5mJsIL.oKPjoIj---errorAppearance-19-BackgroundAndBorder .sDw6n7W{margin-inline-end:4px}.s__8wUiio{display:flex;justify-content:space-between;margin-top:8px}.s__8wUiio .sT4cyzB{margin-top:0;margin-inline-end:12px}.sigpKjl{--TextField2598911325-default-main-border-width:1px}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage{--wix-ui-tpa-error-message-wrapper-error-color:var(--wix-ui-tpa-text-field-error-color,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-rgb:var(--wix-ui-tpa-text-field-error-color-rgb,223,49,49);--wix-ui-tpa-error-message-wrapper-error-color-opacity:var(--wix-ui-tpa-text-field-error-color-opacity);--wix-ui-tpa-error-message-wrapper-min-message-height:var(--wix-ui-tpa-text-field-error-message-min-height)}.smyXERm{align-items:center;background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-color:rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:0;box-sizing:border-box;display:flex;font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,var(--wix-font-Body-M-line-height));padding:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,var(--wix-font-Body-M-line-height));text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.stVd2iH{margin-bottom:8px}#SITE_CONTAINER.focus-ring-active .sigpKjl .smyXERm:focus-within,#SITE_CONTAINER.focus-ring-active .sigpKjl .sq3uuYJ:focus:not(:hover){box-shadow:0 0 0 1px #fff,0 0 0 3px #116dff!important;z-index:999}.smyXERm input:-webkit-autofill{-webkit-text-fill-color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));-webkit-box-shadow:0 0 0 1.5em rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1))) inset!important}.smyXERm.oYEaGDN---theme-3-box{border:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--wix-color-1)));border-color:rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.oYEaGDN---theme-4-line{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wst-primary-background-color-rgb,transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-border-color-opacity, 1)*var(--wix-ui-tpa-text-field-main-border-opacity, .6)));border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0);border-width:var(--wix-ui-tpa-text-field-main-border-width,var(--TextField2598911325-default-main-border-width,1px))}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm.oYEaGDN---theme-4-line{--TextField2598911325-transparent:0,0,0,0;background-color:rgb(var(--wix-ui-tpa-text-field-readonly-background-color,var(--TextField2598911325-transparent)));border-bottom:1px solid rgb(var(--wix-ui-tpa-text-field-readonly-border-color,var(--wix-color-5),.2));border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0);border-width:var(--wix-ui-tpa-text-field-readonly-border-width,1px)}.smyXERm.o__6t2qui--focus,.smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-hover-border-color,var(--wix-ui-tpa-text-field-main-border-color,var(--wix-color-5))));border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px);border-width:var(--wix-ui-tpa-text-field-hover-border-width,var(--TextField2598911325-default-main-border-width,1px))}.smyXERm.oYEaGDN---theme-3-box.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-3-box:hover,.smyXERm.oYEaGDN---theme-4-line.o__6t2qui--focus,.smyXERm.oYEaGDN---theme-4-line:hover{background-color:rgb(var(--wix-ui-tpa-text-field-hover-background-color-rgb,var(--wix-ui-tpa-text-field-main-background-color-rgb,transparent)),calc(var(--wix-ui-tpa-text-field-hover-background-color-opacity, var(--wix-ui-tpa-text-field-main-background-color-opacity, 1))*var(--wix-ui-tpa-text-field-hover-background-opacity, 1)))}.sigpKjl.oYEaGDN--disabled .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-disabled-border-color-rgb,var(--wix-ui-tpa-text-field-main-border-color-rgb,var(--wix-color-5))),calc(var(--wix-ui-tpa-text-field-main-disabled-border-color-opacity, var(--wix-ui-tpa-text-field-main-border-color-opacity, 1))*.6))}.sigpKjl.oYEaGDN--disabled .smyXERm.oYEaGDN---theme-3-box{background-color:rgb(var(--wix-ui-tpa-text-field-main-background-color,var(--wix-color-1)))}.sigpKjl.oYEaGDN--success .smyXERm{border-color:rgb(var(--wst-system-success-color-rgb,0,130,80),.6)}.sigpKjl.oYEaGDN--success .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--success .smyXERm:hover{border-color:#008250}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb,223,49,49)),.6)}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage .smyXERm{--TextField2598911325-wix-ui-tpa-text-field-border-color-internal:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,var(--wst-system-error-color-rgb)));border-color:var(--TextField2598911325-wix-ui-tpa-text-field-border-color-internal,var(--wut-error-color,#df3131))!important}.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm.o__6t2qui--focus,.sigpKjl.oYEaGDN--error:not(.oYEaGDN--newErrorMessage) .smyXERm:hover{border-color:rgb(var(--wix-ui-tpa-text-field-main-error-border-color,223,49,49))}.sigpKjl.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-prefix-padding-inline-end,4px)}.smyXERm .sjImZoO{background-color:transparent;border:0;box-sizing:border-box;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-text-font-line-height,24px);margin:0;min-width:0;padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-start:0;text-decoration:var(--wix-ui-tpa-text-field-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,12px);vertical-align:middle;width:100%}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-readonly-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-text-font-size,16px);font-style:var(--wix-ui-tpa-text-field-readonly-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-text-font-line-height,24px);text-decoration:var(--wix-ui-tpa-text-field-readonly-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding-block-end:var(--wix-ui-tpa-text-field-padding-block-end,8px);padding-block-start:var(--wix-ui-tpa-text-field-padding-block-start,8px);padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,0);padding-inline-start:0;text-indent:var(--wix-ui-tpa-text-field-padding-inline-start,0)}.smyXERm.o__6t2qui--focus .sjImZoO,.smyXERm:hover .sjImZoO{color:rgb(var(--wix-ui-tpa-text-field-hover-text-color,var(--wix-ui-tpa-text-field-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sigpKjl.oYEaGDN--disabled .sfgvi8T svg,.smyXERm.o__6t2qui--disabled .sjImZoO{fill:rgb(var(--wix-ui-tpa-text-field-suffix-disabled-color,var(--wst-system-disabled-color-rgb)));color:rgb(var(--wix-ui-tpa-text-field-main-text-disabled-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.smyXERm.o__6t2qui--focus .sjImZoO{outline:0}.smyXERm .sjImZoO::selection{background:rgb(var(--wix-ui-tpa-text-field-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-field-main-text-color-opacity, 1)*.2))}.sisjT9x{align-items:center;display:flex;justify-content:flex-end;margin:0 -4px;padding:0;padding-inline-start:var(--wix-ui-tpa-text-field-suffix-padding-inline-start,8px);white-space:nowrap}.sisjT9x.oYEaGDN--arrows{height:100%}.smyXERm.oYEaGDN---theme-3-box{padding-inline-end:var(--wix-ui-tpa-text-field-padding-inline-end,12px)}.sYMteoM{align-items:center;display:flex;height:100%}.saZlyzg{display:inline-block;height:100%;width:4px}.sigpKjl .sxYAMB9{--wix-ui-tpa-icon-button-icon-color:var(--wix-ui-tpa-text-field-main-text-color,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-rgb:var(--wix-ui-tpa-text-field-main-text-color-rgb,--wix-color-5);--wix-ui-tpa-icon-button-icon-color-opacity:var(--wix-ui-tpa-text-field-main-text-color-opacity);border-radius:20px;display:block;outline:0}.sigpKjl .sxYAMB9:focus,.sigpKjl .sxYAMB9:hover{background-color:transparent;opacity:1}.sfgvi8T{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-main-text-color,var(--wix-color-5)));display:flex;height:100%}.smyXERm .sjImZoO::-webkit-input-placeholder,.smyXERm .sjImZoO::placeholder{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:var(--wst-paragraph-2-line-height);--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:var(--wst-paragraph-2-font-size);--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-placeholder-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));font-family:var(--wix-ui-tpa-text-field-placeholder-font-family,var(--wst-paragraph-2-overriden-font-family));font-size:var(--wix-ui-tpa-text-field-placeholder-font-size,var(--wst-paragraph-2-overriden-font-size));font-style:var(--wix-ui-tpa-text-field-placeholder-font-style,var(--wst-paragraph-2-overriden-font-style));font-variant:var(--wix-ui-tpa-text-field-placeholder-font-variant,var(--wst-paragraph-2-overriden-font-variant));font-weight:var(--wix-ui-tpa-text-field-placeholder-font-weight,var(--wst-paragraph-2-overriden-font-weight));line-height:var(--wix-ui-tpa-text-field-placeholder-font-line-height,var(--wst-paragraph-2-overriden-font-line-height));text-decoration:var(--wix-ui-tpa-text-field-placeholder-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration))}.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::-webkit-input-placeholder,.sigpKjl.oYEaGDN--disabled .smyXERm .sjImZoO::placeholder{color:rgb(var(--wix-ui-tpa-text-field-disabled-placeholder-color,var(--wix-color-29)))}.sdcwRYb{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.4;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));display:inline-block;font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));margin-bottom:8px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sigpKjl.oYEaGDN--disabled .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-disabled-label-color,var(--wix-color-29)))}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-5)));font-family:var(--wix-ui-tpa-text-field-readonly-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-readonly-label-font-size,14px);font-style:var(--wix-ui-tpa-text-field-readonly-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-readonly-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-readonly-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-readonly-label-font-line-height,1.4);text-decoration:var(--wix-ui-tpa-text-field-readonly-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sn_gi7t{color:rgb(var(--wix-ui-tpa-text-field-char-count-color,var(--wst-shade-3-color-rgb,var(--wix-color-4))));display:flex;font-family:var(--wix-ui-tpa-text-field-char-count-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-char-count-font-size,14px);font-style:var(--wix-ui-tpa-text-field-char-count-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-char-count-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-char-count-font-weight,var(--wix-font-Body-M-weight));justify-content:flex-end;line-height:var(--wix-ui-tpa-text-field-char-count-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-char-count-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sigpKjl.oYEaGDN--error.oYEaGDN--newErrorMessage.oYEaGDN--hasErrorMessage .sn_gi7t{margin-top:0}.sXIeGiQ{display:none}.shfTOvJ{color:#df3131!important}.sW0lLQo{color:rgb(var(--wst-system-success-color-rgb,0,130,80))}.s__4zN_uk{align-items:center;color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-4)));display:flex;margin-inline-start:var(--wix-ui-tpa-text-field-padding-inline-start,12px)}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-4)))}.s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-prefix-color,var(--wix-color-5)))}.sigpKjl.oYEaGDN--readOnlyCustom .s__4zN_uk svg{color:rgb(var(--wix-ui-tpa-text-field-readonly-prefix-color,var(--wix-color-5)))}.smyXERm.oYEaGDN---theme-4-line .s__4zN_uk{margin-inline-start:0}.sSoKqc1{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.smyXERm input[type=number]::-webkit-inner-spin-button,.smyXERm input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.smyXERm input[type=number]{appearance:textfield}.smyXERm input{border-radius:var(--wix-ui-tpa-text-field-main-border-radius,0)}.sigpKjl.oYEaGDN--readOnlyCustom .smyXERm input{border-radius:var(--wix-ui-tpa-text-field-readonly-border-radius,0)}.smyXERm.o__6t2qui--focus input,.smyXERm:hover input{border-radius:var(--wix-ui-tpa-text-field-hover-border-radius,1px)}.s__1MuoJD{display:flex;flex-direction:column;padding-bottom:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px);padding-top:var(--wix-ui-tpa-text-field-arrows-suffix-vertical-padding,4px)}.sFd_hFT{all:unset;cursor:pointer;height:16px;line-height:16px}.sigpKjl .sHJyM6t{color:rgb(var(--wix-ui-tpa-text-field-helper-text-color,var(--wix-color-4)));display:block;font-family:var(--wix-ui-tpa-text-field-helper-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-helper-text-font-size,14px);font-style:var(--wix-ui-tpa-text-field-helper-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-helper-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-helper-text-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-helper-text-font-line-height,1.4);margin-top:8px;text-decoration:var(--wix-ui-tpa-text-field-helper-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sq3uuYJ{cursor:pointer;display:block;height:calc(max(24px,1em));width:calc(max(24px,1em))}.sq3uuYJ.oYEaGDN--disabled{cursor:default}.sE2SOPk{position:relative;width:100%}.sfXnMJy{font-family:var(--wix-ui-tpa-text-field-main-label-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-field-main-label-font-size,16px);font-style:var(--wix-ui-tpa-text-field-main-label-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-field-main-label-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-field-main-label-font-weight,var(--wix-font-Body-M-weight));line-height:var(--wix-ui-tpa-text-field-main-label-font-line-height,1.4);padding-top:3.6px;text-decoration:var(--wix-ui-tpa-text-field-main-label-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-main-label-text-color,var(--wix-color-4)));font:inherit;margin-bottom:0;overflow:hidden;padding-top:0;position:absolute;text-overflow:ellipsis;top:50%;transform:translateY(-50%);transition:all .1s ease-out;-webkit-transition:all .1s ease-out;-moz-transition:all .1s ease-out;-o-transition:all .1s ease-out;-ms-transition:all .1s ease-out;white-space:nowrap;width:calc(100% - 20px)}.sigpKjl.oYEaGDN--readOnlyCustom .sdcwRYb.oYEaGDN---style-8-floating{color:rgb(var(--wix-ui-tpa-text-field-readonly-label-text-color,var(--wix-color-4)));font:inherit}.sigpKjl.oYEaGDN--hasFloatingLabelActive .sdcwRYb.oYEaGDN---style-8-floating{font-size:.875em;padding-top:2px;top:6px;transform:translateY(0)}.sigpKjl.oYEaGDN--hasFloatingLabel .sdcwRYb.oYEaGDN---theme-3-box{padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .sjImZoO{padding:0 0 6px;padding-inline-start:0;text-indent:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-4-line .sjImZoO{padding:0 0 4px;padding-inline-start:0;text-indent:0}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasPrefix .smyXERm .sjImZoO{padding-inline-start:0;text-indent:4px}.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .sdcwRYb,.sigpKjl.oYEaGDN--hasFloatingLabel.oYEaGDN--hasSuffix .smyXERm .sjImZoO{padding-inline-end:4px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box{padding-inline-end:20px}.sigpKjl.oYEaGDN--hasFloatingLabel .smyXERm.oYEaGDN---theme-3-box .s__4zN_uk{margin-inline-start:20px}.sjSK_mi{--Text1662509933-primary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-5)));--Text1662509933-secondary-color:rgb(var(--wix-ui-tpa-text-main-text-color,var(--wix-color-4)))}.sjSK_mi.ot7R_W1---priority-7-primary{color:var(--wut-text-color,var(--Text1662509933-primary-color))}.sjSK_mi.ot7R_W1---priority-9-secondary{color:var(--wut-placeholder-color,var(--Text1662509933-secondary-color))}.sjSK_mi.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.5em)}.sjSK_mi.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,16px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,2em)}.sjSK_mi.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,32px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.25em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-smallTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Page-title-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,20px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Page-title-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Page-title-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Page-title-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.4em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Page-title-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.42em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-11-runningText,.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,14px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Body-M-weight));text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration))}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-8-listText{line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.72em)}.sjSK_mi.ot7R_W1--mobile.ot7R_W1---typography-10-largeTitle{font-family:var(--wix-ui-tpa-text-main-text-font-family,var(--wix-font-Heading-M-family));font-size:var(--wix-ui-tpa-text-main-text-font-size,24px);font-style:var(--wix-ui-tpa-text-main-text-font-style,var(--wix-font-Heading-M-style));font-variant:var(--wix-ui-tpa-text-main-text-font-variant,var(--wix-font-Heading-M-variant));font-weight:var(--wix-ui-tpa-text-main-text-font-weight,var(--wix-font-Heading-M-weight));line-height:var(--wix-ui-tpa-text-main-text-font-line-height,1.33em);text-decoration:var(--wix-ui-tpa-text-main-text-font-text-decoration,var(--wix-font-Heading-M-text-decoration))}.s__96XWLA{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sGQhrdY{--Spinner2369530196-diameter:var(--wix-ui-tpa-spinner-diameter,50px);animation:Spinner2369530196__rotate 2s linear infinite;height:var(--Spinner2369530196-diameter);left:auto;top:auto;width:var(--Spinner2369530196-diameter)}.sIOh1bP{stroke:rgb(var(--wix-ui-tpa-spinner-path-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,4px),10px);animation:Spinner2369530196__dash 1.5s ease-in-out infinite}.sGQhrdY.okHrCLG--slim .sIOh1bP{stroke-width:clamp(1px,var(--wix-ui-tpa-spinner-stroke-width,1px),10px)}.sGQhrdY.okHrCLG--centered{left:calc(50% - var(--Spinner2369530196-diameter)/2);position:absolute;top:calc(50% - var(--Spinner2369530196-diameter)/2)}.sGQhrdY.okHrCLG--static,.sGQhrdY.okHrCLG--static .sIOh1bP{animation:none}@keyframes Spinner2369530196__rotate{to{transform:rotate(1turn)}}@keyframes Spinner2369530196__dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.sCptFO_{--SectionNotification1619105799-border-radius:2px;--SectionNotification1619105799-main-vertical-padding:9px;--SectionNotification1619105799-main-compact-vertical-padding:5px;--SectionNotification1619105799-main-left-padding:12px;--SectionNotification1619105799-main-right-padding:16px;--SectionNotification1619105799-content-padding:8px;--SectionNotification1619105799-line-height:20px;--SectionNotification1619105799-default-text-color:0,0,0;--SectionNotification1619105799-default-background-color:0,0,0;--SectionNotification1619105799-success-color:0,130,80;--SectionNotification1619105799-success-icon-color:rgb(var(--SectionNotification1619105799-success-color));--SectionNotification1619105799-wst-background-color:var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-background-color));--SectionNotification1619105799-wired-text-color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));--SectionNotification1619105799-wired-background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),0.05));background-color:#fff;border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));display:flex;height:100%;width:100%}.s_dGes_{background-color:rgb(var(--wix-ui-tpa-section-notification-background-color,var(--SectionNotification1619105799-wst-background-color),.05));border:1px solid hsla(0,0%,100%,.4);border-radius:var(--wix-ui-tpa-section-notification-border-radius,var(--SectionNotification1619105799-border-radius));color:rgb(var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color))));display:flex;flex:1;flex-wrap:wrap;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;justify-content:center;padding:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-right-padding) var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-main-left-padding)}.syaQqqO{flex:1;flex-direction:row;padding:6px 0}.sW6Rvh9,.syaQqqO{align-items:center;display:flex}.sW6Rvh9{flex-direction:row;justify-content:center;margin:var(--SectionNotification1619105799-main-vertical-padding) var(--SectionNotification1619105799-content-padding)}.sW6Rvh9:empty{display:none}.sCWNyRW{height:20px;transform:translateX(calc(-1*(var(--SectionNotification1619105799-content-padding)/2)))}.sCptFO_.oea4HGw--rtl .sCWNyRW{transform:translateX(calc((var(--SectionNotification1619105799-content-padding)/2)))}.sCWNyRW svg{fill:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));color:rgb(var(--wix-ui-tpa-section-notification-icon-color,var(--wix-ui-tpa-section-notification-text-color,var(--wst-paragraph-2-color-rgb,var(--SectionNotification1619105799-default-text-color)))));height:var(--SectionNotification1619105799-line-height)}.seJHu5h{flex:1;line-height:var(--SectionNotification1619105799-line-height);margin:0;min-width:200px}.seJHu5h:first-child{margin:0}.sRbY2lp{margin:0 calc(var(--SectionNotification1619105799-content-padding)/2)}.sCptFO_.oea4HGw--error .s_dGes_{background-color:rgb(223,49,49,.1)}.sCptFO_.oea4HGw--alert .s_dGes_{background-color:rgb(255,182,0,.1)}.sCptFO_.oea4HGw--wired{background-color:transparent}.sCptFO_.oea4HGw--wired .s_dGes_{background-color:var(--SectionNotification1619105799-wired-background-color);color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw--success .s_dGes_{background-color:rgb(var(--SectionNotification1619105799-success-color),.1)}.sCptFO_.oea4HGw--success .sCWNyRW svg:not([fill=currentColor]) path{stroke:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--error .sCWNyRW svg[fill=currentColor]{color:#df3131}.sCptFO_.oea4HGw--success .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-success-icon-color)}.sCptFO_.oea4HGw--wired .sCWNyRW svg[fill=currentColor]{color:var(--SectionNotification1619105799-wired-text-color)}.sCptFO_.oea4HGw---size-7-compact .s_dGes_{padding-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);padding-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.sCptFO_.oea4HGw---size-7-compact .sW6Rvh9{margin-bottom:var(--SectionNotification1619105799-main-compact-vertical-padding);margin-top:var(--SectionNotification1619105799-main-compact-vertical-padding)}.svkvpiH{--WowImage1942816733-transparent:0,0,0,0;--WowImage1942816733-errorTextColor:255,255,255;display:flex;height:100%;position:relative}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain{width:100%}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain>*{align-items:center;border:inherit;border-radius:inherit;display:flex;justify-content:center}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain img{border:inherit;border-radius:inherit;height:unset!important;max-height:100%;max-width:100%;width:unset!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--verticalContainer img{width:min(var(--wut-source-width,100%),100%)!important}.svkvpiH.oTSGO_X--forceImageContain.oTSGO_X---resize-7-contain.oTSGO_X--horizontalContainer img{height:min(var(--wut-source-height,100%),100%)!important}.svkvpiH.oTSGO_X--noImage{background-color:rgb(var(--wix-color-5),.2)}.svkvpiH img{vertical-align:middle}.svkvpiH.oTSGO_X--focalPoint img{object-position:var(--WowImage1942816733-focalPointX,0) var(--WowImage1942816733-focalPointY,0)}.svkvpiH.oTSGO_X---resize-7-contain .sALFxTu{object-fit:contain}.svkvpiH.oTSGO_X---resize-5-cover .sALFxTu{object-fit:cover}.svkvpiH.oTSGO_X--fluid .sALFxTu{height:100%;overflow:hidden;width:100%}.svkvpiH:not(.oTSGO_X--stretchImage){align-items:center}.svkvpiH.oTSGO_X--fluid:not(.oTSGO_X--stretchImage) .sALFxTu,.svkvpiH:not(.oTSGO_X--stretchImage) .sALFxTu{height:min(var(--wut-source-height,100%),100%);margin:0 auto;width:min(var(--wut-source-width,100%),100%)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom{overflow:hidden}.svkvpiH.oTSGO_X---hoverEffect-4-zoom .sALFxTu{overflow:initial;transform:scale(calc(100/107)) translate(-3.5%,-3.5%);transition:all .5s cubic-bezier(.18,.73,.63,1)}.svkvpiH.oTSGO_X---hoverEffect-4-zoom:hover .sALFxTu{transform:scale(1) translate(-3.5%,-3.5%)}.svkvpiH.oTSGO_X---hoverEffect-6-darken:hover .sALFxTu{filter:brightness(85%) contrast(115%)}.svkvpiH:not(.oTSGO_X--isError){background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--WowImage1942816733-transparent)));border:var(--wix-ui-tpa-wow-image-border-width,0) solid rgb(var(--wix-ui-tpa-wow-image-border-color,var(--WowImage1942816733-transparent)));border-radius:var(--wix-ui-tpa-wow-image-border-radius,0);overflow:hidden}.svkvpiH:not(.oTSGO_X--isError).oTSGO_X--noImage{background-color:rgb(var(--wix-ui-tpa-wow-image-background-color,var(--wix-color-5),.2))}.svkvpiH .sALFxTu{opacity:var(--wix-ui-tpa-wow-image-image-opacity,1)}.svkvpiH.oTSGO_X--isError{background-color:rgb(var(--wix-color-2));position:relative}.svkvpiH.oTSGO_X--isError img{display:none}.svkvpiH .s__6u_3KK{align-items:center;background:rgb(0,0,0,.6);display:flex;flex-direction:column;height:100%;justify-content:center;position:absolute;width:100%;z-index:1}.sCRLHt8{--wix-ui-tpa-text-main-text-color:var(--WowImage1942816733-errorTextColor),1;--wix-ui-tpa-text-main-text-color-rgb:var(--WowImage1942816733-errorTextColor);--wix-ui-tpa-text-main-text-color-opacity:1;--wix-ui-tpa-text-main-text-font-text-decoration:var(--wix-ui-tpa-picker-font-style-text-decoration,var(--wix-font-Body-M-text-decoration));--wix-ui-tpa-text-main-text-font-line-height:var(--wix-ui-tpa-picker-font-style-line-height,1.5em);--wix-ui-tpa-text-main-text-font-family:var(--wix-ui-tpa-picker-font-style-family,var(--wix-font-Body-M-family));--wix-ui-tpa-text-main-text-font-size:var(--wix-ui-tpa-picker-font-style-size,14px);--wix-ui-tpa-text-main-text-font-style:var(--wix-ui-tpa-picker-font-style-style,var(--wix-font-Body-M-style));--wix-ui-tpa-text-main-text-font-variant:var(--wix-ui-tpa-picker-font-style-variant,var(--wix-font-Body-M-variant));--wix-ui-tpa-text-main-text-font-weight:var(--wix-ui-tpa-picker-font-style-weight,var(--wix-font-Body-M-weight))}.sPlOVIi{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.sqE7FxN{color:rgb(var(--WowImage1942816733-errorTextColor))}.s__0hdo8Y{background-color:rgb(0,0,0,.6);display:none;height:100%;left:0;position:absolute;top:0;width:100%}.svkvpiH.oTSGO_X--loadSpinner:not(.oTSGO_X--loaded) .s__0hdo8Y{display:block}.s__3_30GG .sIOh1bP{stroke:#fff}.sFouHv5[data-hook=popover-portal]{display:initial}.sFouHv5 .sONxQKD{-webkit-font-smoothing:auto;background-color:#212121;border:1px solid #757575;border-radius:3px;box-shadow:0 4px 8px 0 rgba(0,0,0,.12),0 0 4px 0 rgba(0,0,0,.1);color:#fff;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:14px;line-height:20px;padding:4px 12px}.sFF_I56{margin:0;position:absolute}.sFF_I56,.sFF_I56 svg{display:block}.sFouHv5 .swpyXyw[data-placement*=top].suCSlDU{padding-bottom:6px}.sFouHv5 .swpyXyw[data-placement*=bottom].suCSlDU{padding-top:6px}.sFouHv5 .swpyXyw[data-placement*=left].suCSlDU{padding-right:6px}.sFouHv5 .swpyXyw[data-placement*=right].suCSlDU{padding-left:6px}.sFouHv5 .swpyXyw[data-placement*=top] .sFF_I56{bottom:-1px;height:7px;width:12px}.sFouHv5 .swpyXyw[data-placement*=bottom] .sFF_I56{height:7px;top:-1px;width:12px}.sFouHv5 .swpyXyw[data-placement*=left] .sFF_I56{height:12px;right:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=right] .sFF_I56{height:12px;left:-1px;width:7px}.sFouHv5 .swpyXyw[data-placement*=top].sneWtR8{opacity:0;transform:scale(.9) translateY(3px)}.sFouHv5 .swpyXyw[data-placement*=bottom].sneWtR8{opacity:0;transform:scale(.9) translateY(-3px)}.sFouHv5 .swpyXyw[data-placement*=left].sneWtR8{opacity:0;transform:scale(.9) translateX(10px)}.sFouHv5 .swpyXyw[data-placement*=right].sneWtR8{opacity:0;transform:scale(.9) translateX(-10px)}.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{transition:transform .12s cubic-bezier(.25,.46,.45,.94),applyOpacity .12s cubic-bezier(.25,.46,.45,.94)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk,.sFouHv5 .swpyXyw[data-placement].sneWtR8.seCls6w{opacity:1;transform:scale(1) translateY(0) translateX(0)}.sFouHv5 .swpyXyw[data-placement].sJS_Axk.s__8Gqg5Z{opacity:0;transition:transform 80ms linear,applyOpacity 80ms linear}.sFouHv5.oFo_c_7---skin-5-error .sONxQKD{background-color:#df3131;border:1px solid hsla(0,0%,100%,.25)}.sFouHv5.oFo_c_7---skin-5-wired .sONxQKD{background-color:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-color:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wst-primary-background-color-rgb, var(--wix-color-1))));color:rgb(var(--wix-ui-tpa-tooltip-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path{fill:rgb(var(--wix-ui-tpa-tooltip-background-color,var(--wix-color-5)));stroke:rgb(var(--wix-ui-tpa-tooltip-border-color-rgb,var(--wix-ui-tpa-tooltip-background-color)),calc(var(--wix-ui-tpa-tooltip-border-color-opacity, 1)*var(--wix-color-5)))}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:first-child{stroke:none}.sFouHv5.oFo_c_7---skin-5-wired .sFF_I56 path:last-child{stroke-dasharray:0 17 17}.sFouHv5.oFo_c_7---skin-5-error .sFF_I56 path{fill:#df3131}.sSMZABS{--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal:rgb(var(--wix-ui-tpa-text-button-background-color));--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);background-color:var(--TextButton3072264514-wix-ui-tpa-text-button-background-color-internal,transparent);border:0;font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));padding:0;text-decoration:none;text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile{--wst-paragraph-2-overriden-font-text-decoration:var(--wst-paragraph-2-text-decoration);--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size)));font-style:var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height)));text-decoration:var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:underline;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV--mobile.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile:hover.o__9L4TsV---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV--mobile.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.44em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:14px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight)}.sSMZABS.o__9L4TsV---priority-7-primary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))))}.sSMZABS.o__9L4TsV---priority-7-primary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-7-primary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:active.o__9L4TsV---hoverStyle-9-underline,.sSMZABS.o__9L4TsV---priority-4-link:hover.o__9L4TsV---hoverStyle-9-underline{--wst-paragraph-2-overriden-font-text-decoration:none;--wst-paragraph-2-overriden-font-line-height:1.5em;--wst-paragraph-2-overriden-font-family:var(--wst-paragraph-2-font-family);--wst-paragraph-2-overriden-font-size:16px;--wst-paragraph-2-overriden-font-style:var(--wst-paragraph-2-font-style);--wst-paragraph-2-overriden-font-variant:var(--wst-paragraph-2-font-variant);--wst-paragraph-2-overriden-font-weight:var(--wst-paragraph-2-font-weight);font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-text-button-main-text-font-family,var(--wst-paragraph-2-overriden-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-text-button-main-text-font-size,var(--wst-paragraph-2-overriden-font-size,var(--wix-font-Body-M-size))));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-text-button-main-text-font-style,var(--wst-paragraph-2-overriden-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-text-button-main-text-font-variant,var(--wst-paragraph-2-overriden-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-text-button-main-text-font-weight,var(--wst-paragraph-2-overriden-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-text-button-main-text-font-line-height,var(--wst-paragraph-2-overriden-font-line-height,var(--wix-font-Body-M-line-height))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-text-button-main-text-font-text-decoration,var(--wst-paragraph-2-overriden-font-text-decoration,var(--wix-font-Body-M-text-decoration))));text-decoration:var(--TextButton3072264514-wix-ui-tpa-button-hover-text-font-text-decoration,underline)}.sSMZABS.o__9L4TsV---priority-9-secondary{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.sSMZABS.o__9L4TsV---priority-9-secondary.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-9-secondary:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-4-link.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-4-link:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-11-primaryLink{color:rgb(var(--wix-ui-tpa-text-button-main-text-color,var(--wst-links-and-actions-color-rgb,var(--wix-color-8))));text-decoration:underline}.sSMZABS.o__9L4TsV---priority-11-primaryLink.o__1Y_w3J--focus:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:active:not(.o__9L4TsV---hoverStyle-9-underline),.sSMZABS.o__9L4TsV---priority-11-primaryLink:hover:not(.o__9L4TsV---hoverStyle-9-underline){color:rgb(var(--wix-ui-tpa-text-button-main-text-color-rgb,var(--wix-color-8)),calc(var(--wix-ui-tpa-text-button-main-text-color-opacity, 1)*.7))}.sSMZABS.o__9L4TsV---priority-4-link.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-7-primary.oX5PGLp--disabled,.sSMZABS.o__9L4TsV---priority-9-secondary.oX5PGLp--disabled{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.sNefrcN svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.sNefrcN svg:not([fill=currentColor]) path{stroke:currentColor;fill:none}.sL_FHv6:after,.sekO3oo:before{content:"";display:inline-block;height:1px;width:4px}.sjqP4Mv{--wix-ui-tpa-wow-image-background-color:var(--wix-ui-tpa-image-background-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-rgb:var(--wix-ui-tpa-image-background-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-background-color-opacity:var(--wix-ui-tpa-image-background-color-opacity);--wix-ui-tpa-wow-image-border-color:var(--wix-ui-tpa-image-border-color,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-rgb:var(--wix-ui-tpa-image-border-color-rgb,var(--wst-paragraph-2-color-rgb));--wix-ui-tpa-wow-image-border-color-opacity:var(--wix-ui-tpa-image-border-color-opacity);--wix-ui-tpa-wow-image-border-width:var(--wix-ui-tpa-image-border-width);--wix-ui-tpa-wow-image-border-radius:var(--wix-ui-tpa-image-border-radius);--wix-ui-tpa-wow-image-image-opacity:var(--wix-ui-tpa-image-image-opacity)}.sjoXYIP{align-items:center;display:flex;justify-content:center}.sYygboQ{background-color:transparent;border:0;padding:0}.sYygboQ,.sjoXYIP{line-height:0}.sCD6_14 svg,.sjoXYIP{height:24px;width:24px}.sZstSKX{clip:rect(1px,1px,1px,1px)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.s__1NTrOu{border:0;display:inline-block;line-height:0;margin:0;padding:0;text-decoration:none}.s__1NTrOu.o__1Y_w3J--focus,.s__1NTrOu:hover{opacity:var(--wix-ui-tpa-icon-button-hover-opacity,.7)}.s__1NTrOu.o__0LZdzr--disabled{cursor:default}.s__1NTrOu.o__0LZdzr--disabled:hover{opacity:1}.sVnJn5y svg{display:block}.s__1NTrOu.o__0LZdzr--disabled.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));fill:none}.s__1NTrOu.o__0LZdzr--disabled.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)));stroke:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---skin-4-line .sVnJn5y svg:not([fill=currentColor]) path,.shILvyn .sVnJn5y svg:not([fill=currentColor]) path{stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));fill:none}.sEBZfib .sVnJn5y svg:not([fill=currentColor]) path,.s__1NTrOu.o__0LZdzr---skin-4-full .sVnJn5y svg:not([fill=currentColor]) path{fill:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));stroke:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-icon-button-icon-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))))}.s__1NTrOu.o__0LZdzr--disabled .sVnJn5y svg[fill=currentColor]{color:rgb(var(--wst-system-disabled-color-rgb,var(--wix-color-29)))}.s__1NTrOu.o__0LZdzr---theme-4-none{background-color:transparent}.s__1NTrOu.o__0LZdzr---theme-3-box{align-items:center;background-color:rgb(var(--wix-ui-tpa-icon-button-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-radius:50%;display:inline-flex;height:32px;justify-content:center;width:32px}.sWHTiwe{--Button4291672415-primaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));--Button4291672415-primaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-primaryBorderColor));--Button4291672415-primaryHoverLegacyBorderColor:var(--Button4291672415-primaryHoverBorderColor),0.7;--Button4291672415-primaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-45))));--Button4291672415-secondaryBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--wix-color-48)));--Button4291672415-secondaryHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-secondaryBorderColor));--Button4291672415-secondaryHoverLegacyBorderColor:var(--Button4291672415-secondaryHoverBorderColor),0.7;--Button4291672415-secondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-54)));--Button4291672415-basicBorderColor:var(--wix-ui-tpa-button-main-border-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)));--Button4291672415-basicHoverBorderColor:var(--wix-ui-tpa-button-hover-border-color,var(--Button4291672415-basicBorderColor));--Button4291672415-basicHoverLegacyBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));--Button4291672415-basicSecondaryBorderColor:var(--Button4291672415-basicBorderColor);--Button4291672415-basicSecondaryHoverBorderColor:var(--Button4291672415-basicHoverBorderColor);--Button4291672415-basicSecondaryHoverLegacyBorderColor:var(--Button4291672415-basicSecondaryHoverBorderColor),0.7;--Button4291672415-basicSecondaryDisabledBorderColor:var(--wix-ui-tpa-button-disabled-border-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29)));--Button4291672415-basicBorderWidth:0px;--Button4291672415-basicBorderExPaddingWidth:1px;--Button4291672415-basicSecondaryBorderWidth:1px;--Button4291672415-primaryBorderWidth:0px;--Button4291672415-primaryBorderExPaddingWidth:1px;--Button4291672415-secondaryBorderWidth:1px;--Button4291672415-borderStyle:solid;border-color:rgb(var(--wix-ui-tpa-button-main-border-color,var(--wix-color-39)));border-radius:var(--wix-ui-tpa-button-main-border-radius,0);border-style:solid;box-shadow:var(--wix-ui-tpa-button-main-box-shadow,0 0);box-sizing:content-box;font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing);line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));min-width:var(--wix-ui-tpa-button-min-width,100px);text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,0 0 transparent),var(--wix-ui-tpa-button-main-text-outline,0 0 transparent);text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform);transition:background-color .2s ease-in-out,border-color .2s ease-in-out,color .2s ease-in-out,border-width .2s ease-in-out}.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wix-font-Body-M-text-decoration)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,underline)!important}.sWHTiwe .sezcxt9{margin:0 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_--fullWidth{box-sizing:border-box;width:100%}.sWHTiwe,.sWHTiwe.ojChOw_---priority-5-basic{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-5-basic:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-5-basic:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-5-basic:hover:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5),.7))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1),.7))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,0));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-paragraph-2-color-rgb,var(--wix-color-5)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-color-1),0));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38))));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-primary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-primary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-primary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-primary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-primary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-primary-text-transform))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-primary-background-color-rgb,var(--wix-color-38)))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-primary-color-rgb,var(--wix-color-40)))))}.sWHTiwe.ojChOw_---priority-7-primary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-primary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-primary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-primary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-primary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-primary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-7-primary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-7-primary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color-rgb,var(--wst-button-primary-background-color-rgb,var(--wix-color-41))),calc(var(--wix-ui-tpa-button-main-background-color-opacity, 1) * .7)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-primary-color-rgb,var(--wix-color-43))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-7-primary .sewooAr{background-color:var(--wst-button-primary-text-highlight)}.sWHTiwe.ojChOw_---priority-9-secondary{background-color:rgb(var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-end-end-radius:var(--wix-ui-tpa-button-main-border-end-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-right-radius,0)));border-end-start-radius:var(--wix-ui-tpa-button-main-border-end-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-bottom-left-radius,0)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));border-start-end-radius:var(--wix-ui-tpa-button-main-border-start-end-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-right-radius,0)));border-start-start-radius:var(--wix-ui-tpa-button-main-border-start-start-radius,var(--wix-ui-tpa-button-main-border-radius,var(--wst-button-secondary-border-top-left-radius,0)));box-shadow:var(--wix-ui-tpa-button-main-box-shadow,var(--wst-button-secondary-box-shadow,0 0));color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49))));font-family:var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family))));font-size:var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default));font-style:var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style))));font-variant:var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant))));font-weight:var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight))));letter-spacing:var(--wix-ui-tpa-button-main-text-font-letter-spacing,var(--wst-button-secondary-letter-spacing));line-height:var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default));text-decoration:var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration))));text-shadow:var(--wix-ui-tpa-button-main-text-shadow,var(--wst-button-secondary-text-shadow,0 0 transparent)),var(--wix-ui-tpa-button-main-text-outline,var(--Button4291672415-wst-button-secondary-text-outline,0 0 transparent));text-transform:var(--wix-ui-tpa-button-main-text-font-text-transform,var(--wst-button-secondary-text-transform))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline{background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wix-ui-tpa-button-main-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-47),0))));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-button-secondary-color-rgb,var(--wix-color-49)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover.ojChOw_---hoverStyle-9-underline,.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){font-family:var(--wix-ui-tpa-button-hover-text-font-family,var(--wix-ui-tpa-button-main-text-font-family,var(--wst-button-secondary-font-family,var(--wst-paragraph-2-font-family,var(--wix-font-Body-M-family)))));font-size:var(--wix-ui-tpa-button-hover-text-font-size,var(--wix-ui-tpa-button-main-text-font-size,var(--wix-ui-tpa-button-font-size-default)));font-style:var(--wix-ui-tpa-button-hover-text-font-style,var(--wix-ui-tpa-button-main-text-font-style,var(--wst-button-secondary-font-style,var(--wst-paragraph-2-font-style,var(--wix-font-Body-M-style)))));font-variant:var(--wix-ui-tpa-button-hover-text-font-variant,var(--wix-ui-tpa-button-main-text-font-variant,var(--wst-button-secondary-font-variant,var(--wst-paragraph-2-font-variant,var(--wix-font-Body-M-variant)))));font-weight:var(--wix-ui-tpa-button-hover-text-font-weight,var(--wix-ui-tpa-button-main-text-font-weight,var(--wst-button-secondary-font-weight,var(--wst-paragraph-2-font-weight,var(--wix-font-Body-M-weight)))));line-height:var(--wix-ui-tpa-button-hover-text-font-line-height,var(--wix-ui-tpa-button-main-text-font-line-height,var(--wix-ui-tpa-button-line-height-default)));text-decoration:var(--wix-ui-tpa-button-hover-text-font-text-decoration,var(--wix-ui-tpa-button-main-text-font-text-decoration,var(--wst-button-secondary-text-decoration,var(--wst-paragraph-2-text-decoration,var(--wix-font-Body-M-text-decoration)))))}.sWHTiwe.ojChOw_---priority-9-secondary:active:not(.ojChOw_---hoverStyle-9-underline),.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline){background-color:rgb(var(--wix-ui-tpa-button-hover-background-color,var(--wst-button-secondary-background-color-rgb,var(--wix-color-50),0)));border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))));color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wst-button-secondary-color-rgb,var(--wix-color-52))),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sewooAr{background-color:var(--wst-button-secondary-text-highlight)}.sWHTiwe.oX5PGLp--disabled,.sWHTiwe.ojChOw_---priority-5-basic.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))));border-color:rgb(var(--Button4291672415-basicDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-1)))))}.sWHTiwe.ojChOw_---priority-7-primary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-44))));border-color:rgb(var(--Button4291672415-primaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wix-ui-tpa-button-main-text-color,var(--wst-primary-background-color-rgb,var(--wix-color-46)))))}.sWHTiwe.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-disabled-background-color-opacity, 1)*0));border-color:rgb(var(--Button4291672415-basicSecondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-system-disabled-color-rgb,var(--wix-color-29))))}.sWHTiwe.ojChOw_---priority-9-secondary.oX5PGLp--disabled{background-color:rgb(var(--wix-ui-tpa-button-disabled-background-color,var(--wst-system-disabled-color-rgb,var(--wix-color-53))));border-color:rgb(var(--Button4291672415-secondaryDisabledBorderColor));color:rgb(var(--wix-ui-tpa-button-disabled-text-color,var(--wst-secondary-background-color-rgb,var(--wix-color-55))))}.sWHTiwe.ojChOw_---size-4-tiny{padding:6px 16px}.sWHTiwe.ojChOw_---size-4-tiny.shzMJp6{padding:5.5px 16px}.sWHTiwe.ojChOw_---size-5-small{padding:7px 16px}.sWHTiwe,.sWHTiwe.ojChOw_---size-6-medium{padding:8px 16px}.sWHTiwe.ojChOw_---size-5-large,.sWHTiwe.ojChOw_--mobile,.sWHTiwe.ojChOw_--mobile.ojChOw_---size-6-medium{padding:10px 16px}.sbyYhb2 svg{height:1.5em;margin:calc(-1*(1.5em/4)) 0;width:1.5em}.s__19X6Eo:before,.segOfcF:after{content:"";display:inline-block;height:1px;width:var(--wix-ui-tpa-button-column-gap,4px)}.sWHTiwe .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-1)));transition:color .2s ease-in-out}.sWHTiwe:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-1)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-9-secondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-49)))}.sWHTiwe.ojChOw_---priority-9-secondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-52)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-main-text-color,var(--wix-color-5)))}.sWHTiwe.ojChOw_---priority-14-basicSecondary:hover:not(.ojChOw_---hoverStyle-9-underline) .sbyYhb2 svg[fill=currentColor]{color:rgb(var(--wix-ui-tpa-button-hover-text-color,var(--wix-ui-tpa-button-main-text-color-rgb,var(--wix-color-5)),calc(var(--wix-ui-tpa-button-main-text-color-opacity, 1) * .7)))}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings{box-sizing:border-box;display:inline-flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings .sezcxt9,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings .sezcxt9{overflow:visible;text-overflow:unset;white-space:unset}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_--wrapContent{line-height:1.3!important;white-space:normal}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large:not(.ojChOw_--mobile),.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small:not(.ojChOw_--mobile){line-height:1}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_---size-4-tiny{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary{padding:calc(9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-4-tiny.ojChOw_--wrapContent{padding:calc(6.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary{padding:calc(10px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent{padding:calc(7.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--mobile{padding:calc(11px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-small.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(8.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary{padding:calc(12px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent{padding:calc(9.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--mobile{padding:calc(13px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_--wrapContent.ojChOw_---priority-9-secondary.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-6-medium.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(10.9px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary{padding:calc(16px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent{padding:calc(13.6px - var(--wix-ui-tpa-button-main-border-width, 0px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--mobile{padding:calc(17px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-14-basicSecondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-5-basic.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-7-primary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_---priority-9-secondary.ojChOw_--wrapContent.ojChOw_--mobile,.sWHTiwe.ojChOw_---paddingMode-15-dynamicPaddings.ojChOw_---size-5-large.ojChOw_--wrapContent.ojChOw_--mobile{padding:calc(14.9px - var(--wix-ui-tpa-button-main-border-width, 1px)) 16px}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{border-width:var(--wix-ui-tpa-button-main-border-width,1px);padding-inline-end:var(--wix-ui-tpa-button-padding-inline-end,15px);padding-inline-start:var(--wix-ui-tpa-button-padding-inline-start,15px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic:not(.ojChOw_---hoverStyle-9-underline):hover,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.oX5PGLp--disabled,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-5-basic.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicBorderExPaddingWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--Button4291672415-basicSecondaryHoverLegacyBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-14-basicSecondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--Button4291672415-basicSecondaryDisabledBorderColor)));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--Button4291672415-borderStyle)));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--Button4291672415-basicSecondaryBorderWidth)))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-7-primary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-bottom-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-bottom-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-top-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-top-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-right-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-right-width,var(--Button4291672415-primaryBorderExPaddingWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-primary-border-left-color-rgb,var(--Button4291672415-primaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-primary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-primary-border-left-width,var(--Button4291672415-primaryBorderExPaddingWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary{border-block-end-color:rgb(var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryBorderColor)))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary:not(.ojChOw_---hoverStyle-9-underline):hover{border-block-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-block-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-end-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-hover-border-color,var(--wix-ui-tpa-button-main-border-inline-start-color,var(--wix-ui-tpa-button-main-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryHoverLegacyBorderColor))))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---priority-9-secondary.oX5PGLp--disabled{border-block-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-bottom-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-end-style:var(--wix-ui-tpa-button-main-border-block-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-bottom-style,var(--Button4291672415-borderStyle))));border-block-end-width:var(--wix-ui-tpa-button-main-border-block-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-bottom-width,var(--Button4291672415-secondaryBorderWidth))));border-block-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-top-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-block-start-style:var(--wix-ui-tpa-button-main-border-block-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-top-style,var(--Button4291672415-borderStyle))));border-block-start-width:var(--wix-ui-tpa-button-main-border-block-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-top-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-end-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-right-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-end-style:var(--wix-ui-tpa-button-main-border-inline-end-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-right-style,var(--Button4291672415-borderStyle))));border-inline-end-width:var(--wix-ui-tpa-button-main-border-inline-end-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-right-width,var(--Button4291672415-secondaryBorderWidth))));border-inline-start-color:rgb(var(--wix-ui-tpa-button-disabled-border-color,var(--wst-button-secondary-border-left-color-rgb,var(--Button4291672415-secondaryDisabledBorderColor))));border-inline-start-style:var(--wix-ui-tpa-button-main-border-inline-start-style,var(--wix-ui-tpa-button-main-border-style,var(--wst-button-secondary-border-left-style,var(--Button4291672415-borderStyle))));border-inline-start-width:var(--wix-ui-tpa-button-main-border-inline-start-width,var(--wix-ui-tpa-button-main-border-width,var(--wst-button-secondary-border-left-width,var(--Button4291672415-secondaryBorderWidth))))}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-4-tiny,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-small{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,5px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,5px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings,.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-6-medium{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,7px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,7px)}.sWHTiwe.ojChOw_---paddingMode-16-explicitPaddings.ojChOw_---size-5-large{padding-block-end:var(--wix-ui-tpa-button-padding-block-end,11px);padding-block-start:var(--wix-ui-tpa-button-padding-block-start,11px)}.spPayPE{border-style:solid;box-sizing:border-box;cursor:pointer;display:block;overflow:hidden;position:relative;text-align:center;text-overflow:ellipsis;white-space:nowrap}.spPayPE .sewooAr{display:block;line-height:1.5}.spPayPE.ohrgDww--upgrade .sewooAr{display:inline-block;line-height:1}.syQvNy_{animation:StatesButton4232694921__bounce-in .5s ease 0s 1 normal;height:1.5em;top:.15em}.scujjIz{height:1.5em;width:1.5em}@keyframes StatesButton4232694921__bounce-in{0%{opacity:0;transform:translateY(30px)}32%{opacity:1;transform:translateY(-5px)}68%{opacity:1;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}.shszO9W{--wix-ui-tpa-text-field-main-label-font-text-decoration:var(--wix-forms-formInputLabelFont-text-decoration);--wix-ui-tpa-text-field-main-label-font-line-height:var(--wix-forms-formInputLabelFont-line-height);--wix-ui-tpa-text-field-main-label-font-family:var(--wix-forms-formInputLabelFont-family);--wix-ui-tpa-text-field-main-label-font-size:var(--wix-forms-formInputLabelFont-size);--wix-ui-tpa-text-field-main-label-font-style:var(--wix-forms-formInputLabelFont-style);--wix-ui-tpa-text-field-main-label-font-variant:var(--wix-forms-formInputLabelFont-variant);--wix-ui-tpa-text-field-main-label-font-weight:var(--wix-forms-formInputLabelFont-weight);--wix-ui-tpa-text-field-main-label-text-color:var(--wix-forms-formInputLabelColor);--wix-ui-tpa-text-field-main-label-text-color-rgb:var(--wix-forms-formInputLabelColor-rgb);--wix-ui-tpa-text-field-main-label-text-color-opacity:var(--wix-forms-formInputLabelColor-opacity);word-break:break-word}.shszO9W:empty:before{content:"\200B"}.shszO9W.sE7EeYv{display:block;height:0;margin:0;padding:0;visibility:hidden}.sHbjjkq{margin-inline-start:4px}.sHbjjkq,.smK0B6B{display:inline-block}.smK0B6B{margin-inline-end:4px}.sJ4C9d2{display:flex;flex-direction:column}.s__94TG4h{border-radius:8px;margin-bottom:8px;overflow:hidden;width:100%}.snZ_6f6{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-main-border-opacity:1;--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-disabled-color:var(--wix-forms-formInputDisabledValueColor);--wix-ui-tpa-text-field-main-text-disabled-color-rgb:var(--wix-forms-formInputDisabledValueColor-rgb);--wix-ui-tpa-text-field-main-text-disabled-color-opacity:var(--wix-forms-formInputDisabledValueColor-opacity);--wix-ui-tpa-text-field-readonly-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-readonly-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-readonly-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-readonly-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-readonly-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-readonly-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-readonly-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-readonly-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-readonly-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-readonly-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);--wix-ui-tpa-text-field-readonly-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-readonly-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-readonly-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-readonly-border-color:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)));--wix-ui-tpa-text-field-readonly-border-color-rgb:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -rgb);--wix-ui-tpa-text-field-readonly-border-color-opacity:var(rgb(var(--wix-forms-formInputBorderColor-rgb,var(--wix-color-37)),calc(var(--wix-forms-formInputBorderColor-opacity, 1) * 0)) -opacity);--wix-ui-tpa-text-field-readonly-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-readonly-border-radius:var(--wix-forms-formInputBorderRadius);display:flex;flex-direction:column}.snZ_6f6 [placeholder]{text-overflow:ellipsis}.snZ_6f6 input::placeholder{color:rgb(var(--wix-forms-formInputPlaceholderColor,var(--wix-color-4)))!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{border-radius:var(--wix-forms-formInputBorderRadius,0)!important}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColor-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColor-opacity, 1)*--wix-forms-formInputBackgroundColor-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:focus,.snZ_6f6.snZ_6f6.snZ_6f6.snZ_6f6 input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px rgb(var(--wix-forms-formInputBackgroundColorHover-rgb,var(--wix-color-1)),calc(var(--wix-forms-formInputBackgroundColorHover-opacity, 1)*--wix-forms-formInputBackgroundColorHover-opacity)) inset!important;transition:background-color 5000s ease-in-out 0s}.sWgi58w{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-main-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-hover-border-width:var(--wix-forms-formInputBorderWidth);--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity);display:flex;flex-direction:column}.sy1z4yI{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColor);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColor-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColor-opacity);--wix-ui-tpa-text-field-hover-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-hover-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-hover-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColor);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColor-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColor-opacity);--wix-ui-tpa-text-field-hover-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-hover-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-hover-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity);--wix-ui-tpa-text-field-main-border-width:0px;--wix-ui-tpa-text-field-hover-border-width:0px;--wix-ui-tpa-text-field-readonly-border-width:0px;--wix-ui-tpa-text-field-main-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-border-radius:var(--wix-forms-formInputBorderRadius);--wix-ui-tpa-text-field-hover-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-hover-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-hover-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-main-text-font-text-decoration:var(--wix-forms-formInputValueFont-text-decoration);--wix-ui-tpa-text-field-main-text-font-line-height:var(--wix-forms-formInputValueFont-line-height);--wix-ui-tpa-text-field-main-text-font-family:var(--wix-forms-formInputValueFont-family);--wix-ui-tpa-text-field-main-text-font-size:var(--wix-forms-formInputValueFont-size);--wix-ui-tpa-text-field-main-text-font-style:var(--wix-forms-formInputValueFont-style);--wix-ui-tpa-text-field-main-text-font-variant:var(--wix-forms-formInputValueFont-variant);--wix-ui-tpa-text-field-main-text-font-weight:var(--wix-forms-formInputValueFont-weight);--wix-ui-tpa-text-field-main-text-color:var(--wix-forms-formInputValueColor);--wix-ui-tpa-text-field-main-text-color-rgb:var(--wix-forms-formInputValueColor-rgb);--wix-ui-tpa-text-field-main-text-color-opacity:var(--wix-forms-formInputValueColor-opacity);--wix-ui-tpa-text-field-error-color:var(--wix-forms-formInputErrorColor);--wix-ui-tpa-text-field-error-color-rgb:var(--wix-forms-formInputErrorColor-rgb);--wix-ui-tpa-text-field-error-color-opacity:var(--wix-forms-formInputErrorColor-opacity)}.s_wEX56{--wix-ui-tpa-text-field-main-background-color:var(--wix-forms-formInputBackgroundColorHover);--wix-ui-tpa-text-field-main-background-color-rgb:var(--wix-forms-formInputBackgroundColorHover-rgb);--wix-ui-tpa-text-field-main-background-color-opacity:var(--wix-forms-formInputBackgroundColorHover-opacity);--wix-ui-tpa-text-field-main-border-color:var(--wix-forms-formInputBorderColorHover);--wix-ui-tpa-text-field-main-border-color-rgb:var(--wix-forms-formInputBorderColorHover-rgb);--wix-ui-tpa-text-field-main-border-color-opacity:var(--wix-forms-formInputBorderColorHover-opacity)}.snZ_6f6 div[data-theme=line]{padding-inline-start:12px}.sL5d0Ld div:has(>input){border-bottom-width:var(--wix-forms-formInputBorderBottomWidth,1px)!important;border-left-width:var(--wix-forms-formInputBorderLeftWidth,1px)!important;border-right-width:var(--wix-forms-formInputBorderRightWidth,1px)!important;border-top-width:var(--wix-forms-formInputBorderTopWidth,1px)!important}@media (forced-colors:active){.sL5d0Ld div:has(>input){border:1px solid CanvasText!important}.snZ_6f6:focus-within div:has(>input){outline:2px solid Highlight!important;outline-offset:2px!important}.sL5d0Ld div:has(>input):hover:not(:focus-within){outline:1px dashed CanvasText!important;outline-offset:1px!important}}.sN4uTVR,.s__5kY7XA{--wix-forms-formHeaderOneFont-text-decoration:var(--headerOneFont-text-decoration);--wix-forms-formHeaderOneFont-line-height:var(--headerOneFont-line-height);--wix-forms-formHeaderOneFont-family:var(--headerOneFont-family);--wix-forms-formHeaderOneFont-size:var(--headerOneFont-size);--wix-forms-formHeaderOneFont-style:var(--headerOneFont-style);--wix-forms-formHeaderOneFont-variant:var(--headerOneFont-variant);--wix-forms-formHeaderOneFont-weight:var(--headerOneFont-weight);--wix-forms-formHeaderOneColor:var(--headerOneColor);--wix-forms-formHeaderOneColor-rgb:var(--headerOneColor-rgb);--wix-forms-formHeaderOneColor-opacity:var(--headerOneColor-opacity);--wix-forms-formHeaderTwoFont-text-decoration:var(--headerTwoFont-text-decoration);--wix-forms-formHeaderTwoFont-line-height:var(--headerTwoFont-line-height);--wix-forms-formHeaderTwoFont-family:var(--headerTwoFont-family);--wix-forms-formHeaderTwoFont-size:var(--headerTwoFont-size);--wix-forms-formHeaderTwoFont-style:var(--headerTwoFont-style);--wix-forms-formHeaderTwoFont-variant:var(--headerTwoFont-variant);--wix-forms-formHeaderTwoFont-weight:var(--headerTwoFont-weight);--wix-forms-formHeaderTwoColor:var(--headerTwoColor);--wix-forms-formHeaderTwoColor-rgb:var(--headerTwoColor-rgb);--wix-forms-formHeaderTwoColor-opacity:var(--headerTwoColor-opacity);--wix-forms-formHeaderOneFontH1-text-decoration:var(--headerOneFontH1-text-decoration);--wix-forms-formHeaderOneFontH1-line-height:var(--headerOneFontH1-line-height);--wix-forms-formHeaderOneFontH1-family:var(--headerOneFontH1-family);--wix-forms-formHeaderOneFontH1-size:var(--headerOneFontH1-size);--wix-forms-formHeaderOneFontH1-style:var(--headerOneFontH1-style);--wix-forms-formHeaderOneFontH1-variant:var(--headerOneFontH1-variant);--wix-forms-formHeaderOneFontH1-weight:var(--headerOneFontH1-weight);--wix-forms-formHeaderTwoFontH2-text-decoration:var(--headerTwoFontH2-text-decoration);--wix-forms-formHeaderTwoFontH2-line-height:var(--headerTwoFontH2-line-height);--wix-forms-formHeaderTwoFontH2-family:var(--headerTwoFontH2-family);--wix-forms-formHeaderTwoFontH2-size:var(--headerTwoFontH2-size);--wix-forms-formHeaderTwoFontH2-style:var(--headerTwoFontH2-style);--wix-forms-formHeaderTwoFontH2-variant:var(--headerTwoFontH2-variant);--wix-forms-formHeaderTwoFontH2-weight:var(--headerTwoFontH2-weight);--wix-forms-formHeaderThreeFont-text-decoration:var(--headerThreeFont-text-decoration);--wix-forms-formHeaderThreeFont-line-height:var(--headerThreeFont-line-height);--wix-forms-formHeaderThreeFont-family:var(--headerThreeFont-family);--wix-forms-formHeaderThreeFont-size:var(--headerThreeFont-size);--wix-forms-formHeaderThreeFont-style:var(--headerThreeFont-style);--wix-forms-formHeaderThreeFont-variant:var(--headerThreeFont-variant);--wix-forms-formHeaderThreeFont-weight:var(--headerThreeFont-weight);--wix-forms-formHeaderThreeColor:var(--headerThreeColor);--wix-forms-formHeaderThreeColor-rgb:var(--headerThreeColor-rgb);--wix-forms-formHeaderThreeColor-opacity:var(--headerThreeColor-opacity);--wix-forms-formHeaderFourFont-text-decoration:var(--headerFourFont-text-decoration);--wix-forms-formHeaderFourFont-line-height:var(--headerFourFont-line-height);--wix-forms-formHeaderFourFont-family:var(--headerFourFont-family);--wix-forms-formHeaderFourFont-size:var(--headerFourFont-size);--wix-forms-formHeaderFourFont-style:var(--headerFourFont-style);--wix-forms-formHeaderFourFont-variant:var(--headerFourFont-variant);--wix-forms-formHeaderFourFont-weight:var(--headerFourFont-weight);--wix-forms-formHeaderFourColor:var(--headerFourColor);--wix-forms-formHeaderFourColor-rgb:var(--headerFourColor-rgb);--wix-forms-formHeaderFourColor-opacity:var(--headerFourColor-opacity);--wix-forms-formHeaderFiveFont-text-decoration:var(--headerFiveFont-text-decoration);--wix-forms-formHeaderFiveFont-line-height:var(--headerFiveFont-line-height);--wix-forms-formHeaderFiveFont-family:var(--headerFiveFont-family);--wix-forms-formHeaderFiveFont-size:var(--headerFiveFont-size);--wix-forms-formHeaderFiveFont-style:var(--headerFiveFont-style);--wix-forms-formHeaderFiveFont-variant:var(--headerFiveFont-variant);--wix-forms-formHeaderFiveFont-weight:var(--headerFiveFont-weight);--wix-forms-formHeaderFiveColor:var(--headerFiveColor);--wix-forms-formHeaderFiveColor-rgb:var(--headerFiveColor-rgb);--wix-forms-formHeaderFiveColor-opacity:var(--headerFiveColor-opacity);--wix-forms-formHeaderSixFont-text-decoration:var(--headerSixFont-text-decoration);--wix-forms-formHeaderSixFont-line-height:var(--headerSixFont-line-height);--wix-forms-formHeaderSixFont-family:var(--headerSixFont-family);--wix-forms-formHeaderSixFont-size:var(--headerSixFont-size);--wix-forms-formHeaderSixFont-style:var(--headerSixFont-style);--wix-forms-formHeaderSixFont-variant:var(--headerSixFont-variant);--wix-forms-formHeaderSixFont-weight:var(--headerSixFont-weight);--wix-forms-formHeaderSixColor:var(--headerSixColor);--wix-forms-formHeaderSixColor-rgb:var(--headerSixColor-rgb);--wix-forms-formHeaderSixColor-opacity:var(--headerSixColor-opacity);--wix-forms-formParagraphFont-text-decoration:var(--paragraphFont-text-decoration);--wix-forms-formParagraphFont-line-height:var(--paragraphFont-line-height);--wix-forms-formParagraphFont-family:var(--paragraphFont-family);--wix-forms-formParagraphFont-size:var(--paragraphFont-size);--wix-forms-formParagraphFont-style:var(--paragraphFont-style);--wix-forms-formParagraphFont-variant:var(--paragraphFont-variant);--wix-forms-formParagraphFont-weight:var(--paragraphFont-weight);--wix-forms-formParagraphColor:var(--paragraphColor);--wix-forms-formParagraphColor-rgb:var(--paragraphColor-rgb);--wix-forms-formParagraphColor-opacity:var(--paragraphColor-opacity);--wix-forms-formInputBackgroundColor:var(--inputBackgroundColor);--wix-forms-formInputBackgroundColor-rgb:var(--inputBackgroundColor-rgb);--wix-forms-formInputBackgroundColor-opacity:var(--inputBackgroundColor-opacity);--wix-forms-formInputBackgroundColorHover:var(--inputBackgroundColorHover);--wix-forms-formInputBackgroundColorHover-rgb:var(--inputBackgroundColorHover-rgb);--wix-forms-formInputBackgroundColorHover-opacity:var(--inputBackgroundColorHover-opacity);--wix-forms-formInputBorderColor:var(--inputBorderColor);--wix-forms-formInputBorderColor-rgb:var(--inputBorderColor-rgb);--wix-forms-formInputBorderColor-opacity:var(--inputBorderColor-opacity);--wix-forms-formInputBorderColorHover:var(--inputBorderColorHover);--wix-forms-formInputBorderColorHover-rgb:var(--inputBorderColorHover-rgb);--wix-forms-formInputBorderColorHover-opacity:var(--inputBorderColorHover-opacity);--wix-forms-formInputBorderWidth:calc(var(--inputBorderWidth) * 1px);--wix-forms-formInputBorderWidthHover:calc(var(--inputBorderWidthHover) * 1px);--wix-forms-formInputLabelFont-text-decoration:var(--inputLabelFont-text-decoration);--wix-forms-formInputLabelFont-line-height:var(--inputLabelFont-line-height);--wix-forms-formInputLabelFont-family:var(--inputLabelFont-family);--wix-forms-formInputLabelFont-size:var(--inputLabelFont-size);--wix-forms-formInputLabelFont-style:var(--inputLabelFont-style);--wix-forms-formInputLabelFont-variant:var(--inputLabelFont-variant);--wix-forms-formInputLabelFont-weight:var(--inputLabelFont-weight);--wix-forms-formInputLabelColor:var(--inputLabelColor);--wix-forms-formInputLabelColor-rgb:var(--inputLabelColor-rgb);--wix-forms-formInputLabelColor-opacity:var(--inputLabelColor-opacity);--wix-forms-formInputValueFont-text-decoration:var(--inputValueFont-text-decoration);--wix-forms-formInputValueFont-line-height:var(--inputValueFont-line-height);--wix-forms-formInputValueFont-family:var(--inputValueFont-family);--wix-forms-formInputValueFont-size:var(--inputValueFont-size);--wix-forms-formInputValueFont-style:var(--inputValueFont-style);--wix-forms-formInputValueFont-variant:var(--inputValueFont-variant);--wix-forms-formInputValueFont-weight:var(--inputValueFont-weight);--wix-forms-formInputValueColor:var(--inputValueColor);--wix-forms-formInputValueColor-rgb:var(--inputValueColor-rgb);--wix-forms-formInputValueColor-opacity:var(--inputValueColor-opacity);--wix-forms-formInputOptionColor:var(--inputOptionColor);--wix-forms-formInputOptionColor-rgb:var(--inputOptionColor-rgb);--wix-forms-formInputOptionColor-opacity:var(--inputOptionColor-opacity);--wix-forms-formInputPlaceholderColor:var(--inputPlaceholderColor);--wix-forms-formInputPlaceholderColor-rgb:var(--inputPlaceholderColor-rgb);--wix-forms-formInputPlaceholderColor-opacity:var(--inputPlaceholderColor-opacity);--wix-forms-formInputErrorColor:var(--inputErrorColor);--wix-forms-formInputErrorColor-rgb:var(--inputErrorColor-rgb);--wix-forms-formInputErrorColor-opacity:var(--inputErrorColor-opacity);--wix-forms-formInputBorderRadius:calc(var(--inputBorderRadius) * 1px);--wix-forms-formLinkColor:var(--linkColor);--wix-forms-formLinkColor-rgb:var(--linkColor-rgb);--wix-forms-formLinkColor-opacity:var(--linkColor-opacity);--wix-forms-formThankYouMessageFont-text-decoration:var(--thankYouMessageFont-text-decoration);--wix-forms-formThankYouMessageFont-line-height:var(--thankYouMessageFont-line-height);--wix-forms-formThankYouMessageFont-family:var(--thankYouMessageFont-family);--wix-forms-formThankYouMessageFont-size:var(--thankYouMessageFont-size);--wix-forms-formThankYouMessageFont-style:var(--thankYouMessageFont-style);--wix-forms-formThankYouMessageFont-variant:var(--thankYouMessageFont-variant);--wix-forms-formThankYouMessageFont-weight:var(--thankYouMessageFont-weight);--wix-forms-formThankYouMessageColor:var(--thankYouMessageColor);--wix-forms-formThankYouMessageColor-rgb:var(--thankYouMessageColor-rgb);--wix-forms-formThankYouMessageColor-opacity:var(--thankYouMessageColor-opacity);--wix-forms-formInputBorderStyle:var(--inputBorderStyle);--wix-forms-formInputSelectionColor:var(--inputSelectionColor);--wix-forms-formInputSelectionColor-rgb:var(--inputSelectionColor-rgb);--wix-forms-formInputSelectionColor-opacity:var(--inputSelectionColor-opacity);--wix-forms-formDropdownBackgroundColor:var(--dropdownBackgroundColor);--wix-forms-formDropdownBackgroundColor-rgb:var(--dropdownBackgroundColor-rgb);--wix-forms-formDropdownBackgroundColor-opacity:var(--dropdownBackgroundColor-opacity);--wix-forms-formDropdownOptionTextColor:var(--dropdownOptionTextColor);--wix-forms-formDropdownOptionTextColor-rgb:var(--dropdownOptionTextColor-rgb);--wix-forms-formDropdownOptionTextColor-opacity:var(--dropdownOptionTextColor-opacity);--wix-forms-formInputNoteFont-text-decoration:var(--inputNoteFont-text-decoration);--wix-forms-formInputNoteFont-line-height:var(--inputNoteFont-line-height);--wix-forms-formInputNoteFont-family:var(--inputNoteFont-family);--wix-forms-formInputNoteFont-size:var(--inputNoteFont-size);--wix-forms-formInputNoteFont-style:var(--inputNoteFont-style);--wix-forms-formInputNoteFont-variant:var(--inputNoteFont-variant);--wix-forms-formInputNoteFont-weight:var(--inputNoteFont-weight);--wix-forms-formInputNoteColor:var(--inputNoteColor);--wix-forms-formInputNoteColor-rgb:var(--inputNoteColor-rgb);--wix-forms-formInputNoteColor-opacity:var(--inputNoteColor-opacity);--wix-forms-formButtonsColor:var(--buttonsColor);--wix-forms-formButtonsColor-rgb:var(--buttonsColor-rgb);--wix-forms-formButtonsColor-opacity:var(--buttonsColor-opacity);--wix-forms-formButtonsColorHover:var(--buttonsColorHover);--wix-forms-formButtonsColorHover-rgb:var(--buttonsColorHover-rgb);--wix-forms-formButtonsColorHover-opacity:var(--buttonsColorHover-opacity);--wix-forms-formButtonsBackgroundColor:var(--buttonsBackgroundColor);--wix-forms-formButtonsBackgroundColor-rgb:var(--buttonsBackgroundColor-rgb);--wix-forms-formButtonsBackgroundColor-opacity:var(--buttonsBackgroundColor-opacity);--wix-forms-formButtonsBackgroundColorHover:var(--buttonsBackgroundColorHover);--wix-forms-formButtonsBackgroundColorHover-rgb:var(--buttonsBackgroundColorHover-rgb);--wix-forms-formButtonsBackgroundColorHover-opacity:var(--buttonsBackgroundColorHover-opacity);--wix-forms-formButtonsBorderColor:var(--buttonsBorderColor);--wix-forms-formButtonsBorderColor-rgb:var(--buttonsBorderColor-rgb);--wix-forms-formButtonsBorderColor-opacity:var(--buttonsBorderColor-opacity);--wix-forms-formButtonsBorderWidth:calc(var(--buttonsBorderWidth) * 1px);--wix-forms-formButtonsBorderRadius:calc(var(--buttonsBorderRadius) * 1px);--wix-forms-formButtonsFont-text-decoration:var(--buttonsFont-text-decoration);--wix-forms-formButtonsFont-line-height:var(--buttonsFont-line-height);--wix-forms-formButtonsFont-family:var(--buttonsFont-family);--wix-forms-formButtonsFont-size:var(--buttonsFont-size);--wix-forms-formButtonsFont-style:var(--buttonsFont-style);--wix-forms-formButtonsFont-variant:var(--buttonsFont-variant);--wix-forms-formButtonsFont-weight:var(--buttonsFont-weight);--wix-forms-formButtonsFontHover-text-decoration:var(--buttonsFontHover-text-decoration);--wix-forms-formButtonsFontHover-line-height:var(--buttonsFontHover-line-height);--wix-forms-formButtonsFontHover-family:var(--buttonsFontHover-family);--wix-forms-formButtonsFontHover-size:var(--buttonsFontHover-size);--wix-forms-formButtonsFontHover-style:var(--buttonsFontHover-style);--wix-forms-formButtonsFontHover-variant:var(--buttonsFontHover-variant);--wix-forms-formButtonsFontHover-weight:var(--buttonsFontHover-weight);--wix-forms-formNextButtonFont-text-decoration:var(--nextButtonFont-text-decoration);--wix-forms-formNextButtonFont-line-height:var(--nextButtonFont-line-height);--wix-forms-formNextButtonFont-family:var(--nextButtonFont-family);--wix-forms-formNextButtonFont-size:var(--nextButtonFont-size);--wix-forms-formNextButtonFont-style:var(--nextButtonFont-style);--wix-forms-formNextButtonFont-variant:var(--nextButtonFont-variant);--wix-forms-formNextButtonFont-weight:var(--nextButtonFont-weight);--wix-forms-formNextButtonFontHover-text-decoration:var(--nextButtonFontHover-text-decoration);--wix-forms-formNextButtonFontHover-line-height:var(--nextButtonFontHover-line-height);--wix-forms-formNextButtonFontHover-family:var(--nextButtonFontHover-family);--wix-forms-formNextButtonFontHover-size:var(--nextButtonFontHover-size);--wix-forms-formNextButtonFontHover-style:var(--nextButtonFontHover-style);--wix-forms-formNextButtonFontHover-variant:var(--nextButtonFontHover-variant);--wix-forms-formNextButtonFontHover-weight:var(--nextButtonFontHover-weight);--wix-forms-formNextButtonColor:var(--nextButtonColor);--wix-forms-formNextButtonColor-rgb:var(--nextButtonColor-rgb);--wix-forms-formNextButtonColor-opacity:var(--nextButtonColor-opacity);--wix-forms-formNextButtonColorHover:var(--nextButtonColorHover);--wix-forms-formNextButtonColorHover-rgb:var(--nextButtonColorHover-rgb);--wix-forms-formNextButtonColorHover-opacity:var(--nextButtonColorHover-opacity);--wix-forms-formNextButtonBackgroundColor:var(--nextButtonBackgroundColor);--wix-forms-formNextButtonBackgroundColor-rgb:var(--nextButtonBackgroundColor-rgb);--wix-forms-formNextButtonBackgroundColor-opacity:var(--nextButtonBackgroundColor-opacity);--wix-forms-formNextButtonBackgroundColorHover:var(--nextButtonBackgroundColorHover);--wix-forms-formNextButtonBackgroundColorHover-rgb:var(--nextButtonBackgroundColorHover-rgb);--wix-forms-formNextButtonBackgroundColorHover-opacity:var(--nextButtonBackgroundColorHover-opacity);--wix-forms-formNextButtonBorderColor:var(--nextButtonBorderColor);--wix-forms-formNextButtonBorderColor-rgb:var(--nextButtonBorderColor-rgb);--wix-forms-formNextButtonBorderColor-opacity:var(--nextButtonBorderColor-opacity);--wix-forms-formNextButtonBorderColorHover:var(--nextButtonBorderColorHover);--wix-forms-formNextButtonBorderColorHover-rgb:var(--nextButtonBorderColorHover-rgb);--wix-forms-formNextButtonBorderColorHover-opacity:var(--nextButtonBorderColorHover-opacity);--wix-forms-formNextButtonBorderWidth:calc(var(--nextButtonBorderWidth) * 1px);--wix-forms-formNextButtonBorderRadius:calc(var(--nextButtonBorderRadius) * 1px);--wix-forms-formPreviousButtonFont-text-decoration:var(--previousButtonFont-text-decoration);--wix-forms-formPreviousButtonFont-line-height:var(--previousButtonFont-line-height);--wix-forms-formPreviousButtonFont-family:var(--previousButtonFont-family);--wix-forms-formPreviousButtonFont-size:var(--previousButtonFont-size);--wix-forms-formPreviousButtonFont-style:var(--previousButtonFont-style);--wix-forms-formPreviousButtonFont-variant:var(--previousButtonFont-variant);--wix-forms-formPreviousButtonFont-weight:var(--previousButtonFont-weight);--wix-forms-formPreviousButtonFontHover-text-decoration:var(--previousButtonFontHover-text-decoration);--wix-forms-formPreviousButtonFontHover-line-height:var(--previousButtonFontHover-line-height);--wix-forms-formPreviousButtonFontHover-family:var(--previousButtonFontHover-family);--wix-forms-formPreviousButtonFontHover-size:var(--previousButtonFontHover-size);--wix-forms-formPreviousButtonFontHover-style:var(--previousButtonFontHover-style);--wix-forms-formPreviousButtonFontHover-variant:var(--previousButtonFontHover-variant);--wix-forms-formPreviousButtonFontHover-weight:var(--previousButtonFontHover-weight);--wix-forms-formPreviousButtonColor:var(--previousButtonColor);--wix-forms-formPreviousButtonColor-rgb:var(--previousButtonColor-rgb);--wix-forms-formPreviousButtonColor-opacity:var(--previousButtonColor-opacity);--wix-forms-formPreviousButtonColorHover:var(--previousButtonColorHover);--wix-forms-formPreviousButtonColorHover-rgb:var(--previousButtonColorHover-rgb);--wix-forms-formPreviousButtonColorHover-opacity:var(--previousButtonColorHover-opacity);--wix-forms-formPreviousButtonBackgroundColor:var(--previousButtonBackgroundColor);--wix-forms-formPreviousButtonBackgroundColor-rgb:var(--previousButtonBackgroundColor-rgb);--wix-forms-formPreviousButtonBackgroundColor-opacity:var(--previousButtonBackgroundColor-opacity);--wix-forms-formPreviousButtonBackgroundColorHover:var(--previousButtonBackgroundColorHover);--wix-forms-formPreviousButtonBackgroundColorHover-rgb:var(--previousButtonBackgroundColorHover-rgb);--wix-forms-formPreviousButtonBackgroundColorHover-opacity:var(--previousButtonBackgroundColorHover-opacity);--wix-forms-formPreviousButtonBorderColor:var(--previousButtonBorderColor);--wix-forms-formPreviousButtonBorderColor-rgb:var(--previousButtonBorderColor-rgb);--wix-forms-formPreviousButtonBorderColor-opacity:var(--previousButtonBorderColor-opacity);--wix-forms-formPreviousButtonBorderColorHover:var(--previousButtonBorderColorHover);--wix-forms-formPreviousButtonBorderColorHover-rgb:var(--previousButtonBorderColorHover-rgb);--wix-forms-formPreviousButtonBorderColorHover-opacity:var(--previousButtonBorderColorHover-opacity);--wix-forms-formPreviousButtonBorderWidth:calc(var(--previousButtonBorderWidth) * 1px);--wix-forms-formPreviousButtonBorderRadius:calc(var(--previousButtonBorderRadius) * 1px);--wix-forms-formSubmitButtonFont-text-decoration:var(--submitButtonFont-text-decoration);--wix-forms-formSubmitButtonFont-line-height:var(--submitButtonFont-line-height);--wix-forms-formSubmitButtonFont-family:var(--submitButtonFont-family);--wix-forms-formSubmitButtonFont-size:var(--submitButtonFont-size);--wix-forms-formSubmitButtonFont-style:var(--submitButtonFont-style);--wix-forms-formSubmitButtonFont-variant:var(--submitButtonFont-variant);--wix-forms-formSubmitButtonFont-weight:var(--submitButtonFont-weight);--wix-forms-formSubmitButtonFontHover-text-decoration:var(--submitButtonFontHover-text-decoration);--wix-forms-formSubmitButtonFontHover-line-height:var(--submitButtonFontHover-line-height);--wix-forms-formSubmitButtonFontHover-family:var(--submitButtonFontHover-family);--wix-forms-formSubmitButtonFontHover-size:var(--submitButtonFontHover-size);--wix-forms-formSubmitButtonFontHover-style:var(--submitButtonFontHover-style);--wix-forms-formSubmitButtonFontHover-variant:var(--submitButtonFontHover-variant);--wix-forms-formSubmitButtonFontHover-weight:var(--submitButtonFontHover-weight);--wix-forms-formSubmitButtonColor:var(--submitButtonColor);--wix-forms-formSubmitButtonColor-rgb:var(--submitButtonColor-rgb);--wix-forms-formSubmitButtonColor-opacity:var(--submitButtonColor-opacity);--wix-forms-formSubmitButtonColorHover:var(--submitButtonColorHover);--wix-forms-formSubmitButtonColorHover-rgb:var(--submitButtonColorHover-rgb);--wix-forms-formSubmitButtonColorHover-opacity:var(--submitButtonColorHover-opacity);--wix-forms-formSubmitButtonBackgroundColor:var(--submitButtonBackgroundColor);--wix-forms-formSubmitButtonBackgroundColor-rgb:var(--submitButtonBackgroundColor-rgb);--wix-forms-formSubmitButtonBackgroundColor-opacity:var(--submitButtonBackgroundColor-opacity);--wix-forms-formSubmitButtonBackgroundColorHover:var(--submitButtonBackgroundColorHover);--wix-forms-formSubmitButtonBackgroundColorHover-rgb:var(--submitButtonBackgroundColorHover-rgb);--wix-forms-formSubmitButtonBackgroundColorHover-opacity:var(--submitButtonBackgroundColorHover-opacity);--wix-forms-formSubmitButtonBorderColor:var(--submitButtonBorderColor);--wix-forms-formSubmitButtonBorderColor-rgb:var(--submitButtonBorderColor-rgb);--wix-forms-formSubmitButtonBorderColor-opacity:var(--submitButtonBorderColor-opacity);--wix-forms-formSubmitButtonBorderColorHover:var(--submitButtonBorderColorHover);--wix-forms-formSubmitButtonBorderColorHover-rgb:var(--submitButtonBorderColorHover-rgb);--wix-forms-formSubmitButtonBorderColorHover-opacity:var(--submitButtonBorderColorHover-opacity);--wix-forms-formSubmitButtonBorderWidth:calc(var(--submitButtonBorderWidth) * 1px);--wix-forms-formSubmitButtonBorderRadius:calc(var(--submitButtonBorderRadius) * 1px);--wix-forms-formColumnSpacing:calc(var(--columnSpacing) * 1px);--wix-forms-formRowSpacing:calc(var(--rowSpacing) * 1px);--wix-forms-formBackground:var(--formBackground);--wix-forms-formBackground-rgb:var(--formBackground-rgb);--wix-forms-formBackground-opacity:var(--formBackground-opacity);--wix-forms-formInputBorderLeftWidth:calc(var(--inputBorderLeftWidth) * 1px);--wix-forms-formInputBorderRightWidth:calc(var(--inputBorderRightWidth) * 1px);--wix-forms-formInputBorderTopWidth:calc(var(--inputBorderTopWidth) * 1px);--wix-forms-formInputBorderBottomWidth:calc(var(--inputBorderBottomWidth) * 1px)}.sN4uTVR{background:rgba(var(--formBackground));border-color:rgba(var(--borderColor));border-radius:calc(var(--borderRadius)*1px);border-style:solid;border-width:calc(var(--borderWidth)*1px);box-sizing:border-box;padding-bottom:calc(var(--verticalPadding)*1px);padding-left:calc(var(--horizontalPadding)*1px);padding-right:calc(var(--horizontalPadding)*1px);padding-top:calc(var(--verticalPadding)*1px)}.sHoCdRI{box-shadow:var(--index2490108247-shadowXOffset) var(--index2490108247-shadowYOffset) calc(var(--shadowBlur)*1px) calc(var(--shadowSize)*1px) rgba(var(--shadowColor))}@container (max-width: 288px){.sN4uTVR form fieldset>div{column-gap:0!important}}.CvQpuc{align-items:center;background:rgba(var(--formBackground));box-sizing:border-box;display:flex;flex-direction:column;height:100%;justify-content:center;padding:20px;text-align:center;width:100%}._Kekmv{font-size:18px!important;font-weight:700!important;line-height:24px!important;margin:24px 0 8px 0}.yriMaM{font-size:14px!important;font-weight:400!important;line-height:18px!important}._Kekmv,.yriMaM{font-family:Madefor,Helvetica Neue,Helvetica,Arial,sans-serif!important}.Qq9p0F{align-items:center;display:flex;flex-direction:column;text-align:center}.Qq9p0F .tQFwnj{margin-bottom:12px}.Qq9p0F .IqzMYA{margin-top:12px}.YSDaGO{animation:lWfcIs .4s ease}@keyframes lWfcIs{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.ckHV4G{display:flex;flex-direction:column;gap:var(--wix-forms-formRowSpacing,24px);width:100%}.GLWhGq{-moz-column-gap:var(--wix-forms-formColumnSpacing,24px);column-gap:var(--wix-forms-formColumnSpacing,24px)}.DXT5mJ{row-gap:var(--wix-forms-formRowSpacing,0)}.WLnTYL,.rSNHo6{margin-top:24px}.rSNHo6{align-items:center;color:rgb(var(--wix-forms-formInputErrorColor,223,49,49))!important;display:flex;font-family:Madefor,Helvetica Neue,Helvetica,Arial,メイリオ,meiryo,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,sans-serif;font-size:16px;justify-content:center;line-height:1.4;min-height:20px}.PzL7AI{margin-right:2px}.pdfCm{direction:ltr}.jToQW{direction:rtl}.HosD-{background:transparent;border:none;cursor:pointer;display:flex;outline:none;padding-inline-end:14px;padding-inline-start:10px}.HosD-:hover{opacity:.7}.jToQW .HosD-{transform:scaleX(-1)}.HosD-:focus-visible .UM01p{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}.HosD- .UM01p{fill:#646464;color:#646464;outline:none;transition:transform .15s linear}.HosD- .UM01p.mTw6G{transform:rotate(90deg)}.ScyVy{overflow-wrap:break-word;width:100%;word-break:break-word}@media print{.HosD- .UM01p{transform:rotate(90deg)!important}}.l0N8d{align-items:center;cursor:auto;display:flex;margin:12px 0}.l0N8d .aXjZR{flex:1}.l0N8d p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.l0N8d p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}._3RkWr{margin:10px 0 12px}.ZvAeV{margin:0;min-height:48px}.ZvAeV._3RkWr{cursor:pointer;margin:2px 0}._2DBY0{align-self:start;display:flex;outline:none}._2DBY0,.eBhx-{padding-top:12px}.eBhx-{cursor:grab;position:absolute}.eBhx-:hover{opacity:.7}.eBhx- svg{fill:#646464;color:#646464}.NP-6A{right:-23px}.F6ia-{left:-23px}.QxwkN{display:flex;flex-direction:row;position:relative}.QxwkN p[data-text-align=right][data-placeholder]:first-child:before{left:0;right:0;text-align:right;width:100%}.QxwkN p[data-text-align=left][data-placeholder]:first-child:before{left:0;right:0;text-align:left;width:100%}.ImTU9{margin:2px 0}.zTHZ5{cursor:pointer;display:flex;flex-direction:row;outline:none;width:100%}.zTHZ5:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.wCts7{display:flex;flex-direction:row}.aEBup{flex:0 0 48px}._3Sfx1{cursor:grabbing}.VqL-4,.hrdcY{min-width:0;width:100%}.hrdcY{display:flex;flex-direction:column}.VSINL{--ricos-custom-editor-add-plugin-button-position-inline-start:-36px}.bCXc8{display:none}@media print{.bCXc8{display:block!important}}.glob_fontElementMap,.zPN84{font-family:var(--ricos-font-family,unset)}.LRZrT{color:var(--ricos-custom-link-color,var(--ricos-action-color,#116dff));font-family:var(--ricos-custom-link-font-family,unset);font-size:var(--ricos-custom-link-font-size,unset);font-style:var(--ricos-custom-link-font-style,unset);font-weight:var(--ricos-custom-link-font-weight,unset);letter-spacing:var(--ricos-custom-link-letter-spacing,unset);line-height:var(--ricos-custom-link-line-height,unset);min-height:var(--ricos-custom-link-min-height,unset);-webkit-text-decoration:var(--ricos-custom-link-text-decoration,none);text-decoration:var(--ricos-custom-link-text-decoration,none)}._4dOZS:hover{cursor:text}.z7mqB:hover{cursor:pointer}.NI44M{display:flex;margin-right:5px}.md0f2{color:var(--ricos-settings-action-color,var(--ricos-action-color-fallback,#116dff));max-width:270px;overflow:hidden;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}@supports (color:rgb(from #000 r g b/0.1)){.md0f2{color:var(--ricos-settings-action-color,rgb(from var(--ricos-action-color,#116dff) min(r,150) min(g,150) min(b,150)))}}.md0f2:hover{text-decoration:underline}._2Wt3P:hover{cursor:pointer}@supports not (contain:inline-size){@media only screen and (max-width:480px){.md0f2{max-width:160px}}}@container (width < 480px){.md0f2{max-width:160px}}.ElBhne{width:100%}.dF3Dv0{align-items:center;background:rgba(var(--wix-forms-formBackground));display:flex;inset:0;justify-content:center;position:absolute;z-index:1}.dF3Dv0>div{height:auto;width:100%}.kLNiUo{border:none;margin:0;padding:0}.D8AT5x>fieldset,.zeyg5V{pointer-events:none}.D8AT5x>fieldset{visibility:hidden}.D8AT5x{position:relative}.M94ODH{align-items:center;display:flex;flex-direction:column;gap:12px}.M94ODH .QBpKk2{border-radius:4px!important}.eiknuc{display:block;height:100%;width:100%}.eiknuc img{max-width:var(--wix-img-max-width,100%)}.eiknuc[data-animate-blur] img{filter:blur(9px);transition:filter .8s ease-in}.eiknuc[data-animate-blur] img[data-load-done]{filter:none}.CKafKt{font-size:12px!important;margin-top:8px}.mKhPRp{display:inline-flex}.A3sImb{cursor:default}</style> | |
| 233 | +<!-- Loadable Component comp-m8omf94t --> | |
| 234 | + | |
| 235 | +<!-- Loadable Component comp-m8omf94t --> | |
| 236 | +<script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[]</script><script id="comp-m8omf94t__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":[]}</script> | |
| 237 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 238 | +<style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.css">.sk_ESYz{--wix-ui-tpa-text-button-main-text-font-text-decoration:var(--wix-forms-formParagraphFont-text-decoration);--wix-ui-tpa-text-button-main-text-font-line-height:var(--wix-forms-formParagraphFont-line-height);--wix-ui-tpa-text-button-main-text-font-family:var(--wix-forms-formParagraphFont-family);--wix-ui-tpa-text-button-main-text-font-size:var(--wix-forms-formParagraphFont-size);--wix-ui-tpa-text-button-main-text-font-style:var(--wix-forms-formParagraphFont-style);--wix-ui-tpa-text-button-main-text-font-variant:var(--wix-forms-formParagraphFont-variant);--wix-ui-tpa-text-button-main-text-font-weight:var(--wix-forms-formParagraphFont-weight)}.sk_ESYz,.sk_ESYz:hover{color:var(--ricosviewer2135568863-wix-forms-formLinkColor,rgba(var(--wix-color-8),1))!important}</style><style data-href="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/1277.chunk.min.css">.WdrX8{direction:rtl}.xWJx0{direction:ltr}.Y0khg{margin-left:0;margin-right:auto;z-index:1}.Y0khg:not(.g3kHM){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}}@container (width < 480px){.Y0khg:not(.g3kHM){float:none;margin-right:auto}}.BzQKU{margin-left:auto;margin-right:0;z-index:1}.BzQKU:not(.g3kHM){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}}@container (width < 480px){.BzQKU:not(.g3kHM){float:none;margin-left:auto}}.NY-QD{clear:both;display:block}.NY-QD:not(._0Z9DY){margin-left:auto;margin-right:auto;max-width:100%}._0Z9DY,.g3kHM{width:100%}.fwEUh ._0Z9DY,.fwEUh .g3kHM{margin:0 -8px;width:auto}.NwCLa{width:-moz-fit-content;width:fit-content}._50Ywj{margin-left:auto;margin-right:auto;max-width:100%}.eX7c9{width:min(350px,100%)!important}.fwEUh .eX7c9{width:50%}._0a1LY{margin-left:auto;margin-right:auto}.fwEUh ._0a1LY{width:150px}.sFMd1{display:flex}._6lkns,._6lkns>*{text-align:left}.Vbf1a,.Vbf1a>*{text-align:center}.NcJLH,.NcJLH>*{text-align:right}._0uG9a,._0uG9a>*{text-align:initial}.jswSl{text-align:justify!important;white-space:pre-wrap!important}.ZnMEC,.glob_fontElementMap,.zrLtk{font-family:var(--ricos-font-family,unset)}.pY8WU{max-width:100%}.zrLtk{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-content:start;box-sizing:border-box;display:grid;grid-template-columns:minmax(0,1fr);height:100%;padding-block-end:var(--ricos-custom-container-padding-block-end,0);padding-block-start:var(--ricos-custom-container-padding-block-start,0);position:relative}.zrLtk:has([data-layout-banner=top]){padding-block-start:0}.zrLtk:has([data-layout-banner=bottom]){padding-block-end:0}.zrLtk *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.zrLtk .tlZw8{box-sizing:border-box;-moz-tab-size:40px;-o-tab-size:40px;tab-size:40px}.zrLtk .tlZw8 *,.zrLtk .tlZw8 :after,.zrLtk .tlZw8 :before{box-sizing:inherit}.zrLtk .tlZw8 input{box-sizing:border-box}.zrLtk.YHur4{padding-top:50px}.tlZw8{word-wrap:break-word;background-color:var(--ricos-bg-color-container,unset);color:var(--ricos-text-color,#212121);container-type:inline-size;font-size:16px;height:100%;line-height:1.5;overflow-wrap:break-word;white-space:pre-wrap;white-space:break-spaces;width:100%}.tlZw8:after{clear:both;content:"";display:table;line-height:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.tlZw8{font-size:14px}}}@container (width < 480px){.tlZw8{font-size:14px}}._7UvJA{width:100%}._7UvJA [data-breakout=normal]{padding-inline-end:var(--ricos-breakout-normal-padding-end,0);padding-inline-start:var(--ricos-breakout-normal-padding-start,0)}._7UvJA [data-breakout=fullWidth]{padding-inline-end:var(--ricos-breakout-full-width-padding-end,0);padding-inline-start:var(--ricos-breakout-full-width-padding-start,0)}._7UvJA [data-gap-spacer-top-margin]{margin-top:14px}._8B4zb{margin:2px 0}.DjL2Y,.b8HqH+.b8HqH{margin-top:20px}@media print{.tlZw8{height:auto}body{background-color:var(--rt-design-background-color,var(--rt-design-background-image-bg-color,var(--ricos-background-color,#fff)))}}._41BxQ{margin-inline-start:0!important}.wlxXY{margin-inline-start:40px!important}.uXCyf{margin-inline-start:80px!important}._746dJ{margin-inline-start:120px!important}.QC6Qc{margin-inline-start:160px!important}.sLvSN{margin-inline-start:200px!important}.WSqt-{margin-inline-start:240px!important}.Ik8pK{margin-left:0;margin-right:auto;z-index:1}.Ik8pK:not(.NtNUw){float:left;margin-right:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}}@container (width < 480px){.Ik8pK:not(.NtNUw){float:none;margin-right:auto}}.U1e7f{margin-left:auto;margin-right:0;z-index:1}.U1e7f:not(.NtNUw){float:right;margin-left:40px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}}@container (width < 480px){.U1e7f:not(.NtNUw){float:none;margin-left:auto}}.odAbW{clear:both;display:block}.odAbW:not(._3XT4E){margin-left:auto;margin-right:auto;max-width:100%}.NtNUw,._3XT4E{width:100%}.A4ID1 .NtNUw,.A4ID1 ._3XT4E{margin:0 -8px;width:auto}.v36De{width:-moz-fit-content;width:fit-content}._0P5jU{margin-left:auto;margin-right:auto;max-width:100%}.Xq3fZ{width:min(350px,100%)!important}.A4ID1 .Xq3fZ{width:50%}.w6QFZ{margin-left:auto;margin-right:auto}.A4ID1 .w6QFZ{width:150px}.NrnwV{display:flex}._72eGU{margin:0}._18vC-{border:none;width:-moz-max-content;width:max-content}.EwjhL{overflow-x:auto}.EwjhL::-webkit-scrollbar{-webkit-appearance:none}.EwjhL::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.5);border:2px solid #fff;border-radius:8px}.EwjhL::-webkit-scrollbar:horizontal{height:10px}.Ce-P5{max-width:100%}._9k8cw{text-decoration:none}.nWC1s:focus-visible{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}._4X3JV,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}._1XbUl,.v6mQw{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);list-style-position:outside;margin:0;min-height:var(--ricos-custom-p-min-height,unset);padding:0;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}._1XbUl>*,.v6mQw>*{background-color:var(--ricos-custom-p-background-color,unset)}._1XbUl>.frioR,.v6mQw>.frioR{list-style-type:inherit;margin-inline-start:1.5em;padding-inline-start:.5em}._1XbUl>.frioR[data-heading-level=headerOne],.v6mQw>.frioR[data-heading-level=headerOne]{font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerTwo],.v6mQw>.frioR[data-heading-level=headerTwo]{font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerThree],.v6mQw>.frioR[data-heading-level=headerThree]{font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFour],.v6mQw>.frioR[data-heading-level=headerFour]{font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerFive],.v6mQw>.frioR[data-heading-level=headerFive]{font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}._1XbUl>.frioR[data-heading-level=headerSix],.v6mQw>.frioR[data-heading-level=headerSix]{font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.VU1nK,.VU1nK>.frioR{list-style-type:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6){text-decoration:none}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6) :is([data-font-size],span[style*=font-size]){text-decoration:line-through}.VU1nK>.frioR[aria-checked=true]>:is(p,h1,h2,h3,h4,h5,h6):not(:has([data-font-size],span[style*=font-size])){text-decoration:line-through}.frioR{position:relative;text-align:initial}.frioR[data-child-font-fit]>:is(p,h1,h2,h3,h4,h5,h6){font-size:inherit}[data-list-style-position=inside].frioR{list-style-position:inside;padding-inline-start:0}[data-list-style-position=inside].frioR>:first-child:not([aria-checked]),[data-list-style-position=inside].frioR>:first-child:not([aria-checked])>:first-child{display:inline}[data-list-style-position=inside].frioR[data-list-style=checkbox]>[aria-checked]{display:inline-grid;inset-inline-start:unset;margin-inline-end:.35em;position:relative;top:auto;transform:none;vertical-align:middle}[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span{display:inline}.v6mQw>[data-list-style-position=inside].frioR h2>span,.v6mQw>[data-list-style-position=inside].frioR h3>span,.v6mQw>[data-list-style-position=inside].frioR h4>span,.v6mQw>[data-list-style-position=inside].frioR h5>span,.v6mQw>[data-list-style-position=inside].frioR h6>span,.v6mQw>[data-list-style-position=inside].frioR>h1>span,.v6mQw>[data-list-style-position=inside].frioR>p>span>:first-child,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h1>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h2>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h3>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h4>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h5>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>h6>span,[data-list-style-position=inside].frioR[data-list-style=checkbox]>p>span>:first-child{margin-inline-start:.5em}ol .frioR{position:relative}ol .frioR>div>:not(ul)>span{margin-inline-start:.35em}.mqFOv{background-color:var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border:max(1px,1em/18) solid rgba(var(--ricos-theme-color-3-tuple,var(--ricos-action-color-tuple,var(--ricos-action-color-fallback-tuple,17,109,255))),.35);border-radius:.25em;box-sizing:border-box;display:inline-grid;font-size:inherit;height:1em;inset-inline-start:-1.25em;line-height:inherit;margin:0;padding:0;place-items:center;pointer-events:none;position:absolute;top:calc(.5lh - 1em / 2);width:1em}.mqFOv:after{border-bottom:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));border-right:.125em solid var(--ricos-theme-color-1,var(--ricos-background-color,var(--ricos-bg-color-container,#fff)));content:"";height:.5em;transform:translateY(-.0625em) rotate(45deg) scale(0);width:.25em}.mqFOv[aria-checked=true]{background-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)));border-color:var(--ricos-theme-color-3,var(--ricos-action-color,var(--ricos-action-color-fallback,#116dff)))}.mqFOv[aria-checked=true]:after{transform:translateY(-.0625em) rotate(45deg) scale(1)}.eMsNb,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.eUxPq{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eUxPq{clear:both;margin:0}}}@container (width < 480px){.eUxPq{clear:both;margin:0}}.eBpC0{color:var(--ricos-custom-p-color,unset);font-family:var(--ricos-custom-p-font-family,unset);font-size:var(--ricos-custom-p-font-size,unset);font-style:var(--ricos-custom-p-font-style,unset);font-weight:var(--ricos-custom-p-font-weight,unset);letter-spacing:var(--ricos-custom-p-letter-spacing,unset);line-height:var(--ricos-custom-p-line-height,unset);min-height:var(--ricos-custom-p-min-height,unset);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-p-text-decoration,unset);text-decoration:var(--ricos-custom-p-text-decoration,unset)}.eBpC0>span>a,.eBpC0>span>span{background-color:var(--ricos-custom-p-background-color,unset)}.eBpC0:empty{height:24px}.zm9nI{display:block}.LRIFJ{background:var(--ricos-internal-layout-backdrop-gradient,var(--ricos-internal-layout-backdrop-color,transparent));clear:both;padding-bottom:var(--ricos-internal-layout-backdrop-padding-bottom,0);padding-top:var(--ricos-internal-layout-backdrop-padding-top,0);position:relative}.LRIFJ:before{background-image:var(--ricos-internal-layout-backdrop-image-src);background-position:var(--ricos-internal-layout-backdrop-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-backdrop-image-scaling);filter:var(--ricos-internal-layout-backdrop-image-blur,none);z-index:0}.LRIFJ:after,.LRIFJ:before{bottom:0;clip-path:inset(0);content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LRIFJ:after{background:var(--ricos-internal-layout-backdrop-overlay,transparent);z-index:1}.LmXEw{--ricos-internal-layout-display:grid;--ricos-internal-layout-horizontal-padding:0;display:var(--ricos-internal-layout-display,grid);flex-wrap:wrap;gap:var(--ricos-internal-layout-gap,20px);grid-template-columns:var(--ricos-internal-layout-grid-template,var(--ricos-internal-layout-column-template));justify-content:var(--ricos-internal-layout-justify-content,auto);margin:0 auto;position:relative;width:min(100%,var(--ricos-internal-layout-width,initial));z-index:2}.LmXEw.CvxCp ._8Xb4l,.LmXEw.P-WYy{background:var(--ricos-internal-layout-background-gradient,var(--ricos-internal-layout-background-color,transparent));border:var(--ricos-internal-layout-border-width,0) solid var(--ricos-internal-layout-border-color);border-radius:var(--ricos-internal-layout-border-radius,0)}.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:before{background-image:var(--ricos-internal-layout-background-image-src);background-position:var(--ricos-internal-layout-background-image-position);background-repeat:no-repeat;background-size:var(--ricos-internal-layout-background-image-scaling);filter:var(--ricos-internal-layout-background-image-blur,none);z-index:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.CvxCp ._8Xb4l:before,.LmXEw.P-WYy:after,.LmXEw.P-WYy:before{bottom:0;clip-path:inset(0 round var(--ricos-internal-layout-border-radius,0));content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.LmXEw.CvxCp ._8Xb4l:after,.LmXEw.P-WYy:after{background:var(--ricos-internal-layout-background-overlay,transparent);z-index:1}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}}@container (width < 480px){.LmXEw{gap:min(20px,var(--ricos-internal-layout-gap,20px))}}.LmXEw.Ay9OM{--ricos-internal-layout-display:flex;--ricos-internal-layout-justify-content:center;--ricos-internal-layout-cell-min-width:100%;--ricos-internal-layout-cell-height:auto}*+.LmXEw{margin-top:20px}.LmXEw ._8Xb4l{display:flex;flex-direction:column;flex-grow:1;justify-content:var(--ricos-internal-layout-cell-vertical-alignment);max-width:var(--ricos-internal-layout-cell-min-width,auto);min-width:min(100%,var(--ricos-internal-layout-cell-min-width,0));outline:1px solid transparent;padding:var(--ricos-internal-layout-cell-padding-top,12px) var(--ricos-internal-layout-cell-padding-right,0) var(--ricos-internal-layout-cell-padding-bottom,12px) var(--ricos-internal-layout-cell-padding-left,0);position:relative;z-index:2}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}}@container (width < 480px){.LmXEw ._8Xb4l{padding:min(16px,var(--ricos-internal-layout-cell-padding-top,16px)) min(16px,var(--ricos-internal-layout-cell-padding-right,16px)) min(16px,var(--ricos-internal-layout-cell-padding-bottom,16px)) min(16px,var(--ricos-internal-layout-cell-padding-left,16px))}}.LmXEw ._8Xb4l>*{z-index:1}.glob_fontElementMap,.zMFXn{font-family:var(--ricos-font-family,unset)}.LI-hR{margin:0}@supports not (contain:inline-size){@media only screen and (max-width:480px){.LI-hR{clear:both;margin:0}}}@container (width < 480px){.LI-hR{clear:both;margin:0}}.-MV-o,.DnKvS,.JLkq2,.L-PUE,.mabWC,.ymErU{font:inherit}.-MV-o:focus-visible,.DnKvS:focus-visible,.JLkq2:focus-visible,.L-PUE:focus-visible,.mabWC:focus-visible,.ymErU:focus-visible{outline:5px auto Highlight!important;outline:5px auto -webkit-focus-ring-color!important}.JLkq2{color:var(--ricos-custom-h1-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h1-font-family,unset);font-size:var(--ricos-custom-h1-font-size,40px);font-style:var(--ricos-custom-h1-font-style,unset);font-weight:var(--ricos-custom-h1-font-weight,unset);letter-spacing:var(--ricos-custom-h1-letter-spacing,unset);line-height:var(--ricos-custom-h1-line-height,42px);min-height:var(--ricos-custom-h1-min-height,42px);-webkit-text-decoration:var(--ricos-custom-h1-text-decoration,unset);text-decoration:var(--ricos-custom-h1-text-decoration,unset)}.JLkq2>*>span,.JLkq2>span span{background-color:var(--ricos-custom-h1-background-color,unset)}.JLkq2 a{font-size:inherit}.L-PUE{color:var(--ricos-custom-h2-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h2-font-family,unset);font-size:var(--ricos-custom-h2-font-size,28px);font-style:var(--ricos-custom-h2-font-style,unset);font-weight:var(--ricos-custom-h2-font-weight,unset);letter-spacing:var(--ricos-custom-h2-letter-spacing,unset);line-height:var(--ricos-custom-h2-line-height,36px);min-height:var(--ricos-custom-h2-min-height,36px);-webkit-text-decoration:var(--ricos-custom-h2-text-decoration,unset);text-decoration:var(--ricos-custom-h2-text-decoration,unset)}.L-PUE>*>span,.L-PUE>span span{background-color:var(--ricos-custom-h2-background-color,unset)}.L-PUE a{font-size:inherit}.ymErU{color:var(--ricos-custom-h3-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h3-font-family,unset);font-size:var(--ricos-custom-h3-font-size,24px);font-style:var(--ricos-custom-h3-font-style,unset);font-weight:var(--ricos-custom-h3-font-weight,unset);letter-spacing:var(--ricos-custom-h3-letter-spacing,unset);line-height:var(--ricos-custom-h3-line-height,30px);min-height:var(--ricos-custom-h3-min-height,30px);-webkit-text-decoration:var(--ricos-custom-h3-text-decoration,unset);text-decoration:var(--ricos-custom-h3-text-decoration,unset)}.ymErU>*>span,.ymErU>span span{background-color:var(--ricos-custom-h3-background-color,unset)}.ymErU a{font-size:inherit}.mabWC{color:var(--ricos-custom-h4-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h4-font-family,unset);font-size:var(--ricos-custom-h4-font-size,20px);font-style:var(--ricos-custom-h4-font-style,unset);font-weight:var(--ricos-custom-h4-font-weight,unset);letter-spacing:var(--ricos-custom-h4-letter-spacing,unset);line-height:var(--ricos-custom-h4-line-height,1.5);min-height:var(--ricos-custom-h4-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h4-text-decoration,unset);text-decoration:var(--ricos-custom-h4-text-decoration,unset)}.mabWC>*>span,.mabWC>span span{background-color:var(--ricos-custom-h4-background-color,unset)}.mabWC a{font-size:inherit}.-MV-o{color:var(--ricos-custom-h5-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h5-font-family,unset);font-size:var(--ricos-custom-h5-font-size,18px);font-style:var(--ricos-custom-h5-font-style,unset);font-weight:var(--ricos-custom-h5-font-weight,unset);letter-spacing:var(--ricos-custom-h5-letter-spacing,unset);line-height:var(--ricos-custom-h5-line-height,1.5);min-height:var(--ricos-custom-h5-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h5-text-decoration,unset);text-decoration:var(--ricos-custom-h5-text-decoration,unset)}.-MV-o>*>span,.-MV-o>span span{background-color:var(--ricos-custom-h5-background-color,unset)}.-MV-o a{font-size:inherit}.DnKvS{color:var(--ricos-custom-h6-color,var(--ricos-text-color,#212121));font-family:var(--ricos-custom-h6-font-family,unset);font-size:var(--ricos-custom-h6-font-size,16px);font-style:var(--ricos-custom-h6-font-style,unset);font-weight:var(--ricos-custom-h6-font-weight,unset);letter-spacing:var(--ricos-custom-h6-letter-spacing,unset);line-height:var(--ricos-custom-h6-line-height,1.5);min-height:var(--ricos-custom-h6-min-height,unset);-webkit-text-decoration:var(--ricos-custom-h6-text-decoration,unset);text-decoration:var(--ricos-custom-h6-text-decoration,unset)}.DnKvS>*>span,.DnKvS>span span{background-color:var(--ricos-custom-h6-background-color,unset)}.DnKvS a{font-size:inherit}._7sCfP{display:block}.TPUvP{margin:15px 18px}@supports not (contain:inline-size){@media only screen and (max-width:480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}}@container (width < 480px){.TPUvP{margin:var(--ricos-custom-code-block-margin,15px calc(18px + 5%))}}.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgba(var(--ricos-fallback-color-tuple,0,0,0),.06));color:var(--ricos-custom-code-block-color,var(--ricos-text-color,#212121));font-family:Inconsolata,Menlo,Consolas,monospace;font-size:var(--ricos-custom-code-block-font-size,16px);line-height:var(--ricos-custom-code-block-line-height,26px);margin:var(--ricos-custom-code-block-margin,15px 18px);min-height:29px;padding:var(--ricos-custom-code-block-padding,2px 25px);-webkit-print-color-adjust:exact;print-color-adjust:exact;white-space:pre-wrap}@supports (color:rgb(from #000 r g b/0.1)){.FNyc6{background-color:var(--ricos-custom-code-block-background-color,rgb(from var(--ricos-fallback-color,#000000) r g b/.06))}}.TFibM .FNyc6{margin:1em 0}.-XiNm,.glob_fontElementMap{font-family:var(--ricos-font-family,unset)}.pJkyn{display:flex;font-family:var(--ricos-custom-p-font-family,unset)}.eFTjz{border-inline-start-style:solid;border-inline-start-width:var(--ricos-custom-quote-border-width,3px);border-left-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));border-right-color:var(--ricos-custom-quote-border-color,var(--ricos-action-color,#116dff));color:var(--ricos-custom-quote-color,unset);font-family:var(--ricos-custom-quote-font-family,unset);font-size:18px;font-size:var(--ricos-custom-quote-font-size,18px);font-style:normal;font-style:var(--ricos-custom-quote-font-style,normal);font-weight:var(--ricos-custom-quote-font-weight,unset);letter-spacing:var(--ricos-custom-quote-letter-spacing,unset);line-height:26px;line-height:var(--ricos-custom-quote-line-height,26px);margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,18px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,18px);max-width:100%;min-height:var(--ricos-custom-quote-min-height,unset);padding-bottom:var(--ricos-custom-quote-padding-bottom,6px);padding-top:var(--ricos-custom-quote-padding-top,6px);padding-inline-start:var(--ricos-custom-quote-padding-inline-start,18px);-webkit-print-color-adjust:exact;print-color-adjust:exact;-webkit-text-decoration:var(--ricos-custom-quote-text-decoration,unset);text-decoration:var(--ricos-custom-quote-text-decoration,unset)}@supports not (contain:inline-size){@media only screen and (max-width:480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}}@container (width < 480px){.eFTjz{margin-block:15px;margin-inline-end:var(--ricos-custom-quote-margin-inline-end,16px);margin-inline-start:var(--ricos-custom-quote-margin-inline-start,16px)}}</style> | |
| 239 | +<!-- Loadable Component comp-m8omcigd2_r_comp-m2y1awex --> | |
| 240 | +<script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[8455,778]</script><script id="comp-m8omcigd2_r_comp-m2y1awex__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["form-app-header","form-app-wix-ricos-viewer"]}</script><script async="" data-chunk="form-app-header" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-header.chunk.min.js"></script><script async="" data-chunk="form-app-wix-ricos-viewer" src="https://static.parastorage.com/services/form-app/1.2898.0/client-viewer/form-app-wix-ricos-viewer.chunk.min.js"></script> | |
| 241 | +<style id="css_masterPage">@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w10-light.woff2') format('woff2'); unicode-range: U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2116;font-display: swap; | |
| 242 | +} | |
| 243 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w02-light.woff2') format('woff2'); unicode-range: U+000D, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+01FA-01FF, U+0218-021B, U+0237, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03C0, U+1E80-1E85, U+1EF2-1EF3, U+2070, U+2074-2079, U+2080-2089, U+2113, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 244 | +} | |
| 245 | +@font-face {font-family: 'din-next-w01-light'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2') format('woff2'); unicode-range: U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+03BC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 246 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 247 | +} | |
| 248 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 249 | +} | |
| 250 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 251 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 252 | +} | |
| 253 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 254 | +} | |
| 255 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 256 | +} | |
| 257 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 258 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 259 | +} | |
| 260 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 261 | +} | |
| 262 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 263 | +} | |
| 264 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 265 | +} | |
| 266 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 267 | +} | |
| 268 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 269 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 270 | +} | |
| 271 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 272 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 273 | +} | |
| 274 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 275 | +} | |
| 276 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 277 | +} | |
| 278 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 279 | +} | |
| 280 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 281 | +} | |
| 282 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 283 | +} | |
| 284 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 285 | +} | |
| 286 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 287 | +} | |
| 288 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 289 | +} | |
| 290 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 291 | +} | |
| 292 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 293 | +} | |
| 294 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 295 | +} | |
| 296 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 297 | +} | |
| 298 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 299 | +} | |
| 300 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 301 | +} | |
| 302 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 303 | +} | |
| 304 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 305 | +} | |
| 306 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 307 | +} | |
| 308 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 309 | +} | |
| 310 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 311 | +}@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXd0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 312 | +} | |
| 313 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w2aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 314 | +} | |
| 315 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXV0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 316 | +} | |
| 317 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w0aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 318 | +} | |
| 319 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXx0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 320 | +} | |
| 321 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXZ0ppC8MLnbtrVK.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 322 | +} | |
| 323 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w3aXp-p7K4KLjztg.woff2') format('woff2'); unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 324 | +} | |
| 325 | +@font-face {font-family: 'montserrat-black'; font-style: italic; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16WXh0ppC8MLnbtg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 326 | +} | |
| 327 | +@font-face {font-family: 'montserrat-black'; font-style: normal; font-weight: 900; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC73w5aXp-p7K4KLg.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 328 | +}#SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus, #SITE_CONTAINER.focus-ring-active :not(.has-custom-focus):not(.ignore-focus):not([tabindex="-1"]):focus ~ .wixSdkShowFocusOnSibling{--focus-ring-box-shadow:0 0 0 1px #ffffff, 0 0 0 3px #116dff;box-shadow:var(--focus-ring-box-shadow) !important;z-index:1;}.has-inner-focus-ring{--focus-ring-box-shadow:inset 0 0 0 1px #ffffff, inset 0 0 0 3px #116dff !important;}:root, :host, .spxThemeOverride{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;--color_0:255,255,255;--color_1:255,255,255;--color_2:0,0,0;--color_3:237,28,36;--color_4:0,136,203;--color_5:255,203,5;--color_6:114,114,114;--color_7:176,176,176;--color_8:255,255,255;--color_9:114,114,114;--color_10:176,176,176;--color_11:250,250,250;--color_12:153,153,153;--color_13:102,102,102;--color_14:51,51,51;--color_15:0,0,0;--color_16:183,195,220;--color_17:139,154,186;--color_18:75,99,151;--color_19:50,66,101;--color_20:25,33,50;--color_21:165,182,220;--color_22:124,143,186;--color_23:75,99,151;--color_24:0,36,116;--color_25:0,18,58;--color_26:186,204,218;--color_27:141,164,180;--color_28:80,117,143;--color_29:53,78,95;--color_30:27,39,48;--color_31:255,233,223;--color_32:255,191,161;--color_33:250,133,79;--color_34:234,96,32;--color_35:201,64,1;--color_36:250,250,250;--color_37:0,0,0;--color_38:153,153,153;--color_39:102,102,102;--color_40:51,51,51;--color_41:75,99,151;--color_42:75,99,151;--color_43:75,99,151;--color_44:75,99,151;--color_45:0,0,0;--color_46:51,51,51;--color_47:0,0,0;--color_48:75,99,151;--color_49:75,99,151;--color_50:250,250,250;--color_51:75,99,151;--color_52:75,99,151;--color_53:250,250,250;--color_54:102,102,102;--color_55:102,102,102;--color_56:250,250,250;--color_57:250,250,250;--color_58:75,99,151;--color_59:75,99,151;--color_60:250,250,250;--color_61:75,99,151;--color_62:75,99,151;--color_63:250,250,250;--color_64:102,102,102;--color_65:102,102,102;--wix-ads-height:0px;--sticky-offset:0px;--wix-ads-top-height:0px;--site-width:980px;--above-all-z-index:100000;--portals-z-index:100001;--wix-opt-in-direction:ltr;--wix-opt-in-direction-multiplier:1;--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;--minViewportSize:320;--maxViewportSize:1920;--customScaleViewportLimit:clamp(var(--minViewportSize) * 1px, var(--full-viewport), min(var(--section-max-width), var(--maxViewportSize) * 1px));}.theme-vars, .max-width-container{--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--theme-spx-ratio:var(--scaling-factor) / 1280;}.max-width-container{--font_0:normal normal bold calc(65 * var(--theme-spx-ratio))/1.2em montserrat,sans-serif;--font_1:normal normal normal 16px/1.4em din-next-w01-light,sans-serif;--font_2:normal normal bold calc(38 * var(--theme-spx-ratio))/1.3em montserrat,sans-serif;--font_3:normal normal normal calc(34 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_4:normal normal normal calc(30 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_5:normal normal normal calc(25 * var(--theme-spx-ratio))/1.3em montserrat-black,sans-serif;--font_6:normal normal normal calc(19 * var(--theme-spx-ratio))/1.4em montserrat,sans-serif;--font_7:normal normal normal calc(16 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_8:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_9:normal normal normal calc(12 * var(--theme-spx-ratio))/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--font_10:normal normal normal 12px/1.4em din-next-w01-light,sans-serif;}.font_0{font:var(--font_0);color:rgb(var(--color_15));letter-spacing:0em;}.font_1{font:var(--font_1);color:rgb(var(--color_14));letter-spacing:0em;}.font_2{font:var(--font_2);color:rgb(var(--color_15));letter-spacing:0em;}.font_3{font:var(--font_3);color:rgb(var(--color_15));letter-spacing:0em;}.font_4{font:var(--font_4);color:rgb(var(--color_15));letter-spacing:0em;}.font_5{font:var(--font_5);color:rgb(var(--color_15));letter-spacing:0em;}.font_6{font:var(--font_6);color:rgb(var(--color_15));letter-spacing:0em;}.font_7{font:var(--font_7);color:rgb(var(--color_15));letter-spacing:0em;}.font_8{font:var(--font_8);color:rgb(var(--color_15));letter-spacing:0em;}.font_9{font:var(--font_9);color:rgb(var(--color_15));letter-spacing:0em;}.font_10{font:var(--font_10);color:rgb(var(--color_14));letter-spacing:0em;}.color_0{color:rgb(var(--color_0));}.color_1{color:rgb(var(--color_1));}.color_2{color:rgb(var(--color_2));}.color_3{color:rgb(var(--color_3));}.color_4{color:rgb(var(--color_4));}.color_5{color:rgb(var(--color_5));}.color_6{color:rgb(var(--color_6));}.color_7{color:rgb(var(--color_7));}.color_8{color:rgb(var(--color_8));}.color_9{color:rgb(var(--color_9));}.color_10{color:rgb(var(--color_10));}.color_11{color:rgb(var(--color_11));}.color_12{color:rgb(var(--color_12));}.color_13{color:rgb(var(--color_13));}.color_14{color:rgb(var(--color_14));}.color_15{color:rgb(var(--color_15));}.color_16{color:rgb(var(--color_16));}.color_17{color:rgb(var(--color_17));}.color_18{color:rgb(var(--color_18));}.color_19{color:rgb(var(--color_19));}.color_20{color:rgb(var(--color_20));}.color_21{color:rgb(var(--color_21));}.color_22{color:rgb(var(--color_22));}.color_23{color:rgb(var(--color_23));}.color_24{color:rgb(var(--color_24));}.color_25{color:rgb(var(--color_25));}.color_26{color:rgb(var(--color_26));}.color_27{color:rgb(var(--color_27));}.color_28{color:rgb(var(--color_28));}.color_29{color:rgb(var(--color_29));}.color_30{color:rgb(var(--color_30));}.color_31{color:rgb(var(--color_31));}.color_32{color:rgb(var(--color_32));}.color_33{color:rgb(var(--color_33));}.color_34{color:rgb(var(--color_34));}.color_35{color:rgb(var(--color_35));}.color_36{color:rgb(var(--color_36));}.color_37{color:rgb(var(--color_37));}.color_38{color:rgb(var(--color_38));}.color_39{color:rgb(var(--color_39));}.color_40{color:rgb(var(--color_40));}.color_41{color:rgb(var(--color_41));}.color_42{color:rgb(var(--color_42));}.color_43{color:rgb(var(--color_43));}.color_44{color:rgb(var(--color_44));}.color_45{color:rgb(var(--color_45));}.color_46{color:rgb(var(--color_46));}.color_47{color:rgb(var(--color_47));}.color_48{color:rgb(var(--color_48));}.color_49{color:rgb(var(--color_49));}.color_50{color:rgb(var(--color_50));}.color_51{color:rgb(var(--color_51));}.color_52{color:rgb(var(--color_52));}.color_53{color:rgb(var(--color_53));}.color_54{color:rgb(var(--color_54));}.color_55{color:rgb(var(--color_55));}.color_56{color:rgb(var(--color_56));}.color_57{color:rgb(var(--color_57));}.color_58{color:rgb(var(--color_58));}.color_59{color:rgb(var(--color_59));}.color_60{color:rgb(var(--color_60));}.color_61{color:rgb(var(--color_61));}.color_62{color:rgb(var(--color_62));}.color_63{color:rgb(var(--color_63));}.color_64{color:rgb(var(--color_64));}.color_65{color:rgb(var(--color_65));}.backcolor_0{background-color:rgb(var(--color_0));}.backcolor_1{background-color:rgb(var(--color_1));}.backcolor_2{background-color:rgb(var(--color_2));}.backcolor_3{background-color:rgb(var(--color_3));}.backcolor_4{background-color:rgb(var(--color_4));}.backcolor_5{background-color:rgb(var(--color_5));}.backcolor_6{background-color:rgb(var(--color_6));}.backcolor_7{background-color:rgb(var(--color_7));}.backcolor_8{background-color:rgb(var(--color_8));}.backcolor_9{background-color:rgb(var(--color_9));}.backcolor_10{background-color:rgb(var(--color_10));}.backcolor_11{background-color:rgb(var(--color_11));}.backcolor_12{background-color:rgb(var(--color_12));}.backcolor_13{background-color:rgb(var(--color_13));}.backcolor_14{background-color:rgb(var(--color_14));}.backcolor_15{background-color:rgb(var(--color_15));}.backcolor_16{background-color:rgb(var(--color_16));}.backcolor_17{background-color:rgb(var(--color_17));}.backcolor_18{background-color:rgb(var(--color_18));}.backcolor_19{background-color:rgb(var(--color_19));}.backcolor_20{background-color:rgb(var(--color_20));}.backcolor_21{background-color:rgb(var(--color_21));}.backcolor_22{background-color:rgb(var(--color_22));}.backcolor_23{background-color:rgb(var(--color_23));}.backcolor_24{background-color:rgb(var(--color_24));}.backcolor_25{background-color:rgb(var(--color_25));}.backcolor_26{background-color:rgb(var(--color_26));}.backcolor_27{background-color:rgb(var(--color_27));}.backcolor_28{background-color:rgb(var(--color_28));}.backcolor_29{background-color:rgb(var(--color_29));}.backcolor_30{background-color:rgb(var(--color_30));}.backcolor_31{background-color:rgb(var(--color_31));}.backcolor_32{background-color:rgb(var(--color_32));}.backcolor_33{background-color:rgb(var(--color_33));}.backcolor_34{background-color:rgb(var(--color_34));}.backcolor_35{background-color:rgb(var(--color_35));}.backcolor_36{background-color:rgb(var(--color_36));}.backcolor_37{background-color:rgb(var(--color_37));}.backcolor_38{background-color:rgb(var(--color_38));}.backcolor_39{background-color:rgb(var(--color_39));}.backcolor_40{background-color:rgb(var(--color_40));}.backcolor_41{background-color:rgb(var(--color_41));}.backcolor_42{background-color:rgb(var(--color_42));}.backcolor_43{background-color:rgb(var(--color_43));}.backcolor_44{background-color:rgb(var(--color_44));}.backcolor_45{background-color:rgb(var(--color_45));}.backcolor_46{background-color:rgb(var(--color_46));}.backcolor_47{background-color:rgb(var(--color_47));}.backcolor_48{background-color:rgb(var(--color_48));}.backcolor_49{background-color:rgb(var(--color_49));}.backcolor_50{background-color:rgb(var(--color_50));}.backcolor_51{background-color:rgb(var(--color_51));}.backcolor_52{background-color:rgb(var(--color_52));}.backcolor_53{background-color:rgb(var(--color_53));}.backcolor_54{background-color:rgb(var(--color_54));}.backcolor_55{background-color:rgb(var(--color_55));}.backcolor_56{background-color:rgb(var(--color_56));}.backcolor_57{background-color:rgb(var(--color_57));}.backcolor_58{background-color:rgb(var(--color_58));}.backcolor_59{background-color:rgb(var(--color_59));}.backcolor_60{background-color:rgb(var(--color_60));}.backcolor_61{background-color:rgb(var(--color_61));}.backcolor_62{background-color:rgb(var(--color_62));}.backcolor_63{background-color:rgb(var(--color_63));}.backcolor_64{background-color:rgb(var(--color_64));}.backcolor_65{background-color:rgb(var(--color_65));}.theme-vars{--variables-m28o2bcx:1440px;}#SITE_HEADER{--bg-overlay-color:transparent;--bg-gradient:none;}#SITE_PAGES{--transition-duration:0ms;}#SITE_FOOTER{--bg-overlay-color:transparent;--bg-gradient:none;}</style> | |
| 329 | +<style id="css_ebqqm">@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w05_35-light.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 330 | +} | |
| 331 | +@font-face {font-family: 'avenir-lt-w01_35-light1475496'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 332 | +}@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+0218-021B, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+0394, U+03A9, U+03BC, U+03C0, U+1E9E, U+20B9-20BA, U+20BC-20BD, U+2113, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 333 | +} | |
| 334 | +@font-face {font-family: 'avenir-lt-w01_85-heavy1475544'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 335 | +}@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-lt-w10-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0, U+00A4, U+00A6-00A7, U+00A9, U+00AB-00AE, U+00B0-00B1, U+00B5-00B7, U+00BB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0490-0491, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+20AC, U+2116, U+2122;font-display: swap; | |
| 336 | +} | |
| 337 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w02-roman.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2113, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E301-E304, U+E306-E30D, U+FB01-FB02;font-display: swap; | |
| 338 | +} | |
| 339 | +@font-face {font-family: 'helvetica-w01-roman'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/2af1bf48-e783-4da8-9fa0-599dde29f2d5/v1/helvetica-w01-roman.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-012B, U+012E-0137, U+0139-0149, U+014C-017E, U+0192, U+0218-021B, U+0237, U+02C6-02C7, U+02C9, U+02D8-02DD, U+0394, U+03A9, U+03BC, U+03C0, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+04D9, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+20B9-20BA, U+20BC-20BD, U+2113, U+2116, U+2122, U+2126, U+212E, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+E300-E30D, U+F6C5, U+F6C9-F6D8, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 340 | +}@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 341 | +} | |
| 342 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 343 | +} | |
| 344 | +@font-face {font-family: 'helveticaneuew01-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/e333842f-0a84-43f9-9ab7-fb1093ba1628/v1/helveticaneuew01-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122;font-display: swap; | |
| 345 | +}@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+2021, U+2030, U+E300-E305, U+E308;font-display: swap; | |
| 346 | +} | |
| 347 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0160-0161, U+0178, U+017D-017E, U+0192, U+2020;font-display: swap; | |
| 348 | +} | |
| 349 | +@font-face {font-family: 'helveticaneuew01-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/7656dffe-e48a-4387-bcf9-cd96060a10ca/v1/helveticaneuew01-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+20AC, U+2122;font-display: swap; | |
| 350 | +}@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 351 | +} | |
| 352 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 353 | +} | |
| 354 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 355 | +} | |
| 356 | +@font-face {font-family: 'helveticaneuew02-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/bcaffff6-40a1-4827-ace9-c65e93f5fb5f/v1/helveticaneuew02-45ligh.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 357 | +}@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2021, U+2030, U+2126, U+212E, U+E0D6, U+E300-E30D, U+F8FF, U+FB01-FB02;font-display: swap; | |
| 358 | +} | |
| 359 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.math.woff2') format('woff2'); unicode-range: U+0394, U+03A9, U+03BC, U+03C0, U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 360 | +} | |
| 361 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-012B, U+012E-0130, U+0132-0137, U+0139-0149, U+014C-0151, U+0154-017E, U+0192, U+0218-021B, U+1E9E, U+2020, U+20B9-20BA, U+20BC-20BD, U+2113;font-display: swap; | |
| 362 | +} | |
| 363 | +@font-face {font-family: 'helveticaneuew02-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/767cfde1-9b34-4617-9789-907f19f2ae93/v1/helveticaneuew02-65medi.latin.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 364 | +}@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 365 | +} | |
| 366 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 367 | +} | |
| 368 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 369 | +} | |
| 370 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 371 | +} | |
| 372 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 373 | +} | |
| 374 | +@font-face {font-family: 'helveticaneuew10-45ligh'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/68b86ae9-7ca0-48cc-b777-6559005a8f94/v1/helveticaneuew10-45ligh.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 375 | +}@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.other.woff2') format('woff2'); unicode-range: U+02C7, U+02C9, U+02D8-02D9, U+02DB, U+02DD, U+2010, U+2015, U+2021, U+2030, U+203D, U+2070, U+2075-208E, U+2105, U+2117, U+2126, U+212E, U+2153-2154, U+215B-215E, U+FB00-FB04;font-display: swap; | |
| 376 | +} | |
| 377 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.math.woff2') format('woff2'); unicode-range: U+2202, U+2206, U+220F, U+2211, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA;font-display: swap; | |
| 378 | +} | |
| 379 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.cyrillic.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+2116;font-display: swap; | |
| 380 | +} | |
| 381 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.greek.woff2') format('woff2'); unicode-range: U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE;font-display: swap; | |
| 382 | +} | |
| 383 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin-ext.woff2') format('woff2'); unicode-range: U+0100-0130, U+0132-0151, U+0154-017E, U+0192, U+01FA-01FF, U+0218-021B, U+0237, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2020, U+20B9-20BA, U+20BD, U+2113;font-display: swap; | |
| 384 | +} | |
| 385 | +@font-face {font-family: 'helveticaneuew10-65medi'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/6224d336-6e82-444d-8568-2a9861972c0a/v1/helveticaneuew10-65medi.latin.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2022, U+2026, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+2215;font-display: swap; | |
| 386 | +}@font-face {font-family: 'madefor-display-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/26656ec7-c27d-4bdc-a9f4-6b498bbfad69/madefor-display.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f7531dde-c39a-485c-a204-c09154e8d163/v1/madefor-display-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 387 | +}@font-face {font-family: 'madefor-text'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 388 | +} | |
| 389 | +@font-face {font-family: 'madefor-text'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/v1/madefor-text.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 390 | +}@font-face {font-family: 'madefor-text-bold'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/75da2848-97d9-41cf-accf-3f221b33b291/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 391 | +} | |
| 392 | +@font-face {font-family: 'madefor-text-bold'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/e1e43510-79c8-4017-b833-3c8baaf5dcb6/v1/madefor-text-bold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 393 | +}@font-face {font-family: 'madefor-text-mediumbold'; font-style: normal; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/f73e760d-c6b3-4659-9a8c-9ce1d76c1173/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/dbfbb677-95bd-4b2a-87fb-2ba3101a5f68/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+01A0-01A1, U+01AF-01B0, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+0400-045F, U+0462-0463, U+0472-0475, U+0490-0491, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AB-20AC, U+20B4, U+20B9-20BA, U+20BD, U+2116, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 394 | +} | |
| 395 | +@font-face {font-family: 'madefor-text-mediumbold'; font-style: italic; font-weight: 530; src: url('//static.parastorage.com/fonts/v2/19247d19-0454-4de8-b907-b818135794bd/madefor-text.var.original.woff2') format('woff2-variations'), url('//static.parastorage.com/fonts/v2/6d5055c2-7d2e-47e7-ba22-fb81f960dffb/v1/madefor-text-mediumbold.woff2') format('woff2'); unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00A5, U+00A7-00B4, U+00B6-0107, U+010A-0113, U+0116-011B, U+011E-0123, U+0126-012B, U+012E-0133, U+0136-013E, U+0141-0148, U+014A-014B, U+0150-0155, U+0158-015B, U+015E-016B, U+016E-017E, U+0218-021B, U+0237, U+02C6-02C7, U+02D8-02DD, U+1E24-1E25, U+1E36-1E37, U+1E80-1E85, U+1E9E, U+1EF2-1EF3, U+2000-200B, U+2010-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20B9-20BA, U+20BD, U+2122, U+2190-2193, U+2212, U+25B2, U+25B6, U+25BC, U+25C0, U+FEFF;font-display: swap; | |
| 396 | +}@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 397 | +} | |
| 398 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxi7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 399 | +} | |
| 400 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gbD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 401 | +} | |
| 402 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8_Zwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;font-display: swap; | |
| 403 | +} | |
| 404 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 405 | +} | |
| 406 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxC7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 407 | +} | |
| 408 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 409 | +} | |
| 410 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8fZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;font-display: swap; | |
| 411 | +} | |
| 412 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 413 | +} | |
| 414 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRzS7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 415 | +} | |
| 416 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3g3D_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 417 | +} | |
| 418 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz-PZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;font-display: swap; | |
| 419 | +} | |
| 420 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 421 | +} | |
| 422 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRxy7m0dR9pBOi.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 423 | +} | |
| 424 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gfD_vx3rCubqg.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 425 | +} | |
| 426 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz8vZwjimrq1Q_.woff2') format('woff2'); unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;font-display: swap; | |
| 427 | +} | |
| 428 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 429 | +} | |
| 430 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 400; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxRyS7m0dR9pA.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 431 | +} | |
| 432 | +@font-face {font-family: 'montserrat'; font-style: normal; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE3gnD_vx3rCs.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 433 | +} | |
| 434 | +@font-face {font-family: 'montserrat'; font-style: italic; font-weight: 700; src: url('//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvz_PZwjimrqw.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;font-display: swap; | |
| 435 | +}@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w05-reg.woff2') format('woff2'); unicode-range: U+0000, U+0100-010F, U+0111-0130, U+0132-0151, U+0154-015F, U+0162-0177, U+0179-017C, U+017F, U+018F, U+019D, U+01A0-01A1, U+01AF-01B0, U+01E6-01E7, U+01EA-01EB, U+01FA-01FF, U+0218-021B, U+0232-0233, U+0237, U+0259, U+0272, U+02B0, U+02BB-02BC, U+02C9, U+02CB, U+02D8-02D9, U+02DB, U+02DD, U+0374-0375, U+037E, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D7, U+0400-045F, U+0472-0475, U+048A-04FF, U+0510-0513, U+051C-051D, U+0524-0527, U+052E-052F, U+1E02-1E03, U+1E0A-1E0B, U+1E1E-1E1F, U+1E22-1E23, U+1E56-1E57, U+1E60-1E61, U+1E6A-1E6B, U+1E80-1E85, U+1E9E, U+1EA0-1EF9, U+2000-200A, U+2015, U+201B, U+2032-2033, U+203D-203E, U+2070, U+2074-2079, U+207D-2089, U+208D-208E, U+20A1, U+20A3-20A4, U+20A6-20AB, U+20B4, U+20B8-20BA, U+20BC-20BD, U+2113, U+2116-2117, U+2120, U+2126, U+212E, U+2153-2154, U+215B-215E, U+2190-2193, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+2219-221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+22B2-22B3, U+22C5, U+2318, U+25A0, U+25B2, U+25BC, U+25CA, U+25CF, U+2605, U+2610-2611, U+2666, U+2713, U+2E18, U+E004-E005, U+F43A-F43B, U+F460-F473, U+F498-F49F, U+F4C6-F4C7, U+F4CC-F4CD, U+F4D2-F4D7, U+F50A-F50B, U+F50E-F533, U+F536-F539, U+F53C-F53F, U+F637, U+F6C3, U+F6DD, U+F6DF-F6F3, U+F8FF, U+FB00-FB04;font-display: swap; | |
| 436 | +} | |
| 437 | +@font-face {font-family: 'proxima-n-w01-reg'; font-style: normal; font-weight: 400; src: url('//static.parastorage.com/fonts/v2/c24fcada-6239-48bc-8b88-9288338191c9/v1/proxima-n-w01-reg.woff2') format('woff2'); unicode-range: U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+02C6-02C7, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+20AC, U+2122, U+F656-F659;font-display: swap; | |
| 438 | +}#ebqqm{height:auto;--comp-display:unset;position:relative;}#ebqqm .ebqqm-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:clip;overflow-y:clip;}#ebqqm .ebqqm-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:auto auto auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#ebqqm:not(.ebqqm-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#ebqqm .ebqqm-container{grid-template-rows:auto auto;}}#ebqqm{--bg:var(--color_11);--alpha-bg:1;--static-spx:0.1 * var(--one-unit);}#PAGE_SECTIONSebqqm{--above-all-in-container:49;}#comp-m8omcigd2{z-index:50;--above-all-in-container:10000;}#comp-m8omcih716-pinned-layer{z-index:54;--above-all-in-container:10000;}#comp-m8omcih82-pinned-layer{z-index:55;--above-all-in-container:10000;}#comp-m8omcihb-pinned-layer{z-index:56;--above-all-in-container:10000;}#comp-m8oopad5-pinned-layer{z-index:57;--above-all-in-container:10000;}#comp-m9cxxt3r-pinned-layer{z-index:58;--above-all-in-container:10000;}#comp-mfl8zvjs-pinned-layer{z-index:59;--above-all-in-container:10000;}#comp-m8omdbdn{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbdn .comp-m8omdbdn-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:130px;padding-right:5%;padding-left:5%;padding-bottom:120px;row-gap:50px;column-gap:50px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(42px,max-content) minmax(90px,max-content) max-content max-content max-content;grid-template-columns:0.46613402505813634fr 0.5338659749418637fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbdn .comp-m8omdbdn-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content minmax(200px,max-content) max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdn .comp-m8omdbdn-container{padding-bottom:5%;grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbdn{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8oqdae2{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/2/6/3;position:relative;}#comp-m8oqdae2 .comp-m8oqdae2-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqdae2{grid-area:5/1/6/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqdae2{grid-area:5/1/6/2;}}#comp-m8oqdae2{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbe910{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.99795672678148%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:start;position:sticky;--force-auto:initial;top:var(--force-auto,calc(250px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:min(-0.5px, -0.0001698 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;--is-sticky:1;}.comp-m8omdbe910-container{box-sizing:border-box;row-gap:25px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbe910{justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));margin-left:0px;margin-right:max(0.5px, 0.0000013 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8omdbe910{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea7{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbea7-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbea7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbea15{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{margin-bottom:5px;}}#comp-m8omdbea15{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15{--fontSize:35spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15{--fontSize:25spx;}}#comp-m8omdbeb13{--l_display:unset;height:auto;min-width:0px;width:99.99898635118323%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbeb13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13{--fontSize:16px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13{--fontSize:14px;}}#comp-m8omdbec6{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}.comp-m8omdbec6-container{box-sizing:border-box;row-gap:15px;column-gap:30px;display:var(--l_display,var(--container-display));grid-template-rows:max-content max-content max-content max-content max-content max-content;grid-template-columns:0.9999535462010356fr 1.0000464537989644fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbec6-container{row-gap:25px;grid-template-rows:max-content max-content max-content max-content max-content auto max-content max-content max-content;grid-template-columns:minmax(0px,1fr);}}#comp-m8omdbec6{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbec15{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbec15{justify-self:center;}}#comp-m8omdbec15{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeg9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeg9{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbeg9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeh9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeh9{justify-self:center;grid-area:3/1/4/2;}}#comp-m8omdbeh9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbei9{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/2/3/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbei9{justify-self:center;grid-area:4/1/5/2;}}#comp-m8omdbei9{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:0,0,0;--alpha-brdh:1;--brwf:1px;--bgf:255,255,255;--brdf:0,0,0;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--bgd:255,255,255;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:198,198,198;--alpha-brdd:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--fntprefix:normal normal normal 16px/1.4em helvetica-w01-roman,sans-serif;--alpha-bgf:0;--alpha-bgd:1;--alpha-bge:0;--labelMargin:8px;--inputHeight:90px;--alpha-brd:1;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--labelPadding:0px;--textPadding:12px;--static-spx:0.1 * var(--one-unit);}#comp-m8omdben{min-height:200px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0022421 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:5/1/6/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdben{margin-bottom:0px;grid-area:7/1/8/2;}}#comp-m8omdben{--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--shd:none;--rd:8px 8px 8px 8px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--brw:1px;--bg:255,255,255;--txt:0,0,0;--alpha-txt:1;--brd:157,157,157;--alpha-brd:1;--txt2:157,157,157;--alpha-txt2:1;--brwh:1px;--bgh:255,255,255;--brdh:157,157,157;--alpha-brdh:1;--bgd:255,255,255;--alpha-bgd:1;--txtd:157,157,157;--alpha-txtd:1;--brwd:1px;--brdd:225,225,225;--alpha-brdd:1;--brwf:1px;--bgf:255,255,255;--brdf:157,157,157;--alpha-brdf:1;--brwe:1px;--bge:255,255,255;--brde:255,64,64;--alpha-brde:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--alpha-bgf:0;--alpha-bge:0;--alpha-bg:0;--alpha-bgh:0;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdber7{min-height:70px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/1/4/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdber7{justify-self:center;grid-area:5/1/6/2;}}#comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8omdber7{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbeu13{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeu13{margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbeu13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbew{--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;grid-area:6/2/7/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbew{justify-self:end;margin-top:0.4212613220215644px;grid-area:9/1/10/2;}}#comp-m8omdbew{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.1em;--letterSpacing:0em;--color:255,64,64;--alpha-color:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbex1{min-height:0px;--l_display:unset;height:42px;min-width:0px;width:175px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:6/1/7/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbex1{height:50px;width:166px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbex1{height:42px;width:100%;align-self:start;justify-self:center;margin-top:max(0.5px, 0.0511093 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:8/1/9/2;}}#comp-m8or8zjr{min-height:50px;--l_display:unset;height:50px;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:3/2/4/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8or8zjr{align-self:start;grid-area:6/1/7/2;}}#comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#listModal_comp-m8or8zjr{--brwe:1px;--brde:255,88,88;--alpha-brde:1;--bge:var(--color_8);--alpha-bge:1;--rd:8px 8px 8px 8px;--shd:none;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--bg:var(--color_11);--txt:0,0,0;--alpha-txt:1;--brw:1px;--brd:198,198,198;--alpha-brd:1;--txt2:92,92,92;--alpha-txt2:1;--txt_placeholder:145,145,145;--alpha-txt_placeholder:1;--brwh:1px;--brdh:0,0,0;--alpha-brdh:1;--bgh:255,255,255;--alpha-bgh:1;--brwf:1px;--brdf:0,0,0;--alpha-brdf:1;--bgf:var(--color_8);--alpha-bgf:1;--brdd:204,204,204;--alpha-brdd:1;--txtd:204,204,204;--alpha-txtd:1;--bgd:255,255,255;--arrowColor:0,0,0;--alpha-arrowColor:1;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtlbl:0,0,0;--alpha-txtlbl:1;--txtlblrq:0,0,0;--alpha-txtlblrq:1;--dropdownListBoxShadow:none;--dropdownListStrokeWidth:1px;--dropdownListFont:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownListBorderRadius:8px 8px 8px 8px;--dropdownListTextColor:0,0,0;--alpha-dropdownListTextColor:1;--dropdownListBackgroundColor:255,255,255;--alpha-dropdownListBackgroundColor:1;--dropdownListStrokeColor:225,225,225;--alpha-dropdownListStrokeColor:1;--dropdownListHoverBackgroundColor:225,225,225;--alpha-dropdownListHoverBackgroundColor:1;--dropdownListHoverTextColor:0,0,0;--alpha-dropdownListHoverTextColor:1;--errorTextColor:255,64,64;--alpha-errorTextColor:1;--errorTextFont:var(--font_8);--alpha-bgd:1;--boxShadowToggleOn-dropdownListBoxShadow:none;--alpha-bg:1;--boxShadowToggleOn-shd:none;--bg2:170,170,170;--alpha-bg2:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdr7{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/3;position:relative;}#comp-m8omdbdr7 .comp-m8omdbdr7-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdr7{grid-area:1/1/2/2;}}#comp-m8omdbdr7{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82o{min-height:0px;--l_display:unset;height:auto;width:max-content;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8oqu82o-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82o{margin-bottom:max(0.5px, 0.0013542 * (var(--scaling-factor) - var(--scrollbar-width)));}}#comp-m8oqu82o{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqu82u{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82u{margin-right:4.546875px;}}#comp-m8oqu82u{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu82z{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:4.549px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu82z{--l_display:none;}}#comp-m8oqu82z{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8oqu8301{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqu8301{--l_display:none;}}#comp-m8oqu8301{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--fontFamily:montserrat,sans-serif;--fontSize:14px;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbdy12{min-height:0px;--comp-display:flex;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:3/1/4/3;position:relative;}#comp-m8omdbdy12 .comp-m8omdbdy12-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbdy12 .comp-m8omdbdy12-container{grid-template-rows:minmax(max-content,0%);}#comp-m8omdbdy12{grid-area:3/1/4/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbdy12{grid-area:3/1/4/2;}}#comp-m8omdbdy12{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94r{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omf94r .comp-m8omf94r-overflow-wrapper{position:relative;display:flex;flex-direction:column;flex-grow:1;overflow-x:clip;overflow-y:clip;}#comp-m8omf94r .comp-m8omf94r-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.3644933 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,1281.0065419921875fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94r{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omf94t{min-height:0px;height:auto;min-width:0px;width:auto;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omf94t .comp-m8omf94t-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:hidden;}#comp-m8omf94t .comp-m8omf94t-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omf94t:not(.comp-m8omf94t-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omdbey11{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:4/1/5/2;position:relative;}#comp-m8omdbey11 .comp-m8omdbey11-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omdbey11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbez{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbez{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--lineHeight:1.6em;--letterSpacing:0em;--fontFamily:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez{--fontSize:16px;}}#comp-m8omdbf0{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;position:sticky;--force-auto:initial;top:var(--force-auto,calc(120px + var(--sticky-offset, 0px)));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:2/1/3/3;--is-sticky:1;}#comp-m8omdbf0 .comp-m8omdbf0-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf0{position:sticky;--force-auto:initial;top:var(--force-auto,calc(50px + var(--sticky-offset, 0px)));grid-area:2/1/3/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf0{position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));grid-area:2/1/3/2;}}#comp-m8omdbf0{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf1{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:calc((100% + 20px));max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:center;position:relative;--force-auto:auto;top:var(--force-auto,calc(0px));bottom:var(--force-auto,auto);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}.comp-m8omdbf1-container{box-sizing:border-box;padding-top:20px;padding-right:20px;padding-left:20px;padding-bottom:20px;row-gap:0px;column-gap:max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.014375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:1.0000260323504566fr max-content max-content max-content max-content 1.0000260323504566fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:minmax(25.000003814697266px,max-content) minmax(25.000003814697266px,max-content);grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr;}}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omdbf1-container{row-gap:10px;column-gap:9.388px;grid-template-rows:max-content max-content max-content;grid-template-columns:1fr 1fr;}}#comp-m8omdbf1{--brw:0px;--brd:var(--color_13);--bg:var(--color_11);--rd:20px 20px 20px 20px;--shd:0.00px 1.00px 5px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf2{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbf2-container{box-sizing:border-box;padding-top:8px;padding-right:20px;padding-left:20px;padding-bottom:8px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,308.1247194824219fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf2{grid-area:1/1/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf2{width:100%;grid-area:1/1/2/2;}.comp-m8omdbf2-container{grid-template-columns:minmax(0px,114.55728587646485fr);}}#comp-m8omdbf2{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.2);--gradient:none;--alpha-brd:1;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf211{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omdbf211{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--textAlign:center;--fontSize:20spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf39{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{justify-self:center;margin-right:0px;grid-area:1/3/2/5;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{justify-self:center;margin-right:max(0.5px, 0.0013627 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/1/3/3;}}#comp-m8omdbf39{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--textDecoration:none;--maxFontSize:20px;--fontFamily:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fontSize:20spx;--fontWeight:normal;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39{--minFontSize:16px;--fontSize:9.388spx;}}#comp-m8omdbf415{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}#comp-m8omdbf415 .comp-m8omdbf415-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf415{min-width:100%;margin-right:max(0.5px, 0.1341394 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/2/3/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf415 .comp-m8omdbf415-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf415{margin-right:0px;grid-area:3/1/4/2;}}#comp-m8omdbf415{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf510{--l_display:unset;height:auto;--aspect-ratio:1;width:30px;max-width:30px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf510{width:16.305280002590564%;justify-self:center;}}#comp-m8omdbf510{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf61{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf61-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf61{justify-self:center;grid-area:2/1/3/2;}}#comp-m8omdbf61{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf68{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbf68{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68{--minFontSize:12px;--fontSize:14spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68{--minFontSize:14px;--fontSize:7.009spx;}}#comp-m8omdbf711{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbf711{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711{--minFontSize:12px;--fontSize:14spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711{--minFontSize:14px;--fontSize:7.009spx;--fontWeight:normal;}}#comp-m8omdbf82{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/4/2/5;position:relative;}#comp-m8omdbf82 .comp-m8omdbf82-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:max-content 1fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf82{min-width:100%;margin-left:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:max(0.5px, 0.0000027 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/4/3/6;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf82 .comp-m8omdbf82-container{row-gap:10px;grid-template-rows:max-content max-content;grid-template-columns:1fr;}#comp-m8omdbf82{margin-left:0px;margin-right:0px;grid-area:3/2/4/3;}}#comp-m8omdbf82{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf813{width:30px;height:auto;--aspect-ratio:0.9999999364217163;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf813{width:16.304364105482172%;--aspect-ratio:1;justify-self:center;}}#comp-m8omdbf813{--static-spx:0.1 * var(--one-unit);}#comp-m8omdbf97{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/2/2/3;position:relative;}.comp-m8omdbf97-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf97{grid-area:2/1/3/2;}}#comp-m8omdbf97{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbf916{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{margin-right:10px;}}#comp-m8omdbf916{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfa13{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfa13{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfb14{min-height:0px;--comp-display:flex;--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:center;justify-self:center;pointer-events:auto;margin-left:max(0.5px, 7e-7 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/5/2/6;position:relative;}#comp-m8omdbfb14 .comp-m8omdbfb14-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:10px;padding-right:20px;padding-left:20px;padding-bottom:10px;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfb14{width:87.03812863519576%;justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.001081 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.000012 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:2/5/3/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfb14{justify-self:end;margin-left:0px;margin-right:max(0.5px, 0.0013267 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:2/2/3/3;}}#comp-m8omdbfb14{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc3{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omdbfc3-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc3{justify-self:end;}}#comp-m8omdbfc3{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfc10{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:9.488px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbfc10{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfd11{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omdbfd11{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11{--minFontSize:14px;--fontSize:8.449spx;--fontWeight:normal;}}#comp-m8omdbfe{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/6/2/7;position:relative;}.comp-m8omdbfe-container{box-sizing:border-box;padding-top:10px;padding-right:30px;padding-left:30px;padding-bottom:10px;column-gap:20px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max(0.5px, 0.009375 * (var(--scaling-factor) - var(--scrollbar-width))),auto);grid-template-columns:minmax(0px,105.28693225097658fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfe{margin-right:max(0.5px, 0.0006672 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/5/2/7;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfe{width:100%;margin-right:max(0.5px, 0.0013138 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}.comp-m8omdbfe-container{grid-template-columns:minmax(0px,94.56599675292969fr);}}#comp-m8omdbfe{--brw:1px;--brd:157,157,157;--bg:246,246,246;--rd:10px 10px 10px 10px;--shd:0.00px 0.00px 3px 0px rgba(0,0,0,0.1);--gradient:none;--alpha-brd:0.2;--alpha-bg:1;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbfe11{width:max-content;height:auto;min-height:0px;--comp-display:unset;align-self:center;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:max(0.5px, 0.0000055 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}.comp-m8omdbfe11-container{box-sizing:border-box;padding-top:0px;padding-left:0px;padding-right:0px;padding-bottom:0px;display:var(--l_display,var(--container-display));flex-direction:row;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omdbfe11{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omdbff{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:1px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:1;position:relative;}#comp-m8omdbff{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8ooawu0{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:5px;margin-top:max(0.5px, 0.0008737 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8ooawu0{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8omdbfg7{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0035088 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omdbfg7{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oobbzb{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:max-content;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}#comp-m8oobbzb{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:12px;--textDecoration:none;--maxFontSize:18px;--fontFamily:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;--fontSize:18spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb{--minFontSize:14px;--fontSize:8.449spx;}}#comp-m8oqa661{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:5/1/6/2;position:relative;}#comp-m8oqa661 .comp-m8oqa661-container{box-sizing:border-box;position:relative;pointer-events:none;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oqa661{grid-area:6/1/7/2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oqa661{grid-area:6/1/7/2;}}#comp-m8oqa661{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8oqbc3l{min-height:250px;--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8oqbc3l{--static-spx:1px;}#comp-m8omcigd2{width:auto;height:auto;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:2/1/3/2;position:relative;}.comp-m8omcigd2-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2:not(.comp-m8omcigd2-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2{--l_display:unset;}}#comp-m8omcigd2{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcigd2_r_comp-kbgakgyt{min-height:267.2430725097656px;height:auto;min-width:0px;max-width:99999px;max-height:99999px;--section-max-width:var(--variables-m28o2bcx);--full-viewport:100 * var(--one-unit) * var(--browser-zoom);--scaling-factor:clamp(var(--spx-stopper-min), var(--full-viewport), min(var(--spx-stopper-max), var(--section-max-width)));--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:7/1/8/2;position:relative;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:5%;padding-right:3%;padding-left:3%;padding-bottom:5%;row-gap:30px;max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);display:var(--l_display,var(--container-display));grid-template-rows:minmax(89.25276263439997px,auto) minmax(5.664037365600061px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt:not(.comp-m8omcigd2_r_comp-kbgakgyt-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container-pinned{max-width:var(--variables-m28o2bcx);margin-left:clamp(0px, (100% - var(--variables-m28o2bcx)) / 2, 100 * var(--one-unit));--section-max-width:var(--variables-m28o2bcx);height:100%;width:100%;position:absolute;display:grid;pointer-events:none;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kbgakgyt .comp-m8omcigd2_r_comp-kbgakgyt-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;}}#comp-m8omcigd2_r_comp-kbgakgyt{--bg:var(--color_11);--alpha-bg:0;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y11976{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{box-sizing:border-box;position:relative;pointer-events:none;column-gap:20px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:0.78897289824462fr 0.5938730200850597fr 1.1149251916876468fr;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y11976 .comp-m8omcigd2_r_comp-m2y11976-container{row-gap:20px;grid-template-rows:minmax(max-content,36.4128993682897%) minmax(max-content,30.428289182936023%) minmax(max-content,33.15881144877427%);grid-template-columns:minmax(0px,1fr);}}#comp-m8omcigd2_r_comp-m2y11976{--brw:0px;--brd:var(--color_13);--bg:var(--color_12);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y12dql{--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y12dql{align-self:center;justify-self:start;margin-top:0px;grid-area:2/1/3/2;}}#comp-m8omcigd2_r_comp-m2y12dql{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1gxle{width:100%;height:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:55.0694580078125px;margin-left:0%;margin-bottom:0%;margin-right:0%;grid-area:1/3/2/4;position:relative;}.comp-m8omcigd2_r_comp-m2y1gxle-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m2y1gxle{align-self:center;margin-top:0px;grid-area:3/1/4/2;}}#comp-m8omcigd2_r_comp-m2y1gxle{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y1gkmp{--l_display:unset;height:auto;min-width:0px;width:53.70486122406853%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:63.50348472595215px;align-self:flex-start;order:1;position:relative;}#comp-m8omcigd2_r_comp-m2y1gkmp{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y1awex{--l_display:unset;height:62.145843505859375px;min-width:333.7778015136719px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-top:0%;margin-right:0%;margin-left:0.005193163273693327%;margin-bottom:0px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m8j7owsd{width:99.9999390940607%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcigd2_r_comp-m8j7owsd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcigd2_r_comp-m8j7owsd{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcigd2_r_comp-m8j7o6oq{width:105px;height:auto;--aspect-ratio:0.38645833333333335;--l_display:unset;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15.000030517578125px;align-self:flex-start;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:20px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-m8j7o6oq{margin-bottom:19.812px;}}#comp-m8omcigd2_r_comp-m8j7o6oq{--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-m2y10ib8{--l_display:unset;height:auto;min-width:0px;width:100%;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:15px;align-self:flex-start;order:2;position:relative;}#comp-m8omcigd2_r_comp-m2y10ib8{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em montserrat,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 16px/1.6em montserrat,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:10px;--menuSpacing:0px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-mbweuill{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}#comp-m8omcigd2_r_comp-mbweuill{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcigd2_r_comp-kd5pdf7t{--l_display:unset;height:auto;min-width:0px;width:62.50000000000002%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:end;justify-self:center;pointer-events:auto;margin-left:0.004035058593672147px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:2/1/3/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcigd2_r_comp-kd5pdf7t{width:100%;}}#comp-m8omcigd2_r_comp-kd5pdf7t{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textAlign:center;--fontSize:12px;--lineHeight:normal;--letterSpacing:0em;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716{height:auto;width:auto;--l_display:unset;--comp-display:unset;align-self:start;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcih716-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716:not(.comp-m8omcih716-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih716{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcih716_r_comp-kd5px9hr{min-height:100vh;height:100vh;min-width:0px;width:300px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(0px,1fr);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr:not(.comp-m8omcih716_r_comp-kd5px9hr-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9hr{width:100vw;max-width:99999px;}#comp-m8omcih716_r_comp-kd5px9hr .comp-m8omcih716_r_comp-kd5px9hr-container{grid-template-columns:minmax(0px,390fr);}}#comp-m8omcih716_r_comp-kd5px9hr{--containerBackground:var(--color_11);--alpha-containerBackground:1;--bg:var(--color_15);--alpha-bg:0.8;--static-spx:0.1 * var(--one-unit);}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;width:60%;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:100px;margin-bottom:200px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{width:46.15384615384615%;}}#comp-m8omcih716_r_comp-kd5px9kk{--bgs:var(--color_11);--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:var(--color_11);--brw:0px 0px 0px 0px;--brd:var(--color_15);--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_15);--alpha-txt:1;--arrowColor:var(--color_15);--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:var(--color_11);--txtsSub:var(--color_18);--alpha-txtsSub:1;--txts:var(--color_18);--alpha-txts:1;--bgexpanded:var(--color_11);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_15);--alpha-txtexpanded:1;--subMenuSpacing:25px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light {color_14};--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0.2;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 18px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcih716_r_comp-kd5px9kk{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:var(--color_18);--txtsSub:var(--color_15);--txts:var(--color_15);--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:var(--color_18);}}#comp-m8omcih716_r_comp-kkmqi5tc{height:20px;width:20px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;position:sticky;--force-auto:initial;top:var(--force-auto,calc(0px + var(--sticky-offset, 0px)));bottom:var(--force-auto,);left:var(--force-auto,);right:var(--force-auto,);pointer-events:auto;margin-left:0%;margin-right:40px;margin-top:40px;margin-bottom:0px;grid-area:1/1/2/2;--is-sticky:1;}#comp-m8omcih716_r_comp-kkmqi5tc{--static-spx:0.1 * var(--one-unit);}#comp-m8omcih82{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcih82-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcih82{--static-spx:1px;}#comp-m8omcihb{width:auto;height:auto;--comp-display:unset;align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);grid-area:1/1/2/2;position:relative;}.comp-m8omcihb-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb:not(.comp-m8omcihb-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#masterPage:not(.landingPage){--top-offset:var(--header-height);}#masterPage.landingPage{--top-offset:0px;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb{--l_display:unset;}#masterPage:not(.landingPage){--top-offset:0px;}}#comp-m8omcihb{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m8omcihb_r_comp-kbgajy18{min-height:31.493057250976562px;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-kbgajy18 .comp-m8omcihb_r_comp-kbgajy18-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:0%;padding-left:0%;padding-bottom:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(31.493042749023438px,auto);grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-kbgajy18:not(.comp-m8omcihb_r_comp-kbgajy18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-kbgajy18{min-height:0px;--l_display:unset;align-self:start;margin-left:0%;margin-right:0%;margin-bottom:0%;margin-top:calc(0px);}#comp-m8omcihb_r_comp-kbgajy18-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}}#comp-m8omcihb_r_comp-kbgajy18{--bg:var(--color_11);--bg-scrl:var(--color_19);--alpha-bg:0;--alpha-bg-scrl:0.5;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m6saac0q{height:27px;width:23px;--l_display:none;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:2.2%;margin-top:0px;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-m6saadbd{min-height:40px;--l_display:none;height:40px;width:120px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-top:0px;margin-right:70px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m6saadbd-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd:not(.comp-m8omcihb_r_comp-m6saadbd-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-m6saadbd{--static-spx:1px;}#comp-m8omcihb_r_comp-mdeyh2rw{min-height:0px;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:start;justify-self:center;pointer-events:auto;margin-top:0px;margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdeyh2rw-container{box-sizing:border-box;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(30px,auto) auto;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyh2rw{align-self:center;}.comp-m8omcihb_r_comp-mdeyh2rw-container{grid-template-rows:38px auto;}}#comp-m8omcihb_r_comp-mdeyh2rw{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:0.00px 1.00px 15px 1px rgba(0,0,0,0.33);--gradient:none;--alpha-brd:0;--alpha-bg:0;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xyvk9x{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:2/1/3/2;position:relative;}#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:15px;padding-right:4%;padding-left:4%;padding-bottom:15px;column-gap:2vw;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:auto 2fr auto max-content;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:20px;padding-left:20px;column-gap:20px;grid-template-columns:0.7455718081753153fr 1.4241559701215807fr 0.2028363141690787fr;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m2xyvk9x .comp-m8omcihb_r_comp-m2xyvk9x-container{padding-right:15px;padding-left:15px;column-gap:12px;grid-template-columns:1.7156281834535556fr 0.19719864177627078fr 0.19719864177627078fr;}#comp-m8omcihb_r_comp-m2xyvk9x{margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;}}#comp-m8omcihb_r_comp-m2xyvk9x{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:0.5;--backdrop-filter:blur(10px);--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-m2xz2cwh{min-height:25px;--l_display:unset;height:auto;min-width:91px;width:20.58464803554209%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0.0014034987297066638%;margin-top:0%;margin-bottom:0%;grid-area:1/2/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m2xz2cwh{--l_display:none;min-width:95px;width:99.99991051557328%;justify-self:center;margin-left:0.05670408489563268%;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-m2xz2cwh{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:0;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:1;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh:not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6, #comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6 :not(.is-animating) :not(.is-animating){transition:all 0.3s ease-in-out 0s, visibility 0s;--transition:all 0.3s ease-in-out 0s, visibility 0s;}#comp-m8omcihb_r_comp-m2xz2cwh{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1)scaleY(1)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-m2xz2cwh.comp-m8omcihb_r_variants-mdezjme6{opacity:1;--comp-opacity:1;transform:translateX(0px)translateY(0px)scaleX(1.02)scaleY(1.02)rotate(0deg)skewX(0deg)skewY(0deg);--comp-rotate-z:0deg;}#comp-m8omcihb_r_comp-lxu2mi30{min-height:0px;--l_display:none;height:35px;min-width:0px;width:35px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:center;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:2.999267578125%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-lxu2mi30-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi30:not(.comp-m8omcihb_r_comp-lxu2mi30-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:35px;width:35px;margin-right:0%;grid-area:1/3/2/4;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi30{--l_display:unset;height:25px;width:30px;margin-right:0%;grid-area:1/3/2/4;}}#comp-m8omcihb_r_comp-lxu2mi30{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxu2mi38{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c{min-height:300px;--l_display:unset;height:300px;min-width:0px;width:980px;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:scroll;overflow-y:scroll;--sticky-offset:0px;scrollbar-width:none;overflow:-moz-scrollbars-none;-ms-overflow-style:none;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-container{box-sizing:border-box;position:relative;pointer-events:none;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c:not(.comp-m8omcihb_r_comp-lxu2mi3c-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper::-webkit-scrollbar{width:0;height:0;}#comp-m8omcihb_r_comp-lxu2mi3d5{min-height:79px;--l_display:unset;height:auto;min-width:0px;width:40%;max-width:99999px;max-height:99999px;--comp-display:unset;align-self:stretch;justify-self:end;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:0%;margin-bottom:0%;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper{position:relative;display:grid;grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);overflow-x:hidden;overflow-y:scroll;--sticky-offset:0px;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:0px;column-gap:0px;display:var(--l_display,var(--container-display));grid-template-rows:minmax(79px,auto);grid-template-columns:minmax(0px,512fr);--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m8omcihb_r_comp-lxu2mi3d5:not(.comp-m8omcihb_r_comp-lxu2mi3d5-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:50%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,339.7816875fr);}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5{width:100%;}#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-container{padding-top:50px;padding-right:5%;padding-left:5%;padding-bottom:50px;grid-template-columns:minmax(0px,390fr);}}#comp-m8omcihb_r_comp-lxu2mi3i1{min-height:0px;--l_display:unset;height:20px;min-width:0px;width:20px;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:45.890625px;margin-top:34.5px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1{margin-right:0px;margin-top:0px;}}#comp-m8omcihb_r_comp-m5rceko6{width:100%;height:auto;--comp-display:unset;align-self:start;justify-self:start;pointer-events:auto;margin-top:333.23333740234375px;margin-left:0%;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-m5rceko6-container{box-sizing:border-box;display:var(--l_display,var(--container-display));flex-direction:column;--container-layout-type:flex-container-layout;--container-display:flex;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:20vh;margin-left:0px;margin-bottom:20vh;margin-right:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceko6{align-self:center;margin-top:0vh;margin-left:0px;margin-bottom:1.834175071348669vh;margin-right:0px;}}#comp-m8omcihb_r_comp-m5rceko6{--brw:0px;--brd:var(--color_15);--bg:var(--color_11);--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdezy72f{min-height:0px;--l_display:none;height:auto;min-width:0px;width:52%;max-width:99999px;max-height:99999px;--comp-display:unset;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));align-self:flex-start;order:2;position:relative;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{box-sizing:border-box;position:relative;pointer-events:none;row-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));column-gap:max(0.5px, 0.0062507 * (var(--scaling-factor) - var(--scrollbar-width)));display:var(--l_display,var(--container-display));flex-direction:row;justify-content:center;flex-wrap:wrap;--container-layout-type:flex-container-layout;--container-display:flex;}#comp-m8omcihb_r_comp-mdezy72f:not(.comp-m8omcihb_r_comp-mdezy72f-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezy72f{margin-bottom:29.999984741210938px;order:1;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezy72f{--l_display:unset;margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:2;}#comp-m8omcihb_r_comp-mdezy72f .comp-m8omcihb_r_comp-mdezy72f-container{row-gap:5px;column-gap:0px;flex-direction:column;justify-content:flex-start;flex-wrap:nowrap;}}#comp-m8omcihb_r_comp-mdezy72f{--brw:0px;--brd:50,65,88;--bg:255,255,255;--rd:0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:0;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}.comp-m8omcihb_r_comp-mdezy72s{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:100%;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;padding-top:5px;padding-right:0px;padding-left:0px;padding-bottom:5px;display:var(--l_display,var(--container-display));grid-template-rows:max-content;grid-template-columns:minmax(0px,1fr);--container-layout-type:grid-container-layout;--container-display:grid;pointer-events:auto;margin-top:0px;margin-bottom:0px;margin-left:0px;margin-right:0px;flex-basis:auto;flex-grow:0;flex-shrink:0;position:relative;}.comp-m8omcihb_r_comp-mdezy72s{--brw:0px;--brd:var(--color_15);--bg:var(--color_12);--rd:0px 0px 0px 0px;--shd:none;--gradient:none;--alpha-brd:0;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdezy72s{--alpha-bg:0;}}.comp-m8omcihb_r_comp-mdf0r6km{--l_display:none;height:auto;min-width:0px;width:18.125%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0px;margin-right:max(0.5px, 0.0042666 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:max(0.5px, 0.1398222 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0px;grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--l_display:unset;width:max-content;align-self:center;justify-self:start;margin-right:0px;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0r6km{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--textDecoration:none;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km{--fontSize:12spx;}}.comp-m8omcihb_r_comp-mdf0tx18{min-height:110px;--l_display:none;height:auto;min-width:0px;width:185px;max-width:99999px;max-height:99999px;--comp-display:unset;box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;align-self:center;justify-self:center;pointer-events:auto;margin-top:max(0.5px, 0.0078133 * (var(--scaling-factor) - var(--scrollbar-width)));margin-left:0px;margin-bottom:0px;margin-right:0px;grid-area:1/1/2/2;position:relative;}.comp-m8omcihb_r_comp-mdf0tx18:not(.comp-m8omcihb_r_comp-mdf0tx18-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{min-height:0px;--l_display:unset;height:100%;width:100%;align-self:start;justify-self:start;margin-top:0px;}}.comp-m8omcihb_r_comp-mdf0tx18{--font:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--color:#000000;--label-display:none;--letter-spacing:0em;--line-height:unset;--text-decoration:none;--direction:rtl;--text-align:center;--text-highlight:none;--text-transform:none;--text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--text-shadow:0px 0px 0px transparent;--background:rgba(255,255,255,1);--box-shadow:1px 2px 8px 1px rgba(0,0,0,0.1);--border-left:2px dashed rgba(199,199,199,1);--border-right:2px dashed rgba(199,199,199,1);--border-top:2px dashed rgba(199,199,199,1);--border-bottom:2px dashed rgba(199,199,199,1);--padding-bottom:8px;--padding-top:8px;--padding-left:8px;--padding-right:8px;--border-top-left-radius:6px;--border-top-right-radius:6px;--border-bottom-left-radius:6px;--border-bottom-right-radius:6px;--icon-display:initial;--icon-size:24px;--icon-color:rgba(0,0,0,1);--icon-rotation:0;--container-flex-direction:row-reverse;--container-justify-content:center;--container-align-items:center;--content-horizontal-alignment:center;--content-gap:0px;--label-overflow:wrap;--disabled-icon-rotation:0;--hover-border-right:2px solid rgba(141,181,255,1);--disabled-border-bottom:2px solid rgba(199,199,199,1);--disabled-border-top:2px solid rgba(199,199,199,1);--hover-border-left:2px solid rgba(141,181,255,1);--disabled-background:rgba(199,199,199,1);--disabled-border-right:2px solid rgba(199,199,199,1);--disabled-color:#000000;--hover-border-top:2px solid rgba(141,181,255,1);--hover-border-bottom:2px solid rgba(141,181,255,1);--disabled-border-left:2px solid rgba(199,199,199,1);--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0tx18{--background:rgba(255,255,255,0);--box-shadow:none;--border-left:0px dashed rgba(199,199,199,1);--border-right:0px dashed rgba(199,199,199,1);--border-top:0px dashed rgba(199,199,199,1);--border-bottom:0px dashed rgba(199,199,199,1);--icon-display:none;}}#comp-m8omcihb_r_comp-m5rceatr{min-height:25px;--l_display:unset;height:auto;min-width:95px;width:58.8235294117647%;max-width:200px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:20px;order:2;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m5rceatr{margin-bottom:max(0.5px, 0.0666667 * (var(--scaling-factor) - var(--scrollbar-width)));order:3;}}#comp-m8omcihb_r_comp-m5rceatr{--rd:4.934px 4.934px 4.934px 4.934px;--trans1:border-color 0.4s ease 0s, background-color 0.4s ease 0s;--shd:none;--horizontalPadding:14.801px;--verticalPadding:7.894px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;--trans2:color 0.4s ease 0s;--txt:255,255,255;--bg:var(--color_24);--brd:0,0,0;--brw:0px;--bgh:var(--color_19);--brdh:26,106,255;--txth:255,255,255;--bgd:238,238,238;--txtd:141,141,141;--alpha-txtd:1;--alpha-txth:1;--margin:0px;--alpha-bgd:1;--alpha-brdh:1;--align:center;--alpha-brd:1;--alpha-bg:1;--alpha-bgh:0.7;--boxShadowToggleOn-shd:none;--alpha-txt:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-lxubhuix{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:99.8529411764706%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:29.999969482421875px;align-self:flex-end;order:1;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:29.999984741210938px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxubhuix{margin-bottom:10px;}}#comp-m8omcihb_r_comp-lxubhuix{--bgs:255,255,255;--itemBGColorNoTrans:background-color 50ms ease 0s;--shd:none;--bg:255,255,255;--brw:0px;--brd:0,0,0;--itemBGColorTrans:background-color 0.4s ease 0s;--verticalPadding:10px;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txt:0,0,0;--alpha-txt:1;--arrowColor:0,0,0;--alpha-arrowColor:1;--subMenuOpacityTrans:opacity 0.4s ease 0s;--bgsSub:0,0,0;--txtsSub:26,106,255;--alpha-txtsSub:1;--txts:26,106,255;--alpha-txts:1;--bgexpanded:255,255,255;--fntSubMenu:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--txtexpanded:0,0,0;--alpha-txtexpanded:1;--subMenuSpacing:0px;--menuSpacing:10px;--bgh:230,234,245;--SKINS_fntSubmenu:normal normal normal 16px/1.4em din-next-w01-light #8D8D8D;--alpha-SKINS_bgSubmenu:0;--rd:90px;--alpha-bgs:0;--alpha-bgsSub:0;--alpha-brd:0;--textSpacing:0;--alpha-bg:0;--SKINS_submenuMargin:0;--alpha-bgexpanded:0;--sepw:1;--alpha-bgh:1;--SKINS_submenuBR:90px;--boxShadowToggleOn-shd:none;--separatorHeight:15;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--fnt:normal normal 700 18px/1.6em montserrat,sans-serif;--fntSubMenu:normal normal normal 14px/1.6em montserrat,sans-serif;--menuSpacing:0px;}}#comp-m8omcihb_r_comp-mdezahz3{width:100px;height:35px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;align-self:flex-start;order:4;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdezahz3{order:3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdezahz3{order:4;}}#comp-m8omcihb_r_comp-mdezahz3{--borderColor:24,24,24;--borderWidth:1px;--borderRadius:10px 10px 10px 10px;--boxShadow:none;--separatorColor:var(--color_15);--backgroundColor:var(--color_11);--alpha-backgroundColor:1;--borderRadiusValue:10px 10px 10px 10px;--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemTextColor:var(--color_15);--itemTextColorHover:var(--color_15);--backgroundColorHover:var(--color_23);--itemTextColorActive:var(--color_24);--alpha-itemTextColorActive:1;--backgroundColorActive:var(--color_23);--alpha-separatorColor:0.2;--borderSides:none;--itemSpacing:5px;--alpha-itemTextColorHover:1;--alpha-backgroundColorActive:0.2;--alpha-backgroundColorHover:0.2;--borderColorHover:rgba(32, 32, 32, 1);--alpha-borderColor:0.2;--borderColorActive:rgba(32, 32, 32, 1);--boxShadowToggleOn-boxShadow:none;--alpha-itemTextColor:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m73v5p0x{width:23px;height:27px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:4.01666259765625px;grid-area:1/4/2/5;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m73v5p0x{margin-right:0px;margin-bottom:0px;grid-area:1/2/2/3;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m73v5p0x{width:20px;height:23.8203125px;margin-right:max(0.5px, 0.0266667 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:max(0.5px, 0.0000213 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-m8j7mq6v{min-height:0px;--l_display:unset;height:40.5703125px;min-width:0px;width:105px;max-width:99999px;max-height:99999px;--aspect-ratio:auto;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:min(-0.5px, 0 * (var(--scaling-factor) - var(--scrollbar-width)));margin-right:0px;margin-top:0px;margin-bottom:max(0.5px, 0.0000062 * (var(--scaling-factor) - var(--scrollbar-width)));grid-area:1/1/2/2;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m8j7mq6v{margin-left:0px;margin-bottom:0px;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-m8j7mq6v{min-height:unset;height:auto;--aspect-ratio:0.3380208333333333;width:120px;}}#comp-m8omcihb_r_comp-m8j7mq6v{--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-m99166jr{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:85.59978065360544%;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:max(0.5px, 0.0678332 * (var(--scaling-factor) - var(--scrollbar-width)));margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-m99166jr{--l_display:none;width:auto;align-self:center;justify-self:stretch;margin-right:0%;margin-bottom:0%;}}#comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-m99166jr{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 15px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgba(var(--color_11),1);--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:15px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:10px;--scroll-button-padding-left:10px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:start;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdez2caz{min-height:0px;--l_display:unset;height:80%;min-width:2px;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:start;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdez2caz{justify-self:end;margin-right:15px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdez2caz{--lnw:1px;--brd:var(--color_11);--mrg:1px;--alpha-brd:1;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdeyhsow{min-height:0px;--comp-display:flex;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;display:var(--l_display,var(--comp-display,flex));flex-direction:column;align-self:stretch;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{box-sizing:border-box;position:relative;pointer-events:none;padding-top:0px;padding-right:5%;padding-left:5%;padding-bottom:0px;column-gap:30px;flex-grow:1;display:var(--l_display,var(--container-display));grid-template-rows:minmax(max-content,100%);grid-template-columns:1fr 1fr auto;--container-layout-type:grid-container-layout;--container-display:grid;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyhsow .comp-m8omcihb_r_comp-mdeyhsow-container{padding-top:5px;padding-bottom:5px;grid-template-columns:auto max-content;}}#comp-m8omcihb_r_comp-mdeyhsow{--brw:0px;--brd:var(--color_13);--bg:var(--color_19);--rd:0px;--shd:none;--gradient:none;--alpha-brd:1;--alpha-bg:1;--boxShadowToggleOn-shd:none;--static-spx:0.1 * var(--one-unit);--bg-gradient:none;}#comp-m8omcihb_r_comp-mdeylyv3{min-height:unset;--l_display:unset;height:auto;--aspect-ratio:0.4;min-width:0px;width:100%;max-width:99999px;max-height:99999px;aspect-ratio:1/var(--aspect-ratio);--comp-display:unset;display:var(--l_display,var(--display,block));align-self:center;justify-self:end;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/3/2/4;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{width:38.114694739409835%;grid-area:1/2/2/3;}}#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--orientation:HORIZ;--spacing:10px;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:33.599spx;--spacing:10.001spx;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--iconSize:20px;--spacing:10px;}}#comp-m8omcihb_r_comp-mdeyqfi8{min-height:0px;--l_display:unset;height:auto;min-width:0px;width:auto;max-width:99999px;max-height:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:stretch;pointer-events:auto;margin-left:0px;margin-right:0px;margin-top:0%;margin-bottom:0px;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeyqfi8{--l_display:none;align-self:end;margin-left:max(0.5px, 0.08 * (var(--scaling-factor) - var(--scrollbar-width)));margin-bottom:0%;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--container-background:rgba(255,255,255,0);--container-box-shadow:none;--container-border-left:0px solid rgba(255, 255, 255, 0);--container-border-right:0px solid rgba(255, 255, 255, 0);--container-border-top:0px solid rgba(255, 255, 255, 0);--container-border-bottom:0px solid rgba(255, 255, 255, 0);--container-border-radius:0 0 0 0;--container-padding-top:0px;--container-padding-right:0px;--container-padding-bottom:0px;--container-padding-left:0px;--item-background:rgba(255, 255, 255, 0);--item-font:normal normal normal 12px/1.6em montserrat,sans-serif;--item-color:rgba(var(--color_11),1);--item-text-decoration:none;--item-text-transform:revert;--item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--item-text-highlight:transparent;--item-letter-spacing:0em;--item-line-height:1.4em;--item-text-shadow:0px 0px transparent;--item-border-left:0px solid #000000;--item-border-right:0px solid #000000;--item-border-top:0px solid rgba(255, 255, 255, 0);--item-border-bottom:0px solid rgba(255, 255, 255, 0);--item-border-radius:0px 0px 0px 0px;--item-box-shadow:none;--horizontal-item-icon-display:initial;--item-icon-size:10px;--item-icon-color:rgb(var(--color_19));--item-divider:medium none currentcolor;--item-text-align:center;--item-direction:revert;--item-vertical-padding:10px;--item-horizontal-padding:0px;--item-padding-top:initial;--item-padding-right:initial;--item-padding-bottom:10px;--item-padding-left:10px;--scroll-button-background:rgb(255, 255, 255);--scroll-button-border-left:0 solid #757575;--scroll-button-border-right:0 solid #757575;--scroll-button-border-top:0 solid #757575;--scroll-button-border-bottom:0 solid #757575;--scroll-button-border-radius:0 0 0 0;--scroll-button-box-shadow:none;--scroll-button-icon-display:unset;--scroll-button-icon-size:16px;--scroll-button-icon-color:rgb(158, 59, 27);--scroll-button-icon-rotation:none;--scroll-button-padding-right:0px;--scroll-button-padding-left:0px;--dropdown-container-background:rgb(var(--color_11));--dropdown-container-box-shadow:none;--dropdown-container-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-container-border-radius:5px 5px 5px 5px;--dropdown-anchor:menuItem;--dropdown-align:start;--dropdown-horizontal-margin:20px;--dropdown-space-above:0px;--dropdown-menu-container-background:rgba(var(--color_11),0);--dropdown-menu-container-box-shadow:none;--dropdown-menu-container-border-left:medium none currentcolor;--dropdown-menu-container-border-right:medium none currentcolor;--dropdown-menu-container-border-top:medium none currentcolor;--dropdown-menu-container-border-bottom:medium none currentcolor;--dropdown-menu-container-border-radius:0 0 0 0;--dropdown-menu-item-background:rgba(255, 255, 255, 0);--dropdown-menu-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-item-color:rgb(var(--color_19));--dropdown-menu-item-text-decoration:none;--dropdown-menu-item-text-transform:revert;--dropdown-menu-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-letter-spacing:0em;--dropdown-menu-item-line-height:1.4em;--dropdown-menu-item-text-shadow:0px 0px transparent;--dropdown-menu-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-item-border-radius:0 0 0 0;--dropdown-menu-item-box-shadow:none;--dropdown-menu-sub-item-background:rgba(255, 255, 255, 0);--dropdown-menu-sub-item-font:normal normal 700 14px/1.6em montserrat,sans-serif;--dropdown-menu-sub-item-color:rgb(var(--color_19));--dropdown-menu-sub-item-text-decoration:none;--dropdown-menu-sub-item-text-transform:revert;--dropdown-menu-sub-item-text-outline:1px 0px transparent, -1px 0px transparent, 0px 1px transparent, 0px -1px transparent;--dropdown-menu-sub-item-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-letter-spacing:0em;--dropdown-menu-sub-item-line-height:1.4em;--dropdown-menu-sub-item-text-shadow:0px 0px transparent;--dropdown-menu-sub-item-border-left:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-right:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-top:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-bottom:0px solid rgba(255, 255, 255, 0);--dropdown-menu-sub-item-border-radius:0 0 0 0;--dropdown-menu-sub-item-box-shadow:none;--dropdown-menu-item-vertical-padding:10px;--dropdown-menu-item-horizontal-padding:10px;--dropdown-menu-item-padding-top:initial;--dropdown-menu-item-padding-right:10px;--dropdown-menu-item-padding-bottom:10px;--dropdown-menu-item-padding-left:initial;--dropdown-menu-container-vertical-padding:0px;--dropdown-menu-container-horizontal-padding:4px;--dropdown-menu-container-padding-top:6px;--dropdown-menu-container-padding-right:6px;--dropdown-menu-container-padding-bottom:6px;--dropdown-menu-container-padding-left:6px;--dropdown-menu-item-vertical-spacing:6px;--dropdown-menu-item-horizontal-spacing:normal;--dropdown-menu-sub-items-vertical-spacing-before:6px;--dropdown-menu-sub-items-vertical-spacing-between:6px;--dropdown-menu-sub-item-vertical-padding:10px;--dropdown-menu-sub-item-horizontal-padding:10px;--dropdown-menu-sub-item-padding-top:initial;--dropdown-menu-sub-item-padding-right:10px;--dropdown-menu-sub-item-padding-bottom:10px;--dropdown-menu-sub-item-padding-left:initial;--dropdown-menu-columns-number:1;--dropdown-menu-align:start;--dropdown-menu-item-align:start;--dropdown-menu-sub-item-align:start;--display-mode:navbar;--spacing-between-label-and-dropdown-icon:6px;--menu-items-main-axis-gap:8px;--menu-items-cross-axis-gap:8px;--orientation:horizontal;--overflow:scroll;--divider-display:none;--container-align:end;--menu-items-justification:none;--animation-name:bullet;--vertical-dropdown-display:alwaysOpen;--item-hover-color:rgba(var(--color_11),1);--item-selected-color:rgba(var(--color_11),1);--item-margin-right:4px;--menu-justify-content:center;--dropdown-menu-sub-item-hover-text-decoration:none;--dropdown-menu-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-hover-text-highlight:rgba(255,255,255,0);--item-selected-icon-color:rgb(var(--color_19));--scroll-button-hover-padding-right:0px;--dropdown-menu-sub-item-text-align:left;--item-hover-icon-color:rgb(var(--color_19));--dropdown-menu-item-hover-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-hover-color:rgb(var(--color_18));--dropdown-menu-sub-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-selected-text-decoration:none;--dropdown-menu-sub-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-sub-item-selected-text-decoration:none;--item-margin-bottom:4px;--scroll-button-hover-background:rgb(252, 247, 230);--scroll-button-hover-padding-left:0px;--dropdown-menu-item-selected-color:rgb(var(--color_18));--dropdown-menu-item-hover-text-decoration:none;--menu-width:calc(100% + 8px);--dropdown-menu-item-selected-text-highlight:rgba(255,255,255,0);--dropdown-menu-item-text-align:left;--static-spx:0.1 * var(--one-unit);}#comp-m8omcihb_r_comp-mdf18wki{--l_display:none;height:auto;min-width:0px;width:100%;max-width:99999px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:center;pointer-events:auto;margin-left:0%;margin-right:0%;margin-top:55.0694580078125px;margin-bottom:0%;grid-area:1/2/2/3;position:relative;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--l_display:unset;width:max-content;align-self:center;justify-self:end;margin-left:0px;margin-right:0px;margin-top:0px;margin-bottom:0px;grid-area:1/1/2/2;}}#comp-m8omcihb_r_comp-mdf18wki{--backgroundColor:0,0,0;--alpha-backgroundColor:0;--blendMode:normal;--textShadow:0px 0px transparent;--textOutline:0px 0px transparent;--minFontSize:14px;--maxFontSize:16px;--fontFamily:montserrat,sans-serif;--letterSpacing:0em;--lineHeight:1.6em;--fontSize:16spx;--static-spx:0.1 * var(--one-unit);}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki{--textDecoration:none;--color:var(--color_11);--alpha-color:1;--fontSize:4.216spx;}}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{height:60px;width:60px;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID{--alpha-txth:1;--bgh:43,104,156;--shd:0 1px 4px rgba(0, 0, 0, 0.6);--rd:20px;--alpha-brdh:1;--txth:255,255,255;--alpha-brd:1;--alpha-bg:1;--bg:61,155,233;--txt:255,255,255;--alpha-bgh:1;--brw:0px;--fnt:normal normal normal 14px/1.4em raleway;--brd:43,104,156;--boxShadowToggleOn-shd:none;--alpha-txt:1;--brdh:61,155,233;--static-spx:1px;}#comp-m8oopad5{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m8oopad5-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-m8oopad5{--static-spx:1px;}#comp-m9cxxt3r{width:auto;height:auto;--comp-display:unset;align-self:end;justify-self:end;pointer-events:auto;margin-top:0px;margin-right:10px;margin-bottom:0px;margin-left:0px;grid-area:1/1/2/2;position:relative;}.comp-m9cxxt3r-container{box-sizing:border-box;display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:1fr;--container-layout-type:grid-container-layout;--container-display:grid;}#comp-m9cxxt3r:not(.comp-m9cxxt3r-container){display:var(--l_display,var(--container-display));grid-template-rows:1fr;grid-template-columns:minmax(0, 1fr);--container-display:grid;}#comp-m9cxxt3r-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;bottom:0;top:unset;height:auto;}#comp-m9cxxt3r{--alpha-bg:0;--bg:var(--color_11);--static-spx:1px;}#comp-m9cxxt3r_r_comp-m9cxxr9c{height:auto;width:auto;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:stretch;justify-self:stretch;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-m9cxxt3r{justify-self:end;align-self:end;position:absolute;grid-area:1 / 1 / 2 / 2;pointer-events:auto;}#comp-mfl8zvjs{height:60px;width:60px;--l_display:unset;--comp-display:unset;display:var(--l_display,var(--display,block));align-self:start;justify-self:end;pointer-events:auto;grid-area:1/1/2/2;position:relative;}#comp-mfl8zvjs-pinned-layer{position:fixed;left:0;width:100%;display:grid;grid-template-columns:1fr;grid-template-rows:1fr;top:0;bottom:unset;height:auto;margin-top:var(--wix-ads-height);}#comp-mfl8zvjs{--static-spx:1px;}</style> | |
| 439 | +<style id="stylableCss_ebqqm">/* END STYLABLE DIRECTIVE RULES */ | |
| 440 | + | |
| 441 | +#comp-m8omdbex1 .style-m8omdbey8__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;border-radius: 10px;border: 0px solid #000000;background: #4B6397;padding-left: 20px;padding-right: 20px;padding-top: 8px;padding-bottom: 8px} | |
| 442 | + | |
| 443 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 444 | + | |
| 445 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover { | |
| 446 | + background: #999999; | |
| 447 | + border: 0px solid #000000; | |
| 448 | +} | |
| 449 | + | |
| 450 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__icon { | |
| 451 | + fill: #000000; | |
| 452 | + transform: rotate(317deg);} | |
| 453 | + | |
| 454 | +#comp-m8omdbex1 .style-m8omdbey8__root:hover .StylableButton2545352419__label { | |
| 455 | + color: #000000; | |
| 456 | +} | |
| 457 | + | |
| 458 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled{background: #E2E2E2} | |
| 459 | + | |
| 460 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__label{color: #8F8F8F} | |
| 461 | + | |
| 462 | +#comp-m8omdbex1 .style-m8omdbey8__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 463 | + | |
| 464 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__container{transition: inherit;flex-direction: row;justify-content: center;align-items: center} | |
| 465 | + | |
| 466 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;display: initial;margin-left: 0px;margin-right: 5px; font-family: montserrat,sans-serif; font-size: calc(19 * var(--theme-spx-ratio)); font-weight: normal; font-style: normal;font-size: 16px;color: #FAFAFA} | |
| 467 | + | |
| 468 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;margin-right: 0px;width: 14px;height: 14px;margin-left: 5px;fill: #FAFAFA}@media screen and (min-width: 320px) and (max-width: 1000px){/* END STYLABLE DIRECTIVE RULES */ | |
| 469 | + | |
| 470 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 471 | + | |
| 472 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { font-size: calc(19 * var(--theme-spx-ratio)); | |
| 473 | + font-size: 16px; | |
| 474 | +}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 475 | + | |
| 476 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__icon { | |
| 477 | + width: 12px; | |
| 478 | + height: 12px; | |
| 479 | + margin-left: 4px; | |
| 480 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 481 | + | |
| 482 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 483 | + | |
| 484 | +#comp-m8omdbex1 .style-m8omdbey8__root{ | |
| 485 | + padding-right: 0px; | |
| 486 | +} | |
| 487 | + | |
| 488 | +#comp-m8omdbex1 .style-m8omdbey8__root .StylableButton2545352419__label { | |
| 489 | + margin-right: 4px; font-size: calc(19 * var(--theme-spx-ratio)); | |
| 490 | + font-size: 16px; | |
| 491 | +}}/* END STYLABLE DIRECTIVE RULES */ | |
| 492 | + | |
| 493 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding: 0px;border: 0px solid #949494;border-radius: 0px;background: rgba(255, 255, 255, 0)} | |
| 494 | + | |
| 495 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 496 | + | |
| 497 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover { | |
| 498 | + background: rgba(255, 255, 255, 0); | |
| 499 | + border: 0px solid #000000; | |
| 500 | +} | |
| 501 | + | |
| 502 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__icon { | |
| 503 | + transform: rotate(0deg); | |
| 504 | + fill: #4B6397;} | |
| 505 | + | |
| 506 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:hover .StylableButton2545352419__label { | |
| 507 | + color: #FFFFFF; | |
| 508 | +} | |
| 509 | + | |
| 510 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled{border: 0px solid #000000;background: #EEEEEE} | |
| 511 | + | |
| 512 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__label{ | |
| 513 | + color: #4F4F4F} | |
| 514 | + | |
| 515 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 516 | + | |
| 517 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 518 | + | |
| 519 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #000000; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;margin-right: 0px;margin-left: 0px;margin-top: 0px;margin-bottom: 0px;display: none} | |
| 520 | + | |
| 521 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;width: 60px;height: 60px;margin-left: 0px;margin-right: 0px;margin-bottom: 0px;margin-top: 0px;fill: #000000;display: initial}@media screen and (min-width: 320px) and (max-width: 1000px){ | |
| 522 | + | |
| 523 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 524 | + -st-extends: HamburgerOpenButton; | |
| 525 | + border: 0px solid #000000; | |
| 526 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 527 | + | |
| 528 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 529 | + | |
| 530 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 531 | + fill: #FAFAFA;}}@media screen and (min-width: 320px) and (max-width: 750px){ | |
| 532 | + | |
| 533 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root{ | |
| 534 | + -st-extends: HamburgerOpenButton; | |
| 535 | + border: 0px solid #000000; | |
| 536 | +}/* END STYLABLE DIRECTIVE RULES */ | |
| 537 | + | |
| 538 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 539 | + | |
| 540 | +#comp-m8omcihb_r_comp-lxu2mi38 .comp-m8omcihb_r_comp-lxu2mi38-styleId__root .StylableButton2545352419__icon { | |
| 541 | + fill: #FAFAFA;}}#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 542 | + | |
| 543 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 544 | + | |
| 545 | +#comp-m8omcihb_r_comp-lxu2mi3c .comp-m8omcihb_r_comp-lxu2mi3c-styleId__root { -st-extends: HamburgerOverlay; background-color: rgba(0, 0, 0, 0.8); }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 546 | + | |
| 547 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3c {/* START STYLABLE DIRECTIVE RULES */} | |
| 548 | + | |
| 549 | +/* END STYLABLE DIRECTIVE RULES */}#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 550 | + | |
| 551 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 552 | + | |
| 553 | +#comp-m8omcihb_r_comp-lxu2mi3d5 .comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root { -st-extends: HamburgerMenuContainer; background-color: #FFFFFF; }@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 554 | + | |
| 555 | +/* END STYLABLE DIRECTIVE RULES */}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-lxu2mi3d5 {/* START STYLABLE DIRECTIVE RULES */} | |
| 556 | + | |
| 557 | +/* END STYLABLE DIRECTIVE RULES */}/* END STYLABLE DIRECTIVE RULES */ | |
| 558 | + | |
| 559 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{-st-extends: StylableButton;transition: all 0.2s ease, visibility 0s;padding-right: 0px;border-radius: 300px;background: rgba(255, 255, 255, 0)} | |
| 560 | + | |
| 561 | +/* START STYLABLE DIRECTIVE RULES */ | |
| 562 | + | |
| 563 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover { | |
| 564 | + background: #FFFFFF; | |
| 565 | + border: 0px solid #000000; | |
| 566 | + border-radius: 0px; | |
| 567 | +} | |
| 568 | + | |
| 569 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__icon { | |
| 570 | + fill: #000000; | |
| 571 | + transform: rotate(90deg);} | |
| 572 | + | |
| 573 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:hover .StylableButton2545352419__label { | |
| 574 | + color: #000000; | |
| 575 | +} | |
| 576 | + | |
| 577 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled{ | |
| 578 | + background: #EEEEEE} | |
| 579 | + | |
| 580 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__label{ | |
| 581 | + color: #4F4F4F} | |
| 582 | + | |
| 583 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root:disabled .StylableButton2545352419__icon{fill: #8F8F8F} | |
| 584 | + | |
| 585 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__container{transition: inherit;flex-direction: row-reverse;justify-content: center;align-items: center} | |
| 586 | + | |
| 587 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__label{transition: inherit;letter-spacing: 0em;margin: 0px 0px 0px 4px;color: #FFFFFF; font-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; font-size: 16px; font-weight: normal; font-style: normal;font-family: madefor-text;font-size: 16px;font-style: normal;font-weight: normal;line-height: 1.4em;display: none;margin-left: 1px} | |
| 588 | + | |
| 589 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root .StylableButton2545352419__icon{transition: inherit;margin: 0px 4px 0px 0px;display: initial;transform: rotate(0deg);fill: #000000;width: 28px;height: 28px;margin-right: 1px}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxu2mi3i1 {/* START STYLABLE DIRECTIVE RULES */} | |
| 590 | + | |
| 591 | +/* END STYLABLE DIRECTIVE RULES */ | |
| 592 | + | |
| 593 | +#comp-m8omcihb_r_comp-lxu2mi3i1 .comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root{ | |
| 594 | + -st-extends: HamburgerCloseButton; | |
| 595 | +}}</style> | |
| 596 | +<style id="compCssMappers_ebqqm">#ebqqm{--shc-mutated-brightness:125,125,125;justify-self:unset;}#comp-m8omdbdn{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;--inherit-transition:var(--transition, none);}#comp-m8oqdae2{--shc-mutated-brightness:125,125,125;}#comp-m8omdbe910{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea7{--shc-mutated-brightness:125,125,125;}#comp-m8omdbea15{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0466045 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbea15 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.0664894 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}#comp-m8omdbeb13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbeb13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:14px !important;}}#comp-m8omdbec6{--shc-mutated-brightness:77,77,77;}#comp-m8omdbec15{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeg9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbeh9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdbei9{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--align:start;--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--requiredIndicationDisplay:inline;--labelMarginBottom:8px;--textPadding:3px;--textPadding_start:12px;--textPadding_end:3px;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdben{--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--align:start;--textPaddingTop:0.75em;--textPaddingStart:12px;--textPaddingEnd:10px;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;}#comp-m8omdber7{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8omdber7{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbeu13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbeu13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbew :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FF4040;background-color:transparent;letter-spacing:0em;line-height:1.1;}#comp-m8omdbew [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FF4040);}#comp-m8or8zjr{--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--fntlbl:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--align:start;--direction:var(--wix-opt-in-direction, ltr);--labelDirection:inherit;--inputDirection:inherit;--errorDirection:inherit;--arrowInsetInlineStart:auto;--arrowInsetInlineEnd:0;--labelMarginBottom:8px;--requiredIndicationDisplay:inline;--labelPadding_start:0px;--labelPadding_end:20px;--textPaddingInput_start:20px;--textPaddingInput_end:48px;}#listModal_comp-m8or8zjr{height:100%;--align:start;--direction:var(--wix-opt-in-direction, ltr);--dropdownDirection:inherit;--fnt:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--dropdownItemsSpacing:16px;--dropdownOptionJustifyContent:flex-start;--textPaddingDropDown_start:20px;--textPaddingDropDown_end:0px;}#comp-m8omdbdr7{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82o{--shc-mutated-brightness:125,125,125;}#comp-m8oqu82u{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82u :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu82z{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu82z :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8oqu8301{--text-direction:var(--wix-opt-in-direction);}#comp-m8oqu8301 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:14px;text-decoration:none;}#comp-m8omdbdy12{--shc-mutated-brightness:125,125,125;}#comp-m8omf94r{--shc-mutated-brightness:77,77,77;}#comp-m8omdbey11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbez{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbez :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:16px !important;}}#comp-m8omdbf0{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf1{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf2{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf211{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf211 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;text-align:center;}#comp-m8omdbf39{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-mediumbold,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;font-weight:normal;font-size:max(14px, min(20px, max(0.5px, 0.0125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf39 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(16px, min(20px, max(0.5px, 0.0125007 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf415{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf510{--opacity:1;}#comp-m8omdbf61{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf68{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf68 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf711{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(12px, min(18px, max(0.5px, 0.0186418 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf711 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.018641 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbf82{--shc-mutated-brightness:77,77,77;}#comp-m8omdbf813{--fill:#000000;--opacity:1;}#comp-m8omdbf97{--shc-mutated-brightness:125,125,125;}#comp-m8omdbf916{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbf916 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfa13{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfa13 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfb14{--shc-mutated-brightness:77,77,77;}#comp-m8omdbfc3{--shc-mutated-brightness:125,125,125;}#comp-m8omdbfc10{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfc10 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfd11{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfd11 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-weight:normal !important;font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfe{--shc-mutated-brightness:123,123,123;}#comp-m8omdbfe11{--shc-mutated-brightness:125,125,125;}#comp-m8omdbff{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbff :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8ooawu0{--text-direction:var(--wix-opt-in-direction);}#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8ooawu0 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8omdbfg7{--text-direction:var(--wix-opt-in-direction);}#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omdbfg7 :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oobbzb{--text-direction:var(--wix-opt-in-direction);}#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:madefor-text-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;font-size:max(12px, min(18px, max(0.5px, 0.01125 * (var(--scaling-factor) - var(--scrollbar-width)))));text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8oobbzb :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(14px, min(18px, max(0.5px, 0.0112503 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;}}#comp-m8oqa661{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-kbgakgyt{--bg-overlay-color:rgb(var(--color_11));--bg-gradient:none;}#comp-m8omcigd2_r_comp-m2y11976{--shc-mutated-brightness:77,77,77;}#comp-m8omcigd2_r_comp-m2y12dql{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y12dql :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}#comp-m8omcigd2_r_comp-m2y1gxle{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m2y1gkmp{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-m2y1gkmp :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}.comp-m8omcigd2_r_comp-m2y1awex { | |
| 597 | + --wix-direction: ltr; | |
| 598 | +--inputBorderRadius: 10; | |
| 599 | +--columnSpacing: 10; | |
| 600 | +--horizontalPadding: 0; | |
| 601 | +--verticalPadding: 0; | |
| 602 | +--submitButtonBorderRadius: 10; | |
| 603 | +--rowSpacing: 5; | |
| 604 | +--borderWidth: 0; | |
| 605 | +--borderRadius: 0; | |
| 606 | +--shadowAngle: 135; | |
| 607 | +--shadowDistance: 0; | |
| 608 | +--shadowSize: 0; | |
| 609 | +--shadowBlur: 25; | |
| 610 | +--buttonsStyle: 2; | |
| 611 | +--buttonsBorderWidth: 0; | |
| 612 | +--buttonsBorderRadius: 0; | |
| 613 | +--submitButtonStyle: 2; | |
| 614 | +--submitButtonBorderWidth: 0; | |
| 615 | +--nextButtonStyle: 2; | |
| 616 | +--nextButtonBorderWidth: 0; | |
| 617 | +--nextButtonBorderRadius: 0; | |
| 618 | +--previousButtonStyle: 2; | |
| 619 | +--previousButtonBorderWidth: 1; | |
| 620 | +--previousButtonBorderRadius: 0; | |
| 621 | +--inputBorderStyle: 1; | |
| 622 | +--inputBorderWidth: 1; | |
| 623 | +--buttonsFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 624 | +--buttonsFontHover: normal normal normal 16px/16px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 625 | +--submitButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 626 | +--submitButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 627 | +--nextButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 628 | +--nextButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 629 | +--previousButtonFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 630 | +--previousButtonFontHover: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 631 | +--headerThreeFont: normal normal normal 34px/1.4em montserrat-black,sans-serif; | |
| 632 | +--headerFourFont: normal normal normal 30px/1.4em montserrat-black,sans-serif; | |
| 633 | +--headerFiveFont: normal normal normal 25px/1.4em montserrat-black,sans-serif; | |
| 634 | +--headerSixFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 635 | +--headerOneFontH1: normal normal bold 65px/1.4em montserrat,sans-serif; | |
| 636 | +--headerTwoFontH2: normal normal bold 38px/1.4em montserrat,sans-serif; | |
| 637 | +--paragraphFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 638 | +--thankYouMessageFont: normal normal normal 16px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 639 | +--headerTwoColor: 0,0,0; | |
| 640 | +--headerTwoColor-rgb: 0,0,0; | |
| 641 | +--headerTwoColor-opacity: 1; | |
| 642 | +--headerOneColor: 0,0,0; | |
| 643 | +--headerOneColor-rgb: 0,0,0; | |
| 644 | +--headerOneColor-opacity: 1; | |
| 645 | +--submitButtonBackgroundColor: 0,36,116; | |
| 646 | +--submitButtonBackgroundColor-rgb: 0,36,116; | |
| 647 | +--submitButtonBackgroundColor-opacity: 1; | |
| 648 | +--submitButtonBackgroundColorHover: 0,0,0,0.7; | |
| 649 | +--submitButtonBackgroundColorHover-rgb: 0,0,0; | |
| 650 | +--submitButtonBackgroundColorHover-opacity: 0.7; | |
| 651 | +--formBackground: 250,250,250; | |
| 652 | +--formBackground-rgb: 250,250,250; | |
| 653 | +--formBackground-opacity: 1; | |
| 654 | +--borderColor: 0,0,0,0; | |
| 655 | +--borderColor-rgb: 0,0,0; | |
| 656 | +--borderColor-opacity: 0; | |
| 657 | +--shadowColor: 0,0,0,0.15; | |
| 658 | +--shadowColor-rgb: 0,0,0; | |
| 659 | +--shadowColor-opacity: 0.15; | |
| 660 | +--buttonsColor: 250,250,250; | |
| 661 | +--buttonsColor-rgb: 250,250,250; | |
| 662 | +--buttonsColor-opacity: 1; | |
| 663 | +--buttonsBackgroundColor: 75,99,151; | |
| 664 | +--buttonsBackgroundColor-rgb: 75,99,151; | |
| 665 | +--buttonsBackgroundColor-opacity: 1; | |
| 666 | +--buttonsBorderColor: 250,250,250,0; | |
| 667 | +--buttonsBorderColor-rgb: 250,250,250; | |
| 668 | +--buttonsBorderColor-opacity: 0; | |
| 669 | +--buttonsColorHover: 250,250,250; | |
| 670 | +--buttonsColorHover-rgb: 250,250,250; | |
| 671 | +--buttonsColorHover-opacity: 1; | |
| 672 | +--buttonsBackgroundColorHover: 75,99,151,0.7; | |
| 673 | +--buttonsBackgroundColorHover-rgb: 75,99,151; | |
| 674 | +--buttonsBackgroundColorHover-opacity: 0.7; | |
| 675 | +--submitButtonColor: 250,250,250; | |
| 676 | +--submitButtonColor-rgb: 250,250,250; | |
| 677 | +--submitButtonColor-opacity: 1; | |
| 678 | +--submitButtonBorderColor: 250,250,250,0; | |
| 679 | +--submitButtonBorderColor-rgb: 250,250,250; | |
| 680 | +--submitButtonBorderColor-opacity: 0; | |
| 681 | +--submitButtonColorHover: 250,250,250; | |
| 682 | +--submitButtonColorHover-rgb: 250,250,250; | |
| 683 | +--submitButtonColorHover-opacity: 1; | |
| 684 | +--submitButtonBorderColorHover: 250,250,250,0; | |
| 685 | +--submitButtonBorderColorHover-rgb: 250,250,250; | |
| 686 | +--submitButtonBorderColorHover-opacity: 0; | |
| 687 | +--nextButtonColor: 250,250,250; | |
| 688 | +--nextButtonColor-rgb: 250,250,250; | |
| 689 | +--nextButtonColor-opacity: 1; | |
| 690 | +--nextButtonBackgroundColor: 75,99,151; | |
| 691 | +--nextButtonBackgroundColor-rgb: 75,99,151; | |
| 692 | +--nextButtonBackgroundColor-opacity: 1; | |
| 693 | +--nextButtonBorderColor: 250,250,250,0; | |
| 694 | +--nextButtonBorderColor-rgb: 250,250,250; | |
| 695 | +--nextButtonBorderColor-opacity: 0; | |
| 696 | +--nextButtonColorHover: 250,250,250; | |
| 697 | +--nextButtonColorHover-rgb: 250,250,250; | |
| 698 | +--nextButtonColorHover-opacity: 1; | |
| 699 | +--nextButtonBackgroundColorHover: 75,99,151,0.7; | |
| 700 | +--nextButtonBackgroundColorHover-rgb: 75,99,151; | |
| 701 | +--nextButtonBackgroundColorHover-opacity: 0.7; | |
| 702 | +--nextButtonBorderColorHover: 250,250,250,0; | |
| 703 | +--nextButtonBorderColorHover-rgb: 250,250,250; | |
| 704 | +--nextButtonBorderColorHover-opacity: 0; | |
| 705 | +--previousButtonColor: 0,0,0; | |
| 706 | +--previousButtonColor-rgb: 0,0,0; | |
| 707 | +--previousButtonColor-opacity: 1; | |
| 708 | +--previousButtonBackgroundColor: 75,99,151,0; | |
| 709 | +--previousButtonBackgroundColor-rgb: 75,99,151; | |
| 710 | +--previousButtonBackgroundColor-opacity: 0; | |
| 711 | +--previousButtonBorderColor: 0,0,0; | |
| 712 | +--previousButtonBorderColor-rgb: 0,0,0; | |
| 713 | +--previousButtonBorderColor-opacity: 1; | |
| 714 | +--previousButtonColorHover: 250,250,250; | |
| 715 | +--previousButtonColorHover-rgb: 250,250,250; | |
| 716 | +--previousButtonColorHover-opacity: 1; | |
| 717 | +--previousButtonBackgroundColorHover: 75,99,151,0.7; | |
| 718 | +--previousButtonBackgroundColorHover-rgb: 75,99,151; | |
| 719 | +--previousButtonBackgroundColorHover-opacity: 0.7; | |
| 720 | +--previousButtonBorderColorHover: 250,250,250,0; | |
| 721 | +--previousButtonBorderColorHover-rgb: 250,250,250; | |
| 722 | +--previousButtonBorderColorHover-opacity: 0; | |
| 723 | +--headerThreeColor: 0,0,0; | |
| 724 | +--headerThreeColor-rgb: 0,0,0; | |
| 725 | +--headerThreeColor-opacity: 1; | |
| 726 | +--headerFourColor: 0,0,0; | |
| 727 | +--headerFourColor-rgb: 0,0,0; | |
| 728 | +--headerFourColor-opacity: 1; | |
| 729 | +--headerFiveColor: 0,0,0; | |
| 730 | +--headerFiveColor-rgb: 0,0,0; | |
| 731 | +--headerFiveColor-opacity: 1; | |
| 732 | +--headerSixColor: 0,0,0; | |
| 733 | +--headerSixColor-rgb: 0,0,0; | |
| 734 | +--headerSixColor-opacity: 1; | |
| 735 | +--paragraphColor: 0,0,0; | |
| 736 | +--paragraphColor-rgb: 0,0,0; | |
| 737 | +--paragraphColor-opacity: 1; | |
| 738 | +--inputBackgroundColor: 250,250,250; | |
| 739 | +--inputBackgroundColor-rgb: 250,250,250; | |
| 740 | +--inputBackgroundColor-opacity: 1; | |
| 741 | +--inputBackgroundColorHover: 250,250,250; | |
| 742 | +--inputBackgroundColorHover-rgb: 250,250,250; | |
| 743 | +--inputBackgroundColorHover-opacity: 1; | |
| 744 | +--inputBorderColor: 0,0,0,0.6; | |
| 745 | +--inputBorderColor-rgb: 0,0,0; | |
| 746 | +--inputBorderColor-opacity: 0.6; | |
| 747 | +--inputBorderColorHover: 0,0,0; | |
| 748 | +--inputBorderColorHover-rgb: 0,0,0; | |
| 749 | +--inputBorderColorHover-opacity: 1; | |
| 750 | +--inputLabelColor: 0,0,0; | |
| 751 | +--inputLabelColor-rgb: 0,0,0; | |
| 752 | +--inputLabelColor-opacity: 1; | |
| 753 | +--inputValueColor: 0,0,0; | |
| 754 | +--inputValueColor-rgb: 0,0,0; | |
| 755 | +--inputValueColor-opacity: 1; | |
| 756 | +--inputOptionColor: 0,0,0; | |
| 757 | +--inputOptionColor-rgb: 0,0,0; | |
| 758 | +--inputOptionColor-opacity: 1; | |
| 759 | +--inputNoteColor: 51,51,51; | |
| 760 | +--inputNoteColor-rgb: 51,51,51; | |
| 761 | +--inputNoteColor-opacity: 1; | |
| 762 | +--inputPlaceholderColor: 51,51,51; | |
| 763 | +--inputPlaceholderColor-rgb: 51,51,51; | |
| 764 | +--inputPlaceholderColor-opacity: 1; | |
| 765 | +--inputSelectionColor: 75,99,151; | |
| 766 | +--inputSelectionColor-rgb: 75,99,151; | |
| 767 | +--inputSelectionColor-opacity: 1; | |
| 768 | +--dropdownBackgroundColor: 250,250,250; | |
| 769 | +--dropdownBackgroundColor-rgb: 250,250,250; | |
| 770 | +--dropdownBackgroundColor-opacity: 1; | |
| 771 | +--dropdownOptionTextColor: 0,0,0; | |
| 772 | +--dropdownOptionTextColor-rgb: 0,0,0; | |
| 773 | +--dropdownOptionTextColor-opacity: 1; | |
| 774 | +--linkColor: 75,99,151; | |
| 775 | +--linkColor-rgb: 75,99,151; | |
| 776 | +--linkColor-opacity: 1; | |
| 777 | +--thankYouMessageColor: 0,0,0; | |
| 778 | +--thankYouMessageColor-rgb: 0,0,0; | |
| 779 | +--thankYouMessageColor-opacity: 1; | |
| 780 | +--inputErrorColor: 223,49,49; | |
| 781 | +--inputErrorColor-rgb: 223,49,49; | |
| 782 | +--inputErrorColor-opacity: 1; | |
| 783 | +--inputValueFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 784 | +--inputValueFont-style: normal; | |
| 785 | +--inputValueFont-variant: normal; | |
| 786 | +--inputValueFont-weight: normal; | |
| 787 | +--inputValueFont-size: 14px; | |
| 788 | +--inputValueFont-line-height: 17px; | |
| 789 | +--inputValueFont-family: montserrat,sans-serif; | |
| 790 | +--inputValueFont-text-decoration: none; | |
| 791 | +--inputNoteFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 792 | +--inputNoteFont-style: normal; | |
| 793 | +--inputNoteFont-variant: normal; | |
| 794 | +--inputNoteFont-weight: normal; | |
| 795 | +--inputNoteFont-size: 14px; | |
| 796 | +--inputNoteFont-line-height: 17px; | |
| 797 | +--inputNoteFont-family: montserrat,sans-serif; | |
| 798 | +--inputNoteFont-text-decoration: none; | |
| 799 | +--headerTwoFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 800 | +--headerTwoFont-style: normal; | |
| 801 | +--headerTwoFont-variant: normal; | |
| 802 | +--headerTwoFont-weight: normal; | |
| 803 | +--headerTwoFont-size: 19px; | |
| 804 | +--headerTwoFont-line-height: 1.4em; | |
| 805 | +--headerTwoFont-family: montserrat,sans-serif; | |
| 806 | +--headerTwoFont-text-decoration: none; | |
| 807 | +--headerOneFont: normal normal normal 16px/20px montserrat,sans-serif; | |
| 808 | +--headerOneFont-style: normal; | |
| 809 | +--headerOneFont-variant: normal; | |
| 810 | +--headerOneFont-weight: normal; | |
| 811 | +--headerOneFont-size: 16px; | |
| 812 | +--headerOneFont-line-height: 20px; | |
| 813 | +--headerOneFont-family: montserrat,sans-serif; | |
| 814 | +--headerOneFont-text-decoration: none; | |
| 815 | +--inputLabelFont: normal normal normal 14px/17px montserrat,sans-serif; | |
| 816 | +--inputLabelFont-style: normal; | |
| 817 | +--inputLabelFont-variant: normal; | |
| 818 | +--inputLabelFont-weight: normal; | |
| 819 | +--inputLabelFont-size: 14px; | |
| 820 | +--inputLabelFont-line-height: 17px; | |
| 821 | +--inputLabelFont-family: montserrat,sans-serif; | |
| 822 | +--inputLabelFont-text-decoration: none; | |
| 823 | +--buttonsFont-style: normal; | |
| 824 | +--buttonsFont-variant: normal; | |
| 825 | +--buttonsFont-weight: normal; | |
| 826 | +--buttonsFont-size: 16px; | |
| 827 | +--buttonsFont-line-height: 1.4em; | |
| 828 | +--buttonsFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 829 | +--buttonsFont-text-decoration: none; | |
| 830 | +--buttonsFontHover-style: normal; | |
| 831 | +--buttonsFontHover-variant: normal; | |
| 832 | +--buttonsFontHover-weight: normal; | |
| 833 | +--buttonsFontHover-size: 16px; | |
| 834 | +--buttonsFontHover-line-height: 16px; | |
| 835 | +--buttonsFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 836 | +--buttonsFontHover-text-decoration: none; | |
| 837 | +--submitButtonFont-style: normal; | |
| 838 | +--submitButtonFont-variant: normal; | |
| 839 | +--submitButtonFont-weight: normal; | |
| 840 | +--submitButtonFont-size: 16px; | |
| 841 | +--submitButtonFont-line-height: 1.4em; | |
| 842 | +--submitButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 843 | +--submitButtonFont-text-decoration: none; | |
| 844 | +--submitButtonFontHover-style: normal; | |
| 845 | +--submitButtonFontHover-variant: normal; | |
| 846 | +--submitButtonFontHover-weight: normal; | |
| 847 | +--submitButtonFontHover-size: 16px; | |
| 848 | +--submitButtonFontHover-line-height: 1.4em; | |
| 849 | +--submitButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 850 | +--submitButtonFontHover-text-decoration: none; | |
| 851 | +--nextButtonFont-style: normal; | |
| 852 | +--nextButtonFont-variant: normal; | |
| 853 | +--nextButtonFont-weight: normal; | |
| 854 | +--nextButtonFont-size: 16px; | |
| 855 | +--nextButtonFont-line-height: 1.4em; | |
| 856 | +--nextButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 857 | +--nextButtonFont-text-decoration: none; | |
| 858 | +--nextButtonFontHover-style: normal; | |
| 859 | +--nextButtonFontHover-variant: normal; | |
| 860 | +--nextButtonFontHover-weight: normal; | |
| 861 | +--nextButtonFontHover-size: 16px; | |
| 862 | +--nextButtonFontHover-line-height: 1.4em; | |
| 863 | +--nextButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 864 | +--nextButtonFontHover-text-decoration: none; | |
| 865 | +--previousButtonFont-style: normal; | |
| 866 | +--previousButtonFont-variant: normal; | |
| 867 | +--previousButtonFont-weight: normal; | |
| 868 | +--previousButtonFont-size: 16px; | |
| 869 | +--previousButtonFont-line-height: 1.4em; | |
| 870 | +--previousButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 871 | +--previousButtonFont-text-decoration: none; | |
| 872 | +--previousButtonFontHover-style: normal; | |
| 873 | +--previousButtonFontHover-variant: normal; | |
| 874 | +--previousButtonFontHover-weight: normal; | |
| 875 | +--previousButtonFontHover-size: 16px; | |
| 876 | +--previousButtonFontHover-line-height: 1.4em; | |
| 877 | +--previousButtonFontHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 878 | +--previousButtonFontHover-text-decoration: none; | |
| 879 | +--headerThreeFont-style: normal; | |
| 880 | +--headerThreeFont-variant: normal; | |
| 881 | +--headerThreeFont-weight: normal; | |
| 882 | +--headerThreeFont-size: 34px; | |
| 883 | +--headerThreeFont-line-height: 1.4em; | |
| 884 | +--headerThreeFont-family: montserrat-black,sans-serif; | |
| 885 | +--headerThreeFont-text-decoration: none; | |
| 886 | +--headerFourFont-style: normal; | |
| 887 | +--headerFourFont-variant: normal; | |
| 888 | +--headerFourFont-weight: normal; | |
| 889 | +--headerFourFont-size: 30px; | |
| 890 | +--headerFourFont-line-height: 1.4em; | |
| 891 | +--headerFourFont-family: montserrat-black,sans-serif; | |
| 892 | +--headerFourFont-text-decoration: none; | |
| 893 | +--headerFiveFont-style: normal; | |
| 894 | +--headerFiveFont-variant: normal; | |
| 895 | +--headerFiveFont-weight: normal; | |
| 896 | +--headerFiveFont-size: 25px; | |
| 897 | +--headerFiveFont-line-height: 1.4em; | |
| 898 | +--headerFiveFont-family: montserrat-black,sans-serif; | |
| 899 | +--headerFiveFont-text-decoration: none; | |
| 900 | +--headerSixFont-style: normal; | |
| 901 | +--headerSixFont-variant: normal; | |
| 902 | +--headerSixFont-weight: normal; | |
| 903 | +--headerSixFont-size: 19px; | |
| 904 | +--headerSixFont-line-height: 1.4em; | |
| 905 | +--headerSixFont-family: montserrat,sans-serif; | |
| 906 | +--headerSixFont-text-decoration: none; | |
| 907 | +--headerOneFontH1-style: normal; | |
| 908 | +--headerOneFontH1-variant: normal; | |
| 909 | +--headerOneFontH1-weight: bold; | |
| 910 | +--headerOneFontH1-size: 65px; | |
| 911 | +--headerOneFontH1-line-height: 1.4em; | |
| 912 | +--headerOneFontH1-family: montserrat,sans-serif; | |
| 913 | +--headerOneFontH1-text-decoration: none; | |
| 914 | +--headerTwoFontH2-style: normal; | |
| 915 | +--headerTwoFontH2-variant: normal; | |
| 916 | +--headerTwoFontH2-weight: bold; | |
| 917 | +--headerTwoFontH2-size: 38px; | |
| 918 | +--headerTwoFontH2-line-height: 1.4em; | |
| 919 | +--headerTwoFontH2-family: montserrat,sans-serif; | |
| 920 | +--headerTwoFontH2-text-decoration: none; | |
| 921 | +--paragraphFont-style: normal; | |
| 922 | +--paragraphFont-variant: normal; | |
| 923 | +--paragraphFont-weight: normal; | |
| 924 | +--paragraphFont-size: 16px; | |
| 925 | +--paragraphFont-line-height: 1.4em; | |
| 926 | +--paragraphFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 927 | +--paragraphFont-text-decoration: none; | |
| 928 | +--thankYouMessageFont-style: normal; | |
| 929 | +--thankYouMessageFont-variant: normal; | |
| 930 | +--thankYouMessageFont-weight: normal; | |
| 931 | +--thankYouMessageFont-size: 16px; | |
| 932 | +--thankYouMessageFont-line-height: 1.4em; | |
| 933 | +--thankYouMessageFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 934 | +--thankYouMessageFont-text-decoration: none; | |
| 935 | +--inputBorderLeftWidth: 1; | |
| 936 | +--inputBorderRightWidth: 1; | |
| 937 | +--inputBorderTopWidth: 1; | |
| 938 | +--inputBorderBottomWidth: 1; | |
| 939 | + --wix-color-1: 250,250,250; | |
| 940 | +--wix-color-2: 153,153,153; | |
| 941 | +--wix-color-3: 102,102,102; | |
| 942 | +--wix-color-4: 51,51,51; | |
| 943 | +--wix-color-5: 0,0,0; | |
| 944 | +--wix-color-6: 183,195,220; | |
| 945 | +--wix-color-7: 139,154,186; | |
| 946 | +--wix-color-8: 75,99,151; | |
| 947 | +--wix-color-9: 50,66,101; | |
| 948 | +--wix-color-10: 25,33,50; | |
| 949 | +--wix-color-11: 165,182,220; | |
| 950 | +--wix-color-12: 124,143,186; | |
| 951 | +--wix-color-13: 75,99,151; | |
| 952 | +--wix-color-14: 0,36,116; | |
| 953 | +--wix-color-15: 0,18,58; | |
| 954 | +--wix-color-16: 186,204,218; | |
| 955 | +--wix-color-17: 141,164,180; | |
| 956 | +--wix-color-18: 80,117,143; | |
| 957 | +--wix-color-19: 53,78,95; | |
| 958 | +--wix-color-20: 27,39,48; | |
| 959 | +--wix-color-21: 255,233,223; | |
| 960 | +--wix-color-22: 255,191,161; | |
| 961 | +--wix-color-23: 250,133,79; | |
| 962 | +--wix-color-24: 234,96,32; | |
| 963 | +--wix-color-25: 201,64,1; | |
| 964 | +--wix-color-26: 250,250,250; | |
| 965 | +--wix-color-27: 0,0,0; | |
| 966 | +--wix-color-28: 153,153,153; | |
| 967 | +--wix-color-29: 102,102,102; | |
| 968 | +--wix-color-30: 51,51,51; | |
| 969 | +--wix-color-31: 75,99,151; | |
| 970 | +--wix-color-32: 75,99,151; | |
| 971 | +--wix-color-33: 75,99,151; | |
| 972 | +--wix-color-34: 75,99,151; | |
| 973 | +--wix-color-35: 0,0,0; | |
| 974 | +--wix-color-36: 51,51,51; | |
| 975 | +--wix-color-37: 0,0,0; | |
| 976 | +--wix-color-38: 75,99,151; | |
| 977 | +--wix-color-39: 75,99,151; | |
| 978 | +--wix-color-40: 250,250,250; | |
| 979 | +--wix-color-41: 75,99,151; | |
| 980 | +--wix-color-42: 75,99,151; | |
| 981 | +--wix-color-43: 250,250,250; | |
| 982 | +--wix-color-44: 102,102,102; | |
| 983 | +--wix-color-45: 102,102,102; | |
| 984 | +--wix-color-46: 250,250,250; | |
| 985 | +--wix-color-47: 250,250,250; | |
| 986 | +--wix-color-48: 75,99,151; | |
| 987 | +--wix-color-49: 75,99,151; | |
| 988 | +--wix-color-50: 250,250,250; | |
| 989 | +--wix-color-51: 75,99,151; | |
| 990 | +--wix-color-52: 75,99,151; | |
| 991 | +--wix-color-53: 250,250,250; | |
| 992 | +--wix-color-54: 102,102,102; | |
| 993 | +--wix-color-55: 102,102,102; | |
| 994 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 995 | +--wix-font-Title-style: normal; | |
| 996 | +--wix-font-Title-variant: normal; | |
| 997 | +--wix-font-Title-weight: bold; | |
| 998 | +--wix-font-Title-size: 65px; | |
| 999 | +--wix-font-Title-line-height: 1.2em; | |
| 1000 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1001 | +--wix-font-Title-text-decoration: none; | |
| 1002 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1003 | +--wix-font-Menu-style: normal; | |
| 1004 | +--wix-font-Menu-variant: normal; | |
| 1005 | +--wix-font-Menu-weight: normal; | |
| 1006 | +--wix-font-Menu-size: 16px; | |
| 1007 | +--wix-font-Menu-line-height: 1.4em; | |
| 1008 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1009 | +--wix-font-Menu-text-decoration: none; | |
| 1010 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1011 | +--wix-font-Page-title-style: normal; | |
| 1012 | +--wix-font-Page-title-variant: normal; | |
| 1013 | +--wix-font-Page-title-weight: bold; | |
| 1014 | +--wix-font-Page-title-size: 38px; | |
| 1015 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1016 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1017 | +--wix-font-Page-title-text-decoration: none; | |
| 1018 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1019 | +--wix-font-Heading-XL-style: normal; | |
| 1020 | +--wix-font-Heading-XL-variant: normal; | |
| 1021 | +--wix-font-Heading-XL-weight: normal; | |
| 1022 | +--wix-font-Heading-XL-size: 34px; | |
| 1023 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1024 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1025 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1026 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1027 | +--wix-font-Heading-L-style: normal; | |
| 1028 | +--wix-font-Heading-L-variant: normal; | |
| 1029 | +--wix-font-Heading-L-weight: normal; | |
| 1030 | +--wix-font-Heading-L-size: 30px; | |
| 1031 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1032 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1033 | +--wix-font-Heading-L-text-decoration: none; | |
| 1034 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1035 | +--wix-font-Heading-M-style: normal; | |
| 1036 | +--wix-font-Heading-M-variant: normal; | |
| 1037 | +--wix-font-Heading-M-weight: normal; | |
| 1038 | +--wix-font-Heading-M-size: 25px; | |
| 1039 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1040 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1041 | +--wix-font-Heading-M-text-decoration: none; | |
| 1042 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1043 | +--wix-font-Heading-S-style: normal; | |
| 1044 | +--wix-font-Heading-S-variant: normal; | |
| 1045 | +--wix-font-Heading-S-weight: normal; | |
| 1046 | +--wix-font-Heading-S-size: 19px; | |
| 1047 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1048 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1049 | +--wix-font-Heading-S-text-decoration: none; | |
| 1050 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1051 | +--wix-font-Body-L-style: normal; | |
| 1052 | +--wix-font-Body-L-variant: normal; | |
| 1053 | +--wix-font-Body-L-weight: normal; | |
| 1054 | +--wix-font-Body-L-size: 16px; | |
| 1055 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1056 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1057 | +--wix-font-Body-L-text-decoration: none; | |
| 1058 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1059 | +--wix-font-Body-M-style: normal; | |
| 1060 | +--wix-font-Body-M-variant: normal; | |
| 1061 | +--wix-font-Body-M-weight: normal; | |
| 1062 | +--wix-font-Body-M-size: 16px; | |
| 1063 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1064 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1065 | +--wix-font-Body-M-text-decoration: none; | |
| 1066 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1067 | +--wix-font-Body-S-style: normal; | |
| 1068 | +--wix-font-Body-S-variant: normal; | |
| 1069 | +--wix-font-Body-S-weight: normal; | |
| 1070 | +--wix-font-Body-S-size: 12px; | |
| 1071 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1072 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1073 | +--wix-font-Body-S-text-decoration: none; | |
| 1074 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1075 | +--wix-font-Body-XS-style: normal; | |
| 1076 | +--wix-font-Body-XS-variant: normal; | |
| 1077 | +--wix-font-Body-XS-weight: normal; | |
| 1078 | +--wix-font-Body-XS-size: 12px; | |
| 1079 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1080 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1081 | +--wix-font-Body-XS-text-decoration: none; | |
| 1082 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1083 | +--wix-font-LIGHT-style: normal; | |
| 1084 | +--wix-font-LIGHT-variant: normal; | |
| 1085 | +--wix-font-LIGHT-weight: normal; | |
| 1086 | +--wix-font-LIGHT-size: 12px; | |
| 1087 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1088 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1089 | +--wix-font-LIGHT-text-decoration: none; | |
| 1090 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1091 | +--wix-font-MEDIUM-style: normal; | |
| 1092 | +--wix-font-MEDIUM-variant: normal; | |
| 1093 | +--wix-font-MEDIUM-weight: normal; | |
| 1094 | +--wix-font-MEDIUM-size: 12px; | |
| 1095 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1096 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1097 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1098 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1099 | +--wix-font-STRONG-style: normal; | |
| 1100 | +--wix-font-STRONG-variant: normal; | |
| 1101 | +--wix-font-STRONG-weight: normal; | |
| 1102 | +--wix-font-STRONG-size: 12px; | |
| 1103 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1104 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1105 | +--wix-font-STRONG-text-decoration: none; | |
| 1106 | + } | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | +#comp-m8omcigd2_r_comp-m8j7owsd{--shc-mutated-brightness:125,125,125;}#comp-m8omcigd2_r_comp-m8j7o6oq{--opacity:1;}#comp-m8omcigd2_r_comp-m2y10ib8{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:0px;--sub-padding-start:10px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcigd2_r_comp-mbweuill{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}#comp-m8omcigd2_r_comp-kd5pdf7t{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcigd2_r_comp-kd5pdf7t :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-size:12px;text-align:center;letter-spacing:0em;line-height:normal;}#comp-m8omcih716_r_comp-kd5px9hr{--screen-width:100vw;}#comp-m8omcih716_r_comp-kd5px9kk{height:auto;--direction:rtl;--item-height:56px;--text-align:center;--template-columns:calc(40px + 1em) 1fr calc(40px + 1em);--template-areas:". label arrow";--padding-start:0px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}#comp-m8omcih716_r_comp-kkmqi5tc{--undefined:[object Object];--fill-opacity:1;--stroke-width:0;--stroke:#ED1566;--stroke-opacity:1;--fill:#000000;}#comp-m8omcihb_r_comp-kbgajy18{--bg-overlay-color:transparent;--bg-gradient:none;--transition-delay:0s,0s;--transition-duration:0.3s,0.3s;--transition-timing-function:ease,linear;--scrolled-transform:translateY(-38px);--transition-property:background-color,transform;--inherit-transition:var(--transition, none);}.comp-m8omcihb_r_comp-m6saac0q { | |
| 1147 | + --wix-direction: ltr; | |
| 1148 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1149 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1150 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1151 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1152 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1153 | +--cartWidget_cartIcon: 75,99,151; | |
| 1154 | +--cartWidget_cartIcon-rgb: 75,99,151; | |
| 1155 | +--cartWidget_cartIcon-opacity: 1; | |
| 1156 | +--cartWidget_cartIconText: 75,99,151; | |
| 1157 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1158 | +--cartWidget_cartIconText-opacity: 1; | |
| 1159 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1160 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1161 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1162 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1163 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1164 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1165 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1166 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1167 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1168 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1169 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1170 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1171 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1172 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1173 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1174 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1175 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1176 | + --wix-color-1: 250,250,250; | |
| 1177 | +--wix-color-2: 153,153,153; | |
| 1178 | +--wix-color-3: 102,102,102; | |
| 1179 | +--wix-color-4: 51,51,51; | |
| 1180 | +--wix-color-5: 0,0,0; | |
| 1181 | +--wix-color-6: 183,195,220; | |
| 1182 | +--wix-color-7: 139,154,186; | |
| 1183 | +--wix-color-8: 75,99,151; | |
| 1184 | +--wix-color-9: 50,66,101; | |
| 1185 | +--wix-color-10: 25,33,50; | |
| 1186 | +--wix-color-11: 165,182,220; | |
| 1187 | +--wix-color-12: 124,143,186; | |
| 1188 | +--wix-color-13: 75,99,151; | |
| 1189 | +--wix-color-14: 0,36,116; | |
| 1190 | +--wix-color-15: 0,18,58; | |
| 1191 | +--wix-color-16: 186,204,218; | |
| 1192 | +--wix-color-17: 141,164,180; | |
| 1193 | +--wix-color-18: 80,117,143; | |
| 1194 | +--wix-color-19: 53,78,95; | |
| 1195 | +--wix-color-20: 27,39,48; | |
| 1196 | +--wix-color-21: 255,233,223; | |
| 1197 | +--wix-color-22: 255,191,161; | |
| 1198 | +--wix-color-23: 250,133,79; | |
| 1199 | +--wix-color-24: 234,96,32; | |
| 1200 | +--wix-color-25: 201,64,1; | |
| 1201 | +--wix-color-26: 250,250,250; | |
| 1202 | +--wix-color-27: 0,0,0; | |
| 1203 | +--wix-color-28: 153,153,153; | |
| 1204 | +--wix-color-29: 102,102,102; | |
| 1205 | +--wix-color-30: 51,51,51; | |
| 1206 | +--wix-color-31: 75,99,151; | |
| 1207 | +--wix-color-32: 75,99,151; | |
| 1208 | +--wix-color-33: 75,99,151; | |
| 1209 | +--wix-color-34: 75,99,151; | |
| 1210 | +--wix-color-35: 0,0,0; | |
| 1211 | +--wix-color-36: 51,51,51; | |
| 1212 | +--wix-color-37: 0,0,0; | |
| 1213 | +--wix-color-38: 75,99,151; | |
| 1214 | +--wix-color-39: 75,99,151; | |
| 1215 | +--wix-color-40: 250,250,250; | |
| 1216 | +--wix-color-41: 75,99,151; | |
| 1217 | +--wix-color-42: 75,99,151; | |
| 1218 | +--wix-color-43: 250,250,250; | |
| 1219 | +--wix-color-44: 102,102,102; | |
| 1220 | +--wix-color-45: 102,102,102; | |
| 1221 | +--wix-color-46: 250,250,250; | |
| 1222 | +--wix-color-47: 250,250,250; | |
| 1223 | +--wix-color-48: 75,99,151; | |
| 1224 | +--wix-color-49: 75,99,151; | |
| 1225 | +--wix-color-50: 250,250,250; | |
| 1226 | +--wix-color-51: 75,99,151; | |
| 1227 | +--wix-color-52: 75,99,151; | |
| 1228 | +--wix-color-53: 250,250,250; | |
| 1229 | +--wix-color-54: 102,102,102; | |
| 1230 | +--wix-color-55: 102,102,102; | |
| 1231 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1232 | +--wix-font-Title-style: normal; | |
| 1233 | +--wix-font-Title-variant: normal; | |
| 1234 | +--wix-font-Title-weight: bold; | |
| 1235 | +--wix-font-Title-size: 65px; | |
| 1236 | +--wix-font-Title-line-height: 1.2em; | |
| 1237 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1238 | +--wix-font-Title-text-decoration: none; | |
| 1239 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1240 | +--wix-font-Menu-style: normal; | |
| 1241 | +--wix-font-Menu-variant: normal; | |
| 1242 | +--wix-font-Menu-weight: normal; | |
| 1243 | +--wix-font-Menu-size: 16px; | |
| 1244 | +--wix-font-Menu-line-height: 1.4em; | |
| 1245 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1246 | +--wix-font-Menu-text-decoration: none; | |
| 1247 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1248 | +--wix-font-Page-title-style: normal; | |
| 1249 | +--wix-font-Page-title-variant: normal; | |
| 1250 | +--wix-font-Page-title-weight: bold; | |
| 1251 | +--wix-font-Page-title-size: 38px; | |
| 1252 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1253 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1254 | +--wix-font-Page-title-text-decoration: none; | |
| 1255 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1256 | +--wix-font-Heading-XL-style: normal; | |
| 1257 | +--wix-font-Heading-XL-variant: normal; | |
| 1258 | +--wix-font-Heading-XL-weight: normal; | |
| 1259 | +--wix-font-Heading-XL-size: 34px; | |
| 1260 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1261 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1262 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1263 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1264 | +--wix-font-Heading-L-style: normal; | |
| 1265 | +--wix-font-Heading-L-variant: normal; | |
| 1266 | +--wix-font-Heading-L-weight: normal; | |
| 1267 | +--wix-font-Heading-L-size: 30px; | |
| 1268 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1269 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1270 | +--wix-font-Heading-L-text-decoration: none; | |
| 1271 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1272 | +--wix-font-Heading-M-style: normal; | |
| 1273 | +--wix-font-Heading-M-variant: normal; | |
| 1274 | +--wix-font-Heading-M-weight: normal; | |
| 1275 | +--wix-font-Heading-M-size: 25px; | |
| 1276 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1277 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1278 | +--wix-font-Heading-M-text-decoration: none; | |
| 1279 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1280 | +--wix-font-Heading-S-style: normal; | |
| 1281 | +--wix-font-Heading-S-variant: normal; | |
| 1282 | +--wix-font-Heading-S-weight: normal; | |
| 1283 | +--wix-font-Heading-S-size: 19px; | |
| 1284 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1285 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1286 | +--wix-font-Heading-S-text-decoration: none; | |
| 1287 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1288 | +--wix-font-Body-L-style: normal; | |
| 1289 | +--wix-font-Body-L-variant: normal; | |
| 1290 | +--wix-font-Body-L-weight: normal; | |
| 1291 | +--wix-font-Body-L-size: 16px; | |
| 1292 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1293 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1294 | +--wix-font-Body-L-text-decoration: none; | |
| 1295 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1296 | +--wix-font-Body-M-style: normal; | |
| 1297 | +--wix-font-Body-M-variant: normal; | |
| 1298 | +--wix-font-Body-M-weight: normal; | |
| 1299 | +--wix-font-Body-M-size: 16px; | |
| 1300 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1301 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1302 | +--wix-font-Body-M-text-decoration: none; | |
| 1303 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1304 | +--wix-font-Body-S-style: normal; | |
| 1305 | +--wix-font-Body-S-variant: normal; | |
| 1306 | +--wix-font-Body-S-weight: normal; | |
| 1307 | +--wix-font-Body-S-size: 12px; | |
| 1308 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1309 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1310 | +--wix-font-Body-S-text-decoration: none; | |
| 1311 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1312 | +--wix-font-Body-XS-style: normal; | |
| 1313 | +--wix-font-Body-XS-variant: normal; | |
| 1314 | +--wix-font-Body-XS-weight: normal; | |
| 1315 | +--wix-font-Body-XS-size: 12px; | |
| 1316 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1317 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1318 | +--wix-font-Body-XS-text-decoration: none; | |
| 1319 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1320 | +--wix-font-LIGHT-style: normal; | |
| 1321 | +--wix-font-LIGHT-variant: normal; | |
| 1322 | +--wix-font-LIGHT-weight: normal; | |
| 1323 | +--wix-font-LIGHT-size: 12px; | |
| 1324 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1325 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1326 | +--wix-font-LIGHT-text-decoration: none; | |
| 1327 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1328 | +--wix-font-MEDIUM-style: normal; | |
| 1329 | +--wix-font-MEDIUM-variant: normal; | |
| 1330 | +--wix-font-MEDIUM-weight: normal; | |
| 1331 | +--wix-font-MEDIUM-size: 12px; | |
| 1332 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1333 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1334 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1335 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1336 | +--wix-font-STRONG-style: normal; | |
| 1337 | +--wix-font-STRONG-variant: normal; | |
| 1338 | +--wix-font-STRONG-weight: normal; | |
| 1339 | +--wix-font-STRONG-size: 12px; | |
| 1340 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1341 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1342 | +--wix-font-STRONG-text-decoration: none; | |
| 1343 | + }#comp-m8omcihb_r_comp-mdeyh2rw{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-m2xyvk9x{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-m2xz2cwh{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal 700 11px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxu2mi38{height:inherit;width:auto;}#comp-m8omcihb_r_comp-m5rceko6{--shc-mutated-brightness:125,125,125;}#comp-m8omcihb_r_comp-mdezy72f{--boxShadow:none;--backgroundColor:rgba(255,255,255,1);--borderColor:50,65,88;--borderWidth:0px;--borderRadius:0px;--alpha-borderColor:0;}.comp-m8omcihb_r_comp-mdezy72s{--shc-mutated-brightness:77,77,77;}.comp-m8omcihb_r_comp-mdf0r6km{--text-direction:var(--wix-opt-in-direction);}.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;text-decoration:none;}@media screen and (min-width: 320px) and (max-width: 750px){.comp-m8omcihb_r_comp-mdf0r6km :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){font-size:max(0.5px, 0.032 * (var(--scaling-factor) - var(--scrollbar-width))) !important;}}.comp-m8omcihb_r_comp-mdf0tx18{--btn-direction:var(--wix-opt-in-direction, ltr);--direction:inherit;--overflow:visible;--label-text-overflow:initial;--label-white-space:pre-line;--btn-min-width:min-content;--container-justify-content:center;--container-align-items:center;--icon-rotation:0deg;--disabled-icon-rotation:0deg;--hover-icon-rotation:0deg;}#comp-m8omcihb_r_comp-m5rceatr{--shc-mutated-brightness:0,18,58;--margin-start:0px;--margin-end:0px;--fnt:normal normal normal 13px/1.6em montserrat,sans-serif;direction:var(--wix-opt-in-direction, ltr);--label-align:center;--label-text-align:center;}#comp-m8omcihb_r_comp-lxubhuix{height:auto;--direction:var(--wix-opt-in-direction, ltr);--item-height:56px;--text-align:start;--template-columns:1fr calc(40px + 1em);--template-areas:"label arrow";--padding-start:10px;--sub-padding-start:0px;--padding-end:0px;--sub-padding-end:0px;--item-depth0-direction:inherit;--item-depth1-direction:inherit;--item-depth2-direction:inherit;--item-depth0-align:inherit;--item-depth1-align:inherit;--item-depth2-align:inherit;}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-lxubhuix{--padding-start:0px;}}#comp-m8omcihb_r_comp-mdezahz3{--itemFont:normal normal normal 14px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--height:90px;--iconSize:22px;}.comp-m8omcihb_r_comp-m73v5p0x { | |
| 1344 | + --wix-direction: ltr; | |
| 1345 | +--cartWidgetIcon: 1; | |
| 1346 | +--cartWidget_cartIconTextFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1347 | +--cartWidget_cartIconNumberFont: normal normal normal 90px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1348 | +--cartWidget_cartIcon: 183,195,220; | |
| 1349 | +--cartWidget_cartIcon-rgb: 183,195,220; | |
| 1350 | +--cartWidget_cartIcon-opacity: 1; | |
| 1351 | +--cartWidget_cartIconNumber: 250,250,250; | |
| 1352 | +--cartWidget_cartIconNumber-rgb: 250,250,250; | |
| 1353 | +--cartWidget_cartIconNumber-opacity: 1; | |
| 1354 | +--cartWidget_cartIconBubble: 75,99,151; | |
| 1355 | +--cartWidget_cartIconBubble-rgb: 75,99,151; | |
| 1356 | +--cartWidget_cartIconBubble-opacity: 1; | |
| 1357 | +--cartWidget_cartIconText: 75,99,151; | |
| 1358 | +--cartWidget_cartIconText-rgb: 75,99,151; | |
| 1359 | +--cartWidget_cartIconText-opacity: 1; | |
| 1360 | +--cartWidget_cartIconTextFont-style: normal; | |
| 1361 | +--cartWidget_cartIconTextFont-variant: normal; | |
| 1362 | +--cartWidget_cartIconTextFont-weight: normal; | |
| 1363 | +--cartWidget_cartIconTextFont-size: 90px; | |
| 1364 | +--cartWidget_cartIconTextFont-line-height: 1.4em; | |
| 1365 | +--cartWidget_cartIconTextFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1366 | +--cartWidget_cartIconTextFont-text-decoration: none; | |
| 1367 | +--cartWidget_cartIconNumberFont-style: normal; | |
| 1368 | +--cartWidget_cartIconNumberFont-variant: normal; | |
| 1369 | +--cartWidget_cartIconNumberFont-weight: normal; | |
| 1370 | +--cartWidget_cartIconNumberFont-size: 90px; | |
| 1371 | +--cartWidget_cartIconNumberFont-line-height: 1.4em; | |
| 1372 | +--cartWidget_cartIconNumberFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1373 | +--cartWidget_cartIconNumberFont-text-decoration: none; | |
| 1374 | + --wix-color-1: 250,250,250; | |
| 1375 | +--wix-color-2: 153,153,153; | |
| 1376 | +--wix-color-3: 102,102,102; | |
| 1377 | +--wix-color-4: 51,51,51; | |
| 1378 | +--wix-color-5: 0,0,0; | |
| 1379 | +--wix-color-6: 183,195,220; | |
| 1380 | +--wix-color-7: 139,154,186; | |
| 1381 | +--wix-color-8: 75,99,151; | |
| 1382 | +--wix-color-9: 50,66,101; | |
| 1383 | +--wix-color-10: 25,33,50; | |
| 1384 | +--wix-color-11: 165,182,220; | |
| 1385 | +--wix-color-12: 124,143,186; | |
| 1386 | +--wix-color-13: 75,99,151; | |
| 1387 | +--wix-color-14: 0,36,116; | |
| 1388 | +--wix-color-15: 0,18,58; | |
| 1389 | +--wix-color-16: 186,204,218; | |
| 1390 | +--wix-color-17: 141,164,180; | |
| 1391 | +--wix-color-18: 80,117,143; | |
| 1392 | +--wix-color-19: 53,78,95; | |
| 1393 | +--wix-color-20: 27,39,48; | |
| 1394 | +--wix-color-21: 255,233,223; | |
| 1395 | +--wix-color-22: 255,191,161; | |
| 1396 | +--wix-color-23: 250,133,79; | |
| 1397 | +--wix-color-24: 234,96,32; | |
| 1398 | +--wix-color-25: 201,64,1; | |
| 1399 | +--wix-color-26: 250,250,250; | |
| 1400 | +--wix-color-27: 0,0,0; | |
| 1401 | +--wix-color-28: 153,153,153; | |
| 1402 | +--wix-color-29: 102,102,102; | |
| 1403 | +--wix-color-30: 51,51,51; | |
| 1404 | +--wix-color-31: 75,99,151; | |
| 1405 | +--wix-color-32: 75,99,151; | |
| 1406 | +--wix-color-33: 75,99,151; | |
| 1407 | +--wix-color-34: 75,99,151; | |
| 1408 | +--wix-color-35: 0,0,0; | |
| 1409 | +--wix-color-36: 51,51,51; | |
| 1410 | +--wix-color-37: 0,0,0; | |
| 1411 | +--wix-color-38: 75,99,151; | |
| 1412 | +--wix-color-39: 75,99,151; | |
| 1413 | +--wix-color-40: 250,250,250; | |
| 1414 | +--wix-color-41: 75,99,151; | |
| 1415 | +--wix-color-42: 75,99,151; | |
| 1416 | +--wix-color-43: 250,250,250; | |
| 1417 | +--wix-color-44: 102,102,102; | |
| 1418 | +--wix-color-45: 102,102,102; | |
| 1419 | +--wix-color-46: 250,250,250; | |
| 1420 | +--wix-color-47: 250,250,250; | |
| 1421 | +--wix-color-48: 75,99,151; | |
| 1422 | +--wix-color-49: 75,99,151; | |
| 1423 | +--wix-color-50: 250,250,250; | |
| 1424 | +--wix-color-51: 75,99,151; | |
| 1425 | +--wix-color-52: 75,99,151; | |
| 1426 | +--wix-color-53: 250,250,250; | |
| 1427 | +--wix-color-54: 102,102,102; | |
| 1428 | +--wix-color-55: 102,102,102; | |
| 1429 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1430 | +--wix-font-Title-style: normal; | |
| 1431 | +--wix-font-Title-variant: normal; | |
| 1432 | +--wix-font-Title-weight: bold; | |
| 1433 | +--wix-font-Title-size: 65px; | |
| 1434 | +--wix-font-Title-line-height: 1.2em; | |
| 1435 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1436 | +--wix-font-Title-text-decoration: none; | |
| 1437 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1438 | +--wix-font-Menu-style: normal; | |
| 1439 | +--wix-font-Menu-variant: normal; | |
| 1440 | +--wix-font-Menu-weight: normal; | |
| 1441 | +--wix-font-Menu-size: 16px; | |
| 1442 | +--wix-font-Menu-line-height: 1.4em; | |
| 1443 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1444 | +--wix-font-Menu-text-decoration: none; | |
| 1445 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1446 | +--wix-font-Page-title-style: normal; | |
| 1447 | +--wix-font-Page-title-variant: normal; | |
| 1448 | +--wix-font-Page-title-weight: bold; | |
| 1449 | +--wix-font-Page-title-size: 38px; | |
| 1450 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1451 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1452 | +--wix-font-Page-title-text-decoration: none; | |
| 1453 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1454 | +--wix-font-Heading-XL-style: normal; | |
| 1455 | +--wix-font-Heading-XL-variant: normal; | |
| 1456 | +--wix-font-Heading-XL-weight: normal; | |
| 1457 | +--wix-font-Heading-XL-size: 34px; | |
| 1458 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1459 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1460 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1461 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1462 | +--wix-font-Heading-L-style: normal; | |
| 1463 | +--wix-font-Heading-L-variant: normal; | |
| 1464 | +--wix-font-Heading-L-weight: normal; | |
| 1465 | +--wix-font-Heading-L-size: 30px; | |
| 1466 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1467 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1468 | +--wix-font-Heading-L-text-decoration: none; | |
| 1469 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1470 | +--wix-font-Heading-M-style: normal; | |
| 1471 | +--wix-font-Heading-M-variant: normal; | |
| 1472 | +--wix-font-Heading-M-weight: normal; | |
| 1473 | +--wix-font-Heading-M-size: 25px; | |
| 1474 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1475 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1476 | +--wix-font-Heading-M-text-decoration: none; | |
| 1477 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1478 | +--wix-font-Heading-S-style: normal; | |
| 1479 | +--wix-font-Heading-S-variant: normal; | |
| 1480 | +--wix-font-Heading-S-weight: normal; | |
| 1481 | +--wix-font-Heading-S-size: 19px; | |
| 1482 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1483 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1484 | +--wix-font-Heading-S-text-decoration: none; | |
| 1485 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1486 | +--wix-font-Body-L-style: normal; | |
| 1487 | +--wix-font-Body-L-variant: normal; | |
| 1488 | +--wix-font-Body-L-weight: normal; | |
| 1489 | +--wix-font-Body-L-size: 16px; | |
| 1490 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1491 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1492 | +--wix-font-Body-L-text-decoration: none; | |
| 1493 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1494 | +--wix-font-Body-M-style: normal; | |
| 1495 | +--wix-font-Body-M-variant: normal; | |
| 1496 | +--wix-font-Body-M-weight: normal; | |
| 1497 | +--wix-font-Body-M-size: 16px; | |
| 1498 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1499 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1500 | +--wix-font-Body-M-text-decoration: none; | |
| 1501 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1502 | +--wix-font-Body-S-style: normal; | |
| 1503 | +--wix-font-Body-S-variant: normal; | |
| 1504 | +--wix-font-Body-S-weight: normal; | |
| 1505 | +--wix-font-Body-S-size: 12px; | |
| 1506 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1507 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1508 | +--wix-font-Body-S-text-decoration: none; | |
| 1509 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1510 | +--wix-font-Body-XS-style: normal; | |
| 1511 | +--wix-font-Body-XS-variant: normal; | |
| 1512 | +--wix-font-Body-XS-weight: normal; | |
| 1513 | +--wix-font-Body-XS-size: 12px; | |
| 1514 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1515 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1516 | +--wix-font-Body-XS-text-decoration: none; | |
| 1517 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1518 | +--wix-font-LIGHT-style: normal; | |
| 1519 | +--wix-font-LIGHT-variant: normal; | |
| 1520 | +--wix-font-LIGHT-weight: normal; | |
| 1521 | +--wix-font-LIGHT-size: 12px; | |
| 1522 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1523 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1524 | +--wix-font-LIGHT-text-decoration: none; | |
| 1525 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1526 | +--wix-font-MEDIUM-style: normal; | |
| 1527 | +--wix-font-MEDIUM-variant: normal; | |
| 1528 | +--wix-font-MEDIUM-weight: normal; | |
| 1529 | +--wix-font-MEDIUM-size: 12px; | |
| 1530 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1531 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1532 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1533 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1534 | +--wix-font-STRONG-style: normal; | |
| 1535 | +--wix-font-STRONG-variant: normal; | |
| 1536 | +--wix-font-STRONG-weight: normal; | |
| 1537 | +--wix-font-STRONG-size: 12px; | |
| 1538 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1539 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1540 | +--wix-font-STRONG-text-decoration: none; | |
| 1541 | + }#comp-m8omcihb_r_comp-m8j7mq6v{--opacity:1;}#comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-m99166jr{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdeyhsow{--shc-mutated-brightness:25,33,51;}#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-block:0;--item-margin-inline:0px 10px;--item-display:inline-block;--direction:var(--wix-opt-in-direction, ltr);--flex-direction:row;height:20px;width:calc(2 * (20px + 10px) - 10px);}@media screen and (min-width: 320px) and (max-width: 1000px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));--item-margin-inline:0px max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)));height:max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width)));width:calc(2 * (max(0.5px, 0.0265605 * (var(--scaling-factor) - var(--scrollbar-width))) + max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width)))) - max(0.5px, 0.0079059 * (var(--scaling-factor) - var(--scrollbar-width))));}}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdeylyv3{--item-size:20px;--item-margin-inline:0px 10px;height:20px;width:calc(2 * (20px + 10px) - 10px);}}#comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#portal-comp-m8omcihb_r_comp-mdeyqfi8{--direction:ltr;--item-direction:inherit;--dropdown-menu-direction:inherit;--dropdown-menu-item-direction:inherit;--dropdown-menu-sub-item-direction:inherit;--sr-only-horizontal-item-icon-display:none;--scroll-button-transform:scaleX(1);--navbar-display:unset;--hamburger-menu-root-display:none;--container-flex-direction:row;--item-wrapper-width:unset;--menu-items-row-gap:var(--menu-items-cross-axis-gap);--menu-items-column-gap:var(--menu-items-main-axis-gap);--horizontal-menu-item-divider:var(--item-divider);--vertical-menu-item-divider:none;--container-pointer-events:initial;--item-wrapper-display:block;--horizontal-menu-dropdown-display:unset;--vertical-menu-dropdown-display:none;--empty-dropdown-item-icon-display:unset;--menu-item-wrapper-height:100%;--item-icon-display:var(--horizontal-item-icon-display);--sr-only-item-icon-display:var(--sr-only-horizontal-item-icon-display);--item-width:fit-content;--menu-items-flex-grow:0;--item-wrapper-display-alignment:flex;--item-label-underline-display:none;--item-selected-label-underline-display:none;--item-label-bullet-display:inline-block;--hamburger-overlay-initial-opacity:unset;--hamburger-menu-container-initial-opacity:unset;--hamburger-menu-container-initial-transform:translateX(100%);min-width:initial;--container-overflow-x:auto;--container-flex-wrap:nowrap;--scroll-button-icon-display:unset;}#comp-m8omcihb_r_comp-mdf18wki{--text-direction:var(--wix-opt-in-direction);}#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){background-color:transparent;font-family:montserrat,sans-serif;font-size:max(14px, min(16px, max(0.5px, 0.0112439 * (var(--scaling-factor) - var(--scrollbar-width)))));letter-spacing:0em;line-height:1.6;}@media screen and (min-width: 320px) and (max-width: 750px){#comp-m8omcihb_r_comp-mdf18wki :is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:#FAFAFA !important;font-size:max(14px, min(16px, max(0.5px, 0.0112427 * (var(--scaling-factor) - var(--scrollbar-width))))) !important;text-decoration:none !important;}#comp-m8omcihb_r_comp-mdf18wki [class$=rich-text__text]:is(p,h1,h2,h3,h4,h5,h6,ul,ol,span[data-attr-richtext-marker],blockquote,div){color:var(--corvid-color, #FAFAFA) !important;}}</style> | |
| 1542 | + | |
| 1543 | +</head> | |
| 1544 | +<body class='responsive' > | |
| 1545 | +<script type="text/javascript"> | |
| 1546 | + var bodyCacheable = true; | |
| 1547 | + | |
| 1548 | + var exclusionReason = {"shouldRender":true,"forced":false}; | |
| 1549 | + var ssrInfo = {"cacheExclusionReason":"","renderBodyTime":2486,"renderTimeStamp":1786257269333} | |
| 1550 | +</script> | |
| 1551 | + | |
| 1552 | + | |
| 1553 | + | |
| 1554 | + | |
| 1555 | + | |
| 1556 | + | |
| 1557 | + | |
| 1558 | + <!--pageHtmlEmbeds.bodyStart start--> | |
| 1559 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart start"></script> | |
| 1560 | + | |
| 1561 | + <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyStart end"></script> | |
| 1562 | + <!--pageHtmlEmbeds.bodyStart end--> | |
| 1563 | + | |
| 1564 | + | |
| 1565 | + | |
| 1566 | + | |
| 1567 | +<script id="wix-first-paint"> | |
| 1568 | + if (window.ResizeObserver && | |
| 1569 | + (!window.PerformanceObserver || !PerformanceObserver.supportedEntryTypes || PerformanceObserver.supportedEntryTypes.indexOf('paint') === -1)) { | |
| 1570 | + new ResizeObserver(function (entries, observer) { | |
| 1571 | + entries.some(function (entry) { | |
| 1572 | + var contentRect = entry.contentRect; | |
| 1573 | + if (contentRect.width > 0 && contentRect.height > 0) { | |
| 1574 | + requestAnimationFrame(function (now) { | |
| 1575 | + window.wixFirstPaint = now; | |
| 1576 | + dispatchEvent(new CustomEvent('wixFirstPaint')); | |
| 1577 | + }); | |
| 1578 | + observer.disconnect(); | |
| 1579 | + return true; | |
| 1580 | + } | |
| 1581 | + }); | |
| 1582 | + }).observe(document.body); | |
| 1583 | + } | |
| 1584 | +</script> | |
| 1585 | + | |
| 1586 | + | |
| 1587 | +<script id="scroll-bar-width-calculation"> | |
| 1588 | + const div = document.createElement('div') | |
| 1589 | + div.style.overflowY = 'scroll' | |
| 1590 | + div.style.width = '50px' | |
| 1591 | + div.style.height = '50px' | |
| 1592 | + div.style.visibility = 'hidden' | |
| 1593 | + document.body.appendChild(div) | |
| 1594 | + const scrollbarWidth= div.offsetWidth - div.clientWidth | |
| 1595 | + document.body.removeChild(div) | |
| 1596 | + if(scrollbarWidth > 0){ | |
| 1597 | + document.body.style.setProperty('--scrollbar-width', `${scrollbarWidth}px`) | |
| 1598 | + } | |
| 1599 | +</script> | |
| 1600 | + | |
| 1601 | + | |
| 1602 | + | |
| 1603 | + | |
| 1604 | + | |
| 1605 | + <style id=wix-custom-css>/* Users Custom CSS code */ | |
| 1606 | + } | |
| 1607 | +</style> | |
| 1608 | + | |
| 1609 | + | |
| 1610 | + | |
| 1611 | + <!-- domStoreHtml --> | |
| 1612 | + <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> | |
| 1613 | + | |
| 1614 | + | |
| 1615 | +<div id="SITE_CONTAINER"><style id="STYLE_OVERRIDES_ID">#comp-m8omdbeu13{visibility:hidden !important;} #comp-m8omdbew{visibility:hidden !important;} #comp-m8omdbf211{--corvid-color:green;} #comp-m8omdbf2{--container-corvid-background-color:#D1FFBD;}</style><div id="main_MF" class="main_MF"><div id="SCROLL_TO_TOP" class="qe3oTb ignore-focus SCROLL_TO_TOP" role="region" tabindex="-1" aria-label="top of page"><span class="TvbeET">top of page</span></div><div id="site-root" class="site-root"><div id="masterPage" class="masterPage css-editing-scope"><div id="SITE_PAGES" class="Y3K28_ SITE_PAGES"><div id="ebqqm" class="ETqrjz theme-vars ebqqm"><div class="g0IvTF wixui-page" data-testid="page-bg"></div><div><div class="ebqqm-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="ebqqm-container"><div id="comp-m8omcihb-pinned-layer" class="comp-m8omcihb-pinned-layer QED8q1"><header id="comp-m8omcihb" class="comp-m8omcihb S829f_ comp-m8omcihb-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcihb_r_comp-kbgajy18" tabindex="-1" data-block-level-container="Section" class="Lnr3dj comp-m8omcihb_r_comp-kbgajy18 Lnr3dj w2JesW wixui-header fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcihb_r_comp-kbgajy18" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcihb_r_comp-kbgajy18" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcihb_r_comp-kbgajy18" data-motion-part="BG_MEDIA comp-m8omcihb_r_comp-kbgajy18" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-kbgajy18-container"><div id="comp-m8omcihb_r_comp-m6saac0q" class="QrIus comp-m8omcihb_r_comp-m6saac0q"><div class="comp-m8omcihb_r_comp-m6saac0q"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m6saadbd" class="comp-m8omcihb_r_comp-m6saadbd" style="visibility:hidden;overflow:hidden;width:0;min-width:0;height:0;min-height:0;pointer-events:none;margin:0;position:absolute"></div><div id="comp-m8omcihb_r_comp-mdeyh2rw" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyh2rw-container comp-m8omcihb_r_comp-mdeyh2rw wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-m2xyvk9x" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m2xyvk9x wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-m2xyvk9x-container"><div class="comp-m8omcihb_r_comp-m2xz2cwh lIkFMb" id="comp-m8omcihb_r_comp-m2xz2cwh" aria-disabled="false"><a data-testid="linkElement" href="http://www.sflogements.com" target="_self" rel="noreferrer noopener" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><div id="comp-m8omcihb_r_comp-lxu2mi30" class="comp-m8omcihb_r_comp-lxu2mi30-container wiZmhC"><nav aria-label="Site" class="HamburgerOpenButton3537389287__nav"><div id="comp-m8omcihb_r_comp-lxu2mi38" class="HamburgerOpenButton3537389287__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38" data-semantic-classname="hamburger-open-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi38-styleId__root wixui-hamburger-open-button" data-testid="buttonContent" aria-expanded="false" aria-haspopup="dialog" aria-label="Menu"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-open-button__label" data-testid="stylablebutton-label">Menu</span><span class="StylableButton2545352419__icon wixui-hamburger-open-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1616 | +<svg data-bbox="60 70 80 60" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1617 | + <g> | |
| 1618 | + <path d="M64 78h72a4 4 0 0 0 0-8H64a4 4 0 0 0 0 8z"></path> | |
| 1619 | + <path d="M136 96H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1620 | + <path d="M136 122H64a4 4 0 0 0 0 8h72a4 4 0 0 0 0-8z"></path> | |
| 1621 | + </g> | |
| 1622 | +</svg> | |
| 1623 | +</span></span></span></button></div></nav><div id="comp-m8omcihb_r_comp-lxu2mi3c" class="HamburgerOverlay547129737--showBackgroundOverlay HamburgerOverlay547129737__root OrbgmN" role="dialog" aria-modal="true" aria-label="Navigation sur le site" data-visible="false" data-hook="hamburger-overlay-root" tabindex="-1" data-part="hamburger-overlay" data-animation-name="none"><div data-hook="hamburger-overlay-dialog" aria-hidden="true" class="HamburgerOverlay547129737__overlay comp-m8omcihb_r_comp-lxu2mi3c-styleId__root wixui-hamburger-overlay"></div><div class="comp-m8omcihb_r_comp-lxu2mi3c-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3c-container"><div id="comp-m8omcihb_r_comp-lxu2mi3d5" tabindex="-1" class="comp-m8omcihb_r_comp-lxu2mi3d5 ZBf0K1 fy6eJk" data-animation-name="none"><div aria-hidden="true" class="HamburgerMenuContainer502174924__root comp-m8omcihb_r_comp-lxu2mi3d5-styleId__root wixui-hamburger-menu-container"></div><div class="comp-m8omcihb_r_comp-lxu2mi3d5-overflow-wrapper gDZ5xr" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omcihb_r_comp-lxu2mi3d5-container"><div id="comp-m8omcihb_r_comp-lxu2mi3i1" class="HamburgerCloseButton872037521__root StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1" data-semantic-classname="hamburger-close-button"><button type="button" class="StylableButton2545352419__root comp-m8omcihb_r_comp-lxu2mi3i1-styleId__root wixui-hamburger-close-button" data-testid="buttonContent" aria-label="Close"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-hamburger-close-button__label" data-testid="stylablebutton-label">Close</span><span class="StylableButton2545352419__icon wixui-hamburger-close-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1624 | +<svg data-bbox="33 33 133.333 133.333" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1625 | + <g> | |
| 1626 | + <path d="M166.333 38.892 160.442 33 99.667 93.775 38.892 33 33 38.892l60.775 60.775L33 160.442l5.892 5.891 60.775-60.775 60.775 60.775 5.891-5.891-60.775-60.775 60.775-60.775Z" fill-rule="evenodd"></path> | |
| 1627 | + </g> | |
| 1628 | +</svg> | |
| 1629 | +</span></span></span></button></div><div id="comp-m8omcihb_r_comp-m5rceko6" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-m5rceko6-container comp-m8omcihb_r_comp-m5rceko6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcihb_r_comp-mdezy72f" class="ArRNfA comp-m8omcihb_r_comp-mdezy72f wixui-repeater"><div data-testid="responsive-container-content" role="list" class="comp-m8omcihb_r_comp-mdezy72f-container"><div id="comp-m8omcihb_r_comp-mdezy72s__item1" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item1 wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item1" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item1 wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">À Propos</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item1" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item1" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/entreprise" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="À Propos"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1630 | + <g> | |
| 1631 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1632 | + </g> | |
| 1633 | +</svg> | |
| 1634 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9ples3e wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9ples3e wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Obtenir un devis</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9ples3e" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Obtenir un devis"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1635 | + <g> | |
| 1636 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1637 | + </g> | |
| 1638 | +</svg> | |
| 1639 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-j9plerjk wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-j9plerjk wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Blog</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-j9plerjk" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" href="https://www.leshabitationssf.com/blog" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Blog"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1640 | + <g> | |
| 1641 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1642 | + </g> | |
| 1643 | +</svg> | |
| 1644 | +</span></span></span></a></div></div><div id="comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t" role="listitem" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdezy72s-container comp-m8omcihb_r_comp-mdezy72s comp-m8omcihb_r_comp-mdezy72s__item-mdf0tj4t wixui-repeater__item" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-repeater__item"></div><div id="comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf0r6km comp-m8omcihb_r_comp-mdf0r6km__item-mdf0tj4t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text">Contact</p></div><div id="comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" class="comp-m8omcihb_r_comp-mdf0tx18 comp-m8omcihb_r_comp-mdf0tx18__item-mdf0tj4t" data-semantic-classname="button" dir="inherit"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" href="https://www.leshabitationssf.com/devis" target="_self" class="WZxFET comp-m8omcihb_r_comp-mdf0tx18-styleId__root wixui-button OOhWpA" aria-label="Contact"><span class="UPWJFm"><span class="QeinDR wixui-button__label" data-testid="stylablebutton-label">Add</span><span class="vwUNxR wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span><svg data-bbox="0 0 252.492 252.492" xmlns="http://www.w3.org/2000/svg" viewBox="-62.081 -62.081 377 377"> | |
| 1645 | + <g> | |
| 1646 | + <path d="M252.492 117.246H135.246V0h-18v117.246H0v18h117.246v117.246h18V135.246h117.246v-18z"></path> | |
| 1647 | + </g> | |
| 1648 | +</svg> | |
| 1649 | +</span></span></span></a></div></div></div></div><div class="comp-m8omcihb_r_comp-m5rceatr lIkFMb" id="comp-m8omcihb_r_comp-m5rceatr" aria-disabled="false"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="PoVCDy wixui-button ZhVEJq" aria-disabled="false" aria-label="À LOUER"><span class="Gf1CuA wixui-button__label">À LOUER</span></a></div><nav id="comp-m8omcihb_r_comp-lxubhuix" aria-label="Site" class="d2V6sy comp-m8omcihb_r_comp-lxubhuix wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcihb_r_comp-lxubhuix-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcihb_r_comp-lxubhuix-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcihb_r_comp-mdezahz3"></div></div></div></div></div></div></div></div></div><div id="comp-m8omcihb_r_comp-m73v5p0x" class="QrIus comp-m8omcihb_r_comp-m73v5p0x"><div class="comp-m8omcihb_r_comp-m73v5p0x"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><a class="tx4Jvn s1dvzA" data-hook="cart-icon-button" role="button"><div class="Q8TtId" style="padding-bottom:119.5260663507109%" data-hook="svg-icon-wrapper"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" viewBox="0 0 105.5 126.1" preserveAspectRatio="xMinYMax meet" data-hook="svg-icon-1"><path d="M102.143 118.16L93.812 48.2067C93.386 44.66 90.3566 42 86.7591 42H79.1382V56H74.4047V42H31.8032V56H27.0697V42H19.4488C15.8513 42 12.8219 44.66 12.3959 48.16L4.06489 118.16C3.78088 120.167 4.44357 122.173 5.76895 123.667C7.14167 125.16 9.0824 126 11.0705 126H95.1374C97.1255 126 99.0662 125.16 100.439 123.667C101.764 122.173 102.427 120.167 102.143 118.16Z"></path><path d="M32.0594 25.6667C32.0594 14.0933 41.506 4.66667 53.1039 4.66667C64.7018 4.66667 74.1485 14.0933 74.1485 25.6667V42H78.825V25.6667C78.825 11.5267 67.2739 0 53.1039 0C38.9339 0 27.3828 11.5267 27.3828 25.6667V42H32.0594V25.6667Z"></path></svg></div></a></div></div></div><div id="comp-m8omcihb_r_comp-m8j7mq6v" class="comp-m8omcihb_r_comp-m8j7mq6v wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcihb_r_comp-m8j7mq6v" class="iL7Pq5 gx51wo"> | |
| 1650 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omcihb_r_comp-m8j7mq6v svg [data-color="1"] {fill: #FAFAFA;}</style></defs> | |
| 1651 | + <g> | |
| 1652 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 1653 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 1654 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 1655 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 1656 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 1657 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 1658 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 1659 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 1660 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 1661 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 1662 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 1663 | + </g> | |
| 1664 | +</svg> | |
| 1665 | +</div></a></div><div id="comp-m8omcihb_r_comp-m99166jr" class="comp-m8omcihb_r_comp-m99166jr-container comp-m8omcihb_r_comp-m99166jr" data-prehydration=""><div id="comp-m8omcihb_r_comp-m99166jr-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/forfaits" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion d'immeubles à revenus</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Gestion de copropriété</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdez2caz" class="n8bAtI comp-m8omcihb_r_comp-mdez2caz"><div class="zACo20 wixui-vertical-line"></div></div></div></div><div id="comp-m8omcihb_r_comp-mdeyhsow" role="" class="HFEOE3 NaeT1r comp-m8omcihb_r_comp-mdeyhsow wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcihb_r_comp-mdeyhsow-container"><div id="comp-m8omcihb_r_comp-mdeylyv3" class="comp-m8omcihb_r_comp-mdeylyv3 eAOB3n"><ul class="tDHQQD" aria-label="Barre de réseaux sociaux"><li id="dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.instagram.com/sf.habitations/" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Instagram"><wow-image id="img_0_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":201,"uri":"11062b_cef3b719166a4815b446d4dcfcb6120d~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvk1-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Instagram"/></wow-image></a></li><li id="dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" class="VGXFRO"><a data-testid="linkElement" href="https://www.facebook.com/profile.php?id=61555968238150" target="_blank" rel="noreferrer noopener" class="FvIvPq" aria-label="Facebook"><wow-image id="img_1_comp-m8omcihb_r_comp-mdeylyv3" class="Qh0lWW IKlnHc" data-image-info="{"containerId":"dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3","displayMode":"fit","encoding":"AVIF","imageData":{"width":201,"height":200,"uri":"11062b_ef6a6ac194704911951645990055c2ce~mv2.png","name":"","displayMode":"fit"}}" data-motion-part="BG_IMG dataItem-mdeylyvs-comp-m8omcihb_r_comp-mdeylyv3" data-bg-effect-name="" data-has-ssr-src="" style="--wix-img-max-width:max(201px, 100%)"><img alt="Facebook"/></wow-image></a></li></ul></div><div id="comp-m8omcihb_r_comp-mdeyqfi8" class="comp-m8omcihb_r_comp-mdeyqfi8-container comp-m8omcihb_r_comp-mdeyqfi8" data-prehydration=""><div id="comp-m8omcihb_r_comp-mdeyqfi8-menu-content" class="h75ntl"><nav class="Y4Cdvx tn8ZSa VxjUGd YUEUpV wixui-horizontal-menu wixui-menu" data-part="navbar" data-hook="menu-root" aria-label="Site Menu"><ul class="OD_PyT"><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/entreprise" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">À Propos</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/blog" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Blog</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Obtenir un devis</div></a></div></div><span class="BDrALc"></span></li><li class="NxO5nt" data-part="menu-item" data-animation-name="none" data-item-depth="0"><div class="fYThT1"><div class="FBAIyH QFOPOz wixui-horizontal-menu__item wixui-menu__item cVnJ7u" data-part="menu-item-content" data-interactive="true"><a data-testid="linkElement" data-anchor="anchors-mdeyrwad" data-part="menu-item-link" href="https://www.leshabitationssf.com/devis" target="_self" class=""><div class="ijO_Jr wixui-horizontal-menu__item-label wixui-menu__item-label GPIJZi" data-part="label">Contact</div></a></div></div><span class="BDrALc"></span></li></ul><div class="UU6mel"><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-backward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M0 6L5.2 0 6 .7 1.3 6 6 11.3 5.2 12z"></path></svg></span></div><div aria-hidden="true" aria-label="scroll" class="PnnIOa hcRPG3 MXA4tA sLcDXV wixui-menu__scroll-button scroll-button" data-menu-scroll-action="page" data-hidden="true" data-part="scroll-forward-button"><span class="KEUNmX wixui-menu__scroll-button-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 12"><path d="M6 6L.8 0 0 .7 4.7 6 0 11.3l.8.7z"></path></svg></span></div></div></nav></div></div><div id="comp-m8omcihb_r_comp-mdf18wki" class="N8MGzv _v6ohL PO9MfV comp-m8omcihb_r_comp-mdf18wki wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="tel: 450.499.7978" class="wixui-rich-text__text"> 450.499.7978</a></p></div></div></div></div><div id="comp-m8omcihb_r_CONTROLLER_COMP_CUSTOM_ID" style="display:none"></div></div></section></header></div><main id="PAGE_SECTIONSebqqm" class="PAGE_SECTIONSebqqm ooGRUo" data-main-content-parent="true"><section id="comp-m8omdbdn" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omdbdn wixui-section fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omdbdn" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omdbdn" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omdbdn" data-motion-part="BG_MEDIA comp-m8omdbdn" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdn-container max-width-container"><div id="comp-m8oqdae2" role="" class="HFEOE3 NaeT1r comp-m8oqdae2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqdae2-container"><div id="comp-m8omdbe910" role="" class="HFEOE3 NaeT1r comp-m8omdbe910-container comp-m8omdbe910 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea7" role="" class="HFEOE3 NaeT1r comp-m8omdbea7-container comp-m8omdbea7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbea15" class="N8MGzv _v6ohL PO9MfV comp-m8omdbea15 wixui-rich-text" data-testid="richTextElement"><h3 class="font_3 wixui-rich-text__text"><span class="wixui-rich-text__text">Cette unité vous intéresse?</span></h3></div><div id="comp-m8omdbeb13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeb13 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">Veuillez remplir le formulaire ci-dessous pour réserver l'unité ou être notifié lorsque celle-ci devient disponible.</span></p></div></div><div id="comp-m8omdbec6" role="" class="HFEOE3 NaeT1r comp-m8omdbec6-container comp-m8omdbec6 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbec15" class="Yz8ZCc comp-m8omdbec15 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbec15" class="QyrExM wixui-text-input__label">Prénom</label><div class="nuFEsg"><input name="prénom" id="input_comp-m8omdbec15" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="John" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeg9" class="Yz8ZCc comp-m8omdbeg9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeg9" class="QyrExM wixui-text-input__label">Nom de Famille</label><div class="nuFEsg"><input name="nom-de famille" id="input_comp-m8omdbeg9" class="nbaJII has-custom-focus wixui-text-input__input" type="text" placeholder="Doe" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbeh9" class="Yz8ZCc comp-m8omdbeh9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbeh9" class="QyrExM wixui-text-input__label">Téléphone</label><div class="nuFEsg"><input name="phone" id="input_comp-m8omdbeh9" class="nbaJII has-custom-focus wixui-text-input__input" type="tel" placeholder="450.499.7978" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdbei9" class="Yz8ZCc comp-m8omdbei9 wixui-text-input pZqgsf TqroEf"><label for="input_comp-m8omdbei9" class="QyrExM wixui-text-input__label">Courriel</label><div class="nuFEsg"><input name="email" id="input_comp-m8omdbei9" class="nbaJII has-custom-focus wixui-text-input__input" type="email" placeholder="johndoe@gmail.com" required="" aria-invalid="false" autoComplete="off" value=""/></div></div><div id="comp-m8omdben" class="YbkIHV comp-m8omdben wixui-text-box bCYfl0"><label for="textarea_comp-m8omdben" class="P3lL3X wixui-text-box__label">Message</label><textarea id="textarea_comp-m8omdben" class="XXgBXC has-custom-focus wixui-text-box__input" rows="1" placeholder="Posez-nous vos questions" aria-required="false" aria-invalid="false"></textarea></div><div id="comp-m8omdber7" class="Y_w4j4 uvl2Tw comp-m8omdber7 wixui-dropdown VYqX7C DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8omdber7">Unité</label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8omdber7" data-testid="select-trigger" required="" aria-required="true" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir l'unité</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div><div id="comp-m8omdbeu13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbeu13 wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Nous avons reçu votre demande. Nous vous contacterons sous-peu.</p></div></div><div id="comp-m8omdbew" class="N8MGzv _v6ohL PO9MfV comp-m8omdbew wixui-rich-text" data-testid="richTextElement" aria-live="polite"><div aria-hidden="true" class="wixui-rich-text__text"><p class="font_8 wixui-rich-text__text wixui-rich-text__text">Une erreur s'est produite. Veuillez réessayer.</p></div></div><div id="comp-m8omdbex1" class="comp-m8omdbex1" data-semantic-classname="button"><button type="button" class="StylableButton2545352419__root style-m8omdbey8__root wixui-button" data-testid="buttonContent" aria-label="Envoyer"><span class="StylableButton2545352419__container"><span class="StylableButton2545352419__label wixui-button__label" data-testid="stylablebutton-label">Envoyer</span><span class="StylableButton2545352419__icon wixui-button__icon" aria-hidden="true" data-testid="stylablebutton-icon"><span> | |
| 1666 | +<svg data-bbox="28 20 144 160" viewBox="0 0 200 200" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="shape"> | |
| 1667 | + <g> | |
| 1668 | + <path d="M172 172.105l-.065-83.094a7.89 7.89 0 0 0-2.635-5.88l-64.103-57.226a7.88 7.88 0 0 0-10.499.001L30.634 83.128A7.891 7.891 0 0 0 28 89.013v83.098A7.887 7.887 0 0 0 35.884 180h34a7.887 7.887 0 0 0 7.884-7.889v-44.828a7.887 7.887 0 0 1 7.884-7.889h28.667a7.887 7.887 0 0 1 7.884 7.889v44.828a7.887 7.887 0 0 0 7.884 7.889h34.029c4.357 0 7.887-3.536 7.884-7.895z"></path> | |
| 1669 | + <path d="M132.069 31.41l31.357 28.145V31.41c0-6.302-5.105-11.41-11.403-11.41h-8.551c-6.298 0-11.403 5.108-11.403 11.41z"></path> | |
| 1670 | + </g> | |
| 1671 | +</svg> | |
| 1672 | +</span></span></span></button></div><div id="comp-m8or8zjr" class="Y_w4j4 uvl2Tw comp-m8or8zjr wixui-dropdown DCgvoa"><label class="lo03zG wixui-dropdown__label" for="collection_comp-m8or8zjr"></label><div class="UuIgyh"><select class="wixui-dropdown__input Hae_iI has-custom-focus ztWMYz" id="collection_comp-m8or8zjr" data-testid="select-trigger" required="" aria-required="true" aria-label="Choisir une option" aria-invalid="false"><option value="" disabled="" class="WdV6vy QfNCKR" selected="">Choisir une option</option></select><div class="R8pbpf"><div class="XiOJeV"><svg class="ue5GsJ wixui-dropdown__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.2828 4.89817" aria-hidden="true"><path d="M4.64116,4.89817a.5001.5001,0,0,1-.34277-.13574L.15727.86448A.50018.50018,0,0,1,.84282.136L4.64116,3.71165,8.44.136a.50018.50018,0,0,1,.68555.72852L4.98393,4.76243A.5001.5001,0,0,1,4.64116,4.89817Z"></path></svg></div></div></div></div></div></div></div></div><div id="comp-m8omdbdr7" role="" class="HFEOE3 NaeT1r comp-m8omdbdr7 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdr7-container"><div id="comp-m8oqu82o" role="" class="HFEOE3 NaeT1r comp-m8oqu82o-container comp-m8oqu82o wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8oqu82u" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82u wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><a href="https://www.leshabitationssf.com" target="_self" class="wixui-rich-text__text">Toutes les Propriétés</a></p></div><div id="comp-m8oqu82z" class="N8MGzv _v6ohL PO9MfV comp-m8oqu82z wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oqu8301" class="N8MGzv _v6ohL PO9MfV comp-m8oqu8301 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">CONDO 4 1/2 À LOUER</p></div></div></div></div><div id="comp-m8omdbdy12" role="" class="HFEOE3 NaeT1r comp-m8omdbdy12 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbdy12-container"><div id="comp-m8omf94r" role="" class="HFEOE3 NaeT1r comp-m8omf94r wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div class="comp-m8omf94r-overflow-wrapper ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="group" class="comp-m8omf94r-container"><div id="comp-m8omf94t" class=" comp-m8omf94t"><div class="comp-m8omf94t"><style>.comp-m8omf94t { | |
| 1673 | + --wix-color-1: 250,250,250; | |
| 1674 | +--wix-color-2: 153,153,153; | |
| 1675 | +--wix-color-3: 102,102,102; | |
| 1676 | +--wix-color-4: 51,51,51; | |
| 1677 | +--wix-color-5: 0,0,0; | |
| 1678 | +--wix-color-6: 183,195,220; | |
| 1679 | +--wix-color-7: 139,154,186; | |
| 1680 | +--wix-color-8: 75,99,151; | |
| 1681 | +--wix-color-9: 50,66,101; | |
| 1682 | +--wix-color-10: 25,33,50; | |
| 1683 | +--wix-color-11: 165,182,220; | |
| 1684 | +--wix-color-12: 124,143,186; | |
| 1685 | +--wix-color-13: 75,99,151; | |
| 1686 | +--wix-color-14: 0,36,116; | |
| 1687 | +--wix-color-15: 0,18,58; | |
| 1688 | +--wix-color-16: 186,204,218; | |
| 1689 | +--wix-color-17: 141,164,180; | |
| 1690 | +--wix-color-18: 80,117,143; | |
| 1691 | +--wix-color-19: 53,78,95; | |
| 1692 | +--wix-color-20: 27,39,48; | |
| 1693 | +--wix-color-21: 255,233,223; | |
| 1694 | +--wix-color-22: 255,191,161; | |
| 1695 | +--wix-color-23: 250,133,79; | |
| 1696 | +--wix-color-24: 234,96,32; | |
| 1697 | +--wix-color-25: 201,64,1; | |
| 1698 | +--wix-color-26: 250,250,250; | |
| 1699 | +--wix-color-27: 0,0,0; | |
| 1700 | +--wix-color-28: 153,153,153; | |
| 1701 | +--wix-color-29: 102,102,102; | |
| 1702 | +--wix-color-30: 51,51,51; | |
| 1703 | +--wix-color-31: 75,99,151; | |
| 1704 | +--wix-color-32: 75,99,151; | |
| 1705 | +--wix-color-33: 75,99,151; | |
| 1706 | +--wix-color-34: 75,99,151; | |
| 1707 | +--wix-color-35: 0,0,0; | |
| 1708 | +--wix-color-36: 51,51,51; | |
| 1709 | +--wix-color-37: 0,0,0; | |
| 1710 | +--wix-color-38: 75,99,151; | |
| 1711 | +--wix-color-39: 75,99,151; | |
| 1712 | +--wix-color-40: 250,250,250; | |
| 1713 | +--wix-color-41: 75,99,151; | |
| 1714 | +--wix-color-42: 75,99,151; | |
| 1715 | +--wix-color-43: 250,250,250; | |
| 1716 | +--wix-color-44: 102,102,102; | |
| 1717 | +--wix-color-45: 102,102,102; | |
| 1718 | +--wix-color-46: 250,250,250; | |
| 1719 | +--wix-color-47: 250,250,250; | |
| 1720 | +--wix-color-48: 75,99,151; | |
| 1721 | +--wix-color-49: 75,99,151; | |
| 1722 | +--wix-color-50: 250,250,250; | |
| 1723 | +--wix-color-51: 75,99,151; | |
| 1724 | +--wix-color-52: 75,99,151; | |
| 1725 | +--wix-color-53: 250,250,250; | |
| 1726 | +--wix-color-54: 102,102,102; | |
| 1727 | +--wix-color-55: 102,102,102; | |
| 1728 | +--wix-font-Title: normal normal bold 65px/1.2em montserrat,sans-serif; | |
| 1729 | +--wix-font-Title-style: normal; | |
| 1730 | +--wix-font-Title-variant: normal; | |
| 1731 | +--wix-font-Title-weight: bold; | |
| 1732 | +--wix-font-Title-size: 65px; | |
| 1733 | +--wix-font-Title-line-height: 1.2em; | |
| 1734 | +--wix-font-Title-family: montserrat,sans-serif; | |
| 1735 | +--wix-font-Title-text-decoration: none; | |
| 1736 | +--wix-font-Menu: normal normal normal 16px/1.4em din-next-w01-light,sans-serif; | |
| 1737 | +--wix-font-Menu-style: normal; | |
| 1738 | +--wix-font-Menu-variant: normal; | |
| 1739 | +--wix-font-Menu-weight: normal; | |
| 1740 | +--wix-font-Menu-size: 16px; | |
| 1741 | +--wix-font-Menu-line-height: 1.4em; | |
| 1742 | +--wix-font-Menu-family: din-next-w01-light,sans-serif; | |
| 1743 | +--wix-font-Menu-text-decoration: none; | |
| 1744 | +--wix-font-Page-title: normal normal bold 38px/1.3em montserrat,sans-serif; | |
| 1745 | +--wix-font-Page-title-style: normal; | |
| 1746 | +--wix-font-Page-title-variant: normal; | |
| 1747 | +--wix-font-Page-title-weight: bold; | |
| 1748 | +--wix-font-Page-title-size: 38px; | |
| 1749 | +--wix-font-Page-title-line-height: 1.3em; | |
| 1750 | +--wix-font-Page-title-family: montserrat,sans-serif; | |
| 1751 | +--wix-font-Page-title-text-decoration: none; | |
| 1752 | +--wix-font-Heading-XL: normal normal normal 34px/1.3em montserrat-black,sans-serif; | |
| 1753 | +--wix-font-Heading-XL-style: normal; | |
| 1754 | +--wix-font-Heading-XL-variant: normal; | |
| 1755 | +--wix-font-Heading-XL-weight: normal; | |
| 1756 | +--wix-font-Heading-XL-size: 34px; | |
| 1757 | +--wix-font-Heading-XL-line-height: 1.3em; | |
| 1758 | +--wix-font-Heading-XL-family: montserrat-black,sans-serif; | |
| 1759 | +--wix-font-Heading-XL-text-decoration: none; | |
| 1760 | +--wix-font-Heading-L: normal normal normal 30px/1.3em montserrat-black,sans-serif; | |
| 1761 | +--wix-font-Heading-L-style: normal; | |
| 1762 | +--wix-font-Heading-L-variant: normal; | |
| 1763 | +--wix-font-Heading-L-weight: normal; | |
| 1764 | +--wix-font-Heading-L-size: 30px; | |
| 1765 | +--wix-font-Heading-L-line-height: 1.3em; | |
| 1766 | +--wix-font-Heading-L-family: montserrat-black,sans-serif; | |
| 1767 | +--wix-font-Heading-L-text-decoration: none; | |
| 1768 | +--wix-font-Heading-M: normal normal normal 25px/1.3em montserrat-black,sans-serif; | |
| 1769 | +--wix-font-Heading-M-style: normal; | |
| 1770 | +--wix-font-Heading-M-variant: normal; | |
| 1771 | +--wix-font-Heading-M-weight: normal; | |
| 1772 | +--wix-font-Heading-M-size: 25px; | |
| 1773 | +--wix-font-Heading-M-line-height: 1.3em; | |
| 1774 | +--wix-font-Heading-M-family: montserrat-black,sans-serif; | |
| 1775 | +--wix-font-Heading-M-text-decoration: none; | |
| 1776 | +--wix-font-Heading-S: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 1777 | +--wix-font-Heading-S-style: normal; | |
| 1778 | +--wix-font-Heading-S-variant: normal; | |
| 1779 | +--wix-font-Heading-S-weight: normal; | |
| 1780 | +--wix-font-Heading-S-size: 19px; | |
| 1781 | +--wix-font-Heading-S-line-height: 1.4em; | |
| 1782 | +--wix-font-Heading-S-family: montserrat,sans-serif; | |
| 1783 | +--wix-font-Heading-S-text-decoration: none; | |
| 1784 | +--wix-font-Body-L: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1785 | +--wix-font-Body-L-style: normal; | |
| 1786 | +--wix-font-Body-L-variant: normal; | |
| 1787 | +--wix-font-Body-L-weight: normal; | |
| 1788 | +--wix-font-Body-L-size: 16px; | |
| 1789 | +--wix-font-Body-L-line-height: 1.6em; | |
| 1790 | +--wix-font-Body-L-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1791 | +--wix-font-Body-L-text-decoration: none; | |
| 1792 | +--wix-font-Body-M: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1793 | +--wix-font-Body-M-style: normal; | |
| 1794 | +--wix-font-Body-M-variant: normal; | |
| 1795 | +--wix-font-Body-M-weight: normal; | |
| 1796 | +--wix-font-Body-M-size: 16px; | |
| 1797 | +--wix-font-Body-M-line-height: 1.6em; | |
| 1798 | +--wix-font-Body-M-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1799 | +--wix-font-Body-M-text-decoration: none; | |
| 1800 | +--wix-font-Body-S: normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1801 | +--wix-font-Body-S-style: normal; | |
| 1802 | +--wix-font-Body-S-variant: normal; | |
| 1803 | +--wix-font-Body-S-weight: normal; | |
| 1804 | +--wix-font-Body-S-size: 12px; | |
| 1805 | +--wix-font-Body-S-line-height: 1.6em; | |
| 1806 | +--wix-font-Body-S-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1807 | +--wix-font-Body-S-text-decoration: none; | |
| 1808 | +--wix-font-Body-XS: normal normal normal 12px/1.4em din-next-w01-light,sans-serif; | |
| 1809 | +--wix-font-Body-XS-style: normal; | |
| 1810 | +--wix-font-Body-XS-variant: normal; | |
| 1811 | +--wix-font-Body-XS-weight: normal; | |
| 1812 | +--wix-font-Body-XS-size: 12px; | |
| 1813 | +--wix-font-Body-XS-line-height: 1.4em; | |
| 1814 | +--wix-font-Body-XS-family: din-next-w01-light,sans-serif; | |
| 1815 | +--wix-font-Body-XS-text-decoration: none; | |
| 1816 | +--wix-font-LIGHT: normal normal normal 12px/1.4em HelveticaNeueW01-45Ligh; | |
| 1817 | +--wix-font-LIGHT-style: normal; | |
| 1818 | +--wix-font-LIGHT-variant: normal; | |
| 1819 | +--wix-font-LIGHT-weight: normal; | |
| 1820 | +--wix-font-LIGHT-size: 12px; | |
| 1821 | +--wix-font-LIGHT-line-height: 1.4em; | |
| 1822 | +--wix-font-LIGHT-family: HelveticaNeueW01-45Ligh; | |
| 1823 | +--wix-font-LIGHT-text-decoration: none; | |
| 1824 | +--wix-font-MEDIUM: normal normal normal 12px/1.4em HelveticaNeueW01-55Roma; | |
| 1825 | +--wix-font-MEDIUM-style: normal; | |
| 1826 | +--wix-font-MEDIUM-variant: normal; | |
| 1827 | +--wix-font-MEDIUM-weight: normal; | |
| 1828 | +--wix-font-MEDIUM-size: 12px; | |
| 1829 | +--wix-font-MEDIUM-line-height: 1.4em; | |
| 1830 | +--wix-font-MEDIUM-family: HelveticaNeueW01-55Roma; | |
| 1831 | +--wix-font-MEDIUM-text-decoration: none; | |
| 1832 | +--wix-font-STRONG: normal normal normal 12px/1.4em HelveticaNeueW01-65Medi; | |
| 1833 | +--wix-font-STRONG-style: normal; | |
| 1834 | +--wix-font-STRONG-variant: normal; | |
| 1835 | +--wix-font-STRONG-weight: normal; | |
| 1836 | +--wix-font-STRONG-size: 12px; | |
| 1837 | +--wix-font-STRONG-line-height: 1.4em; | |
| 1838 | +--wix-font-STRONG-family: HelveticaNeueW01-65Medi; | |
| 1839 | +--wix-font-STRONG-text-decoration: none; | |
| 1840 | + --wix-direction: ltr; | |
| 1841 | +--newItemsDetails: 1; | |
| 1842 | +--galleryImageRatio: 2; | |
| 1843 | +--galleryThumbnailsAlignment: 3; | |
| 1844 | +--titlePlacementHorizontallyCompatible: 1; | |
| 1845 | +--overlayGradientDegrees: 180; | |
| 1846 | +--slideshowInfoSize: 120; | |
| 1847 | +--gridStyle: 1; | |
| 1848 | +--previewHover: 0; | |
| 1849 | +--arrowsSize: 50; | |
| 1850 | +--itemBorderRadius: 0; | |
| 1851 | +--arrowsType: 4; | |
| 1852 | +--customButtonBorderRadius: 0; | |
| 1853 | +--m_fixedGalleryRatio: 2; | |
| 1854 | +--isVertical: 1; | |
| 1855 | +--titleDescriptionSpace: 2; | |
| 1856 | +--gallerySize: 50; | |
| 1857 | +--te-padding-slider: 50; | |
| 1858 | +--m_designedPresetId: -1; | |
| 1859 | +--newItemsLocation: 0; | |
| 1860 | +--scrollDirection: 0; | |
| 1861 | +--overlayAnimation: 0; | |
| 1862 | +--collageDensity: 100; | |
| 1863 | +--calculateTextBoxHeightMode: 0; | |
| 1864 | +--slideshowLoop: 1; | |
| 1865 | +--externalCustomButtonBorderWidth: 1; | |
| 1866 | +--m_thumbnailSize: 80; | |
| 1867 | +--loveCounter: 0; | |
| 1868 | +--galleryLayout: 3; | |
| 1869 | +--titlePlacement: 1; | |
| 1870 | +--m_galleryLayout: 3; | |
| 1871 | +--scrollAnimation: 0; | |
| 1872 | +--numberOfImagesPerRow: 4; | |
| 1873 | +--fixedGalleryRatio: 0; | |
| 1874 | +--galleryVerticalAlign: 2; | |
| 1875 | +--imageHoverAnimation: 0; | |
| 1876 | +--m_allowFixedGalleryRatio: 1; | |
| 1877 | +--arrowsVerticalPosition: 1; | |
| 1878 | +--galleryHorizontalAlign: 0; | |
| 1879 | +--thumbnailSpacings: 10; | |
| 1880 | +--imageResize: 0; | |
| 1881 | +--designedPresetId: -1; | |
| 1882 | +--imageMargin: 10; | |
| 1883 | +--allowFixedGalleryRatio: 0; | |
| 1884 | +--arrowsContainerType: 2; | |
| 1885 | +--m_galleryThumbnailsAlignment: 0; | |
| 1886 | +--arrowsContainerBorderRadius: 50; | |
| 1887 | +--textBoxHeight: 199; | |
| 1888 | +--scrollDuration: 1; | |
| 1889 | +--textFont: normal normal normal 20px/1.4em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 1890 | +--m_itemIconColorSlideshow: 0,0,0; | |
| 1891 | +--m_itemIconColorSlideshow-rgb: 0,0,0; | |
| 1892 | +--m_itemIconColorSlideshow-opacity: 1; | |
| 1893 | +--m_itemDescriptionFontColor: 255,255,255; | |
| 1894 | +--m_itemDescriptionFontColor-rgb: 255,255,255; | |
| 1895 | +--m_itemDescriptionFontColor-opacity: 1; | |
| 1896 | +--m_itemBorderColor: 0,0,0; | |
| 1897 | +--m_itemBorderColor-rgb: 0,0,0; | |
| 1898 | +--m_itemBorderColor-opacity: 1; | |
| 1899 | +--itemIconColor: 255,255,255; | |
| 1900 | +--itemIconColor-rgb: 255,255,255; | |
| 1901 | +--itemIconColor-opacity: 1; | |
| 1902 | +--titleColorExpand: 0,0,0; | |
| 1903 | +--titleColorExpand-rgb: 0,0,0; | |
| 1904 | +--titleColorExpand-opacity: 1; | |
| 1905 | +--loadMoreButtonFontColor: 0,0,0; | |
| 1906 | +--loadMoreButtonFontColor-rgb: 0,0,0; | |
| 1907 | +--loadMoreButtonFontColor-opacity: 1; | |
| 1908 | +--itemDescriptionFontColor: 255,255,255; | |
| 1909 | +--itemDescriptionFontColor-rgb: 255,255,255; | |
| 1910 | +--itemDescriptionFontColor-opacity: 1; | |
| 1911 | +--m_customButtonFontColor: 255,255,255; | |
| 1912 | +--m_customButtonFontColor-rgb: 255,255,255; | |
| 1913 | +--m_customButtonFontColor-opacity: 1; | |
| 1914 | +--m_overlayGradientColor1: 0,0,0; | |
| 1915 | +--m_overlayGradientColor1-rgb: 0,0,0; | |
| 1916 | +--m_overlayGradientColor1-opacity: 1; | |
| 1917 | +--m_arrowsColor: 0,0,0; | |
| 1918 | +--m_arrowsColor-rgb: 0,0,0; | |
| 1919 | +--m_arrowsColor-opacity: 1; | |
| 1920 | +--arrowsContainerBackgroundColor: 255,255,255,0.5; | |
| 1921 | +--arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1922 | +--arrowsContainerBackgroundColor-opacity: 0.5; | |
| 1923 | +--m_externalCustomButtonColor: 26,106,255; | |
| 1924 | +--m_externalCustomButtonColor-rgb: 26,106,255; | |
| 1925 | +--m_externalCustomButtonColor-opacity: 1; | |
| 1926 | +--customButtonBorderColor: 255,255,255; | |
| 1927 | +--customButtonBorderColor-rgb: 255,255,255; | |
| 1928 | +--customButtonBorderColor-opacity: 1; | |
| 1929 | +--m_customButtonFontColorForHover: 0,0,0; | |
| 1930 | +--m_customButtonFontColorForHover-rgb: 0,0,0; | |
| 1931 | +--m_customButtonFontColorForHover-opacity: 1; | |
| 1932 | +--m_itemOpacity: 0,0,0,0.3; | |
| 1933 | +--m_itemOpacity-rgb: 0,0,0; | |
| 1934 | +--m_itemOpacity-opacity: 0.3; | |
| 1935 | +--textBoxFillColor: 238,238,238; | |
| 1936 | +--textBoxFillColor-rgb: 238,238,238; | |
| 1937 | +--textBoxFillColor-opacity: 1; | |
| 1938 | +--backgroundGradientColor2: 26,106,255; | |
| 1939 | +--backgroundGradientColor2-rgb: 26,106,255; | |
| 1940 | +--backgroundGradientColor2-opacity: 1; | |
| 1941 | +--itemOpacity: 0,0,0,0; | |
| 1942 | +--itemOpacity-rgb: 0,0,0; | |
| 1943 | +--itemOpacity-opacity: 0; | |
| 1944 | +--loadMoreButtonColor: 255,255,255; | |
| 1945 | +--loadMoreButtonColor-rgb: 255,255,255; | |
| 1946 | +--loadMoreButtonColor-opacity: 1; | |
| 1947 | +--m_itemFontColor: 255,255,255; | |
| 1948 | +--m_itemFontColor-rgb: 255,255,255; | |
| 1949 | +--m_itemFontColor-opacity: 1; | |
| 1950 | +--m_arrowsContainerBackgroundColor: 255,255,255; | |
| 1951 | +--m_arrowsContainerBackgroundColor-rgb: 255,255,255; | |
| 1952 | +--m_arrowsContainerBackgroundColor-opacity: 1; | |
| 1953 | +--loadMoreButtonBorderColor: 0,0,0; | |
| 1954 | +--loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1955 | +--loadMoreButtonBorderColor-opacity: 1; | |
| 1956 | +--m_itemShadowOpacityAndColor: 0,0,0; | |
| 1957 | +--m_itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1958 | +--m_itemShadowOpacityAndColor-opacity: 1; | |
| 1959 | +--customButtonFontColor: 255,255,255; | |
| 1960 | +--customButtonFontColor-rgb: 255,255,255; | |
| 1961 | +--customButtonFontColor-opacity: 1; | |
| 1962 | +--imageLoadingColor: 238,238,238; | |
| 1963 | +--imageLoadingColor-rgb: 238,238,238; | |
| 1964 | +--imageLoadingColor-opacity: 1; | |
| 1965 | +--m_itemFontColorSlideshow: 0,0,0; | |
| 1966 | +--m_itemFontColorSlideshow-rgb: 0,0,0; | |
| 1967 | +--m_itemFontColorSlideshow-opacity: 1; | |
| 1968 | +--externalCustomButtonBorderColor: 0,0,0; | |
| 1969 | +--externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 1970 | +--externalCustomButtonBorderColor-opacity: 1; | |
| 1971 | +--itemShadowOpacityAndColor: 0,0,0; | |
| 1972 | +--itemShadowOpacityAndColor-rgb: 0,0,0; | |
| 1973 | +--itemShadowOpacityAndColor-opacity: 1; | |
| 1974 | +--externalCustomButtonColor: 26,106,255; | |
| 1975 | +--externalCustomButtonColor-rgb: 26,106,255; | |
| 1976 | +--externalCustomButtonColor-opacity: 1; | |
| 1977 | +--itemFontColorSlideshow: 0,0,0; | |
| 1978 | +--itemFontColorSlideshow-rgb: 0,0,0; | |
| 1979 | +--itemFontColorSlideshow-opacity: 1; | |
| 1980 | +--itemFontColor: 255,255,255; | |
| 1981 | +--itemFontColor-rgb: 255,255,255; | |
| 1982 | +--itemFontColor-opacity: 1; | |
| 1983 | +--m_oneColorAnimationColor: 255,255,255; | |
| 1984 | +--m_oneColorAnimationColor-rgb: 255,255,255; | |
| 1985 | +--m_oneColorAnimationColor-opacity: 1; | |
| 1986 | +--arrowsColor: 25,33,50; | |
| 1987 | +--arrowsColor-rgb: 25,33,50; | |
| 1988 | +--arrowsColor-opacity: 1; | |
| 1989 | +--m_itemIconColor: 255,255,255; | |
| 1990 | +--m_itemIconColor-rgb: 255,255,255; | |
| 1991 | +--m_itemIconColor-opacity: 1; | |
| 1992 | +--itemBorderColor: 0,0,0; | |
| 1993 | +--itemBorderColor-rgb: 0,0,0; | |
| 1994 | +--itemBorderColor-opacity: 1; | |
| 1995 | +--m_loadMoreButtonBorderColor: 0,0,0; | |
| 1996 | +--m_loadMoreButtonBorderColor-rgb: 0,0,0; | |
| 1997 | +--m_loadMoreButtonBorderColor-opacity: 1; | |
| 1998 | +--m_loadMoreButtonColor: 255,255,255; | |
| 1999 | +--m_loadMoreButtonColor-rgb: 255,255,255; | |
| 2000 | +--m_loadMoreButtonColor-opacity: 1; | |
| 2001 | +--backgroundGradientColor1: 255,255,255; | |
| 2002 | +--backgroundGradientColor1-rgb: 255,255,255; | |
| 2003 | +--backgroundGradientColor1-opacity: 1; | |
| 2004 | +--m_customButtonBorderColor: 255,255,255; | |
| 2005 | +--m_customButtonBorderColor-rgb: 255,255,255; | |
| 2006 | +--m_customButtonBorderColor-opacity: 1; | |
| 2007 | +--itemIconColorSlideshow: 0,0,0; | |
| 2008 | +--itemIconColorSlideshow-rgb: 0,0,0; | |
| 2009 | +--itemIconColorSlideshow-opacity: 1; | |
| 2010 | +--foreColor: 238,238,238; | |
| 2011 | +--foreColor-rgb: 238,238,238; | |
| 2012 | +--foreColor-opacity: 1; | |
| 2013 | +--m_itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2014 | +--m_itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2015 | +--m_itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2016 | +--bgColorExpand: 255,255,255; | |
| 2017 | +--bgColorExpand-rgb: 255,255,255; | |
| 2018 | +--bgColorExpand-opacity: 1; | |
| 2019 | +--textBoxBorderColor: 0,0,0; | |
| 2020 | +--textBoxBorderColor-rgb: 0,0,0; | |
| 2021 | +--textBoxBorderColor-opacity: 1; | |
| 2022 | +--customButtonFontColorForHover: 0,0,0; | |
| 2023 | +--customButtonFontColorForHover-rgb: 0,0,0; | |
| 2024 | +--customButtonFontColorForHover-opacity: 1; | |
| 2025 | +--m_loadMoreButtonFontColor: 0,0,0; | |
| 2026 | +--m_loadMoreButtonFontColor-rgb: 0,0,0; | |
| 2027 | +--m_loadMoreButtonFontColor-opacity: 1; | |
| 2028 | +--customButtonColor: 255,255,255; | |
| 2029 | +--customButtonColor-rgb: 255,255,255; | |
| 2030 | +--customButtonColor-opacity: 1; | |
| 2031 | +--descriptionColorExpand: 0,0,0; | |
| 2032 | +--descriptionColorExpand-rgb: 0,0,0; | |
| 2033 | +--descriptionColorExpand-opacity: 1; | |
| 2034 | +--actionsColorExpand: 0,0,0; | |
| 2035 | +--actionsColorExpand-rgb: 0,0,0; | |
| 2036 | +--actionsColorExpand-opacity: 1; | |
| 2037 | +--oneColorAnimationColor: 255,255,255; | |
| 2038 | +--oneColorAnimationColor-rgb: 255,255,255; | |
| 2039 | +--oneColorAnimationColor-opacity: 1; | |
| 2040 | +--backColor: 238,238,238; | |
| 2041 | +--backColor-rgb: 238,238,238; | |
| 2042 | +--backColor-opacity: 1; | |
| 2043 | +--itemDescriptionFontColorSlideshow: 0,0,0; | |
| 2044 | +--itemDescriptionFontColorSlideshow-rgb: 0,0,0; | |
| 2045 | +--itemDescriptionFontColorSlideshow-opacity: 1; | |
| 2046 | +--m_externalCustomButtonBorderColor: 0,0,0; | |
| 2047 | +--m_externalCustomButtonBorderColor-rgb: 0,0,0; | |
| 2048 | +--m_externalCustomButtonBorderColor-opacity: 1; | |
| 2049 | +--te-background-color-picker: 149,185,255; | |
| 2050 | +--te-background-color-picker-rgb: 149,185,255; | |
| 2051 | +--te-background-color-picker-opacity: 1; | |
| 2052 | +--m_customButtonColor: 255,255,255; | |
| 2053 | +--m_customButtonColor-rgb: 255,255,255; | |
| 2054 | +--m_customButtonColor-opacity: 1; | |
| 2055 | +--overlayGradientColor2: 0,0,0; | |
| 2056 | +--overlayGradientColor2-rgb: 0,0,0; | |
| 2057 | +--overlayGradientColor2-opacity: 1; | |
| 2058 | +--m_overlayGradientColor2: 0,0,0; | |
| 2059 | +--m_overlayGradientColor2-rgb: 0,0,0; | |
| 2060 | +--m_overlayGradientColor2-opacity: 1; | |
| 2061 | +--overlayGradientColor1: 0,0,0; | |
| 2062 | +--overlayGradientColor1-rgb: 0,0,0; | |
| 2063 | +--overlayGradientColor1-opacity: 1; | |
| 2064 | +--backgroundColor: 102,102,102; | |
| 2065 | +--backgroundColor-rgb: 102,102,102; | |
| 2066 | +--backgroundColor-opacity: 1; | |
| 2067 | +--textColor: 0,0,0; | |
| 2068 | +--textColor-rgb: 0,0,0; | |
| 2069 | +--textColor-opacity: 1; | |
| 2070 | +--m_customButtonFontForHover: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2071 | +--m_customButtonFontForHover-style: normal; | |
| 2072 | +--m_customButtonFontForHover-variant: normal; | |
| 2073 | +--m_customButtonFontForHover-weight: normal; | |
| 2074 | +--m_customButtonFontForHover-size: 15px; | |
| 2075 | +--m_customButtonFontForHover-line-height: 18px; | |
| 2076 | +--m_customButtonFontForHover-family: proxima-n-w01-reg,sans-serif; | |
| 2077 | +--m_customButtonFontForHover-text-decoration: none; | |
| 2078 | +--m_customButtonFont: normal normal normal 15px/18px proxima-n-w01-reg,sans-serif; | |
| 2079 | +--m_customButtonFont-style: normal; | |
| 2080 | +--m_customButtonFont-variant: normal; | |
| 2081 | +--m_customButtonFont-weight: normal; | |
| 2082 | +--m_customButtonFont-size: 15px; | |
| 2083 | +--m_customButtonFont-line-height: 18px; | |
| 2084 | +--m_customButtonFont-family: proxima-n-w01-reg,sans-serif; | |
| 2085 | +--m_customButtonFont-text-decoration: none; | |
| 2086 | +--m_itemFont: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2087 | +--m_itemFont-style: normal; | |
| 2088 | +--m_itemFont-variant: normal; | |
| 2089 | +--m_itemFont-weight: normal; | |
| 2090 | +--m_itemFont-size: 22px; | |
| 2091 | +--m_itemFont-line-height: 27px; | |
| 2092 | +--m_itemFont-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2093 | +--m_itemFont-text-decoration: none; | |
| 2094 | +--m_itemFontSlideshow: normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2095 | +--m_itemFontSlideshow-style: normal; | |
| 2096 | +--m_itemFontSlideshow-variant: normal; | |
| 2097 | +--m_itemFontSlideshow-weight: normal; | |
| 2098 | +--m_itemFontSlideshow-size: 22px; | |
| 2099 | +--m_itemFontSlideshow-line-height: 27px; | |
| 2100 | +--m_itemFontSlideshow-family: madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif; | |
| 2101 | +--m_itemFontSlideshow-text-decoration: none; | |
| 2102 | +--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2103 | +--customButtonFontForHover-style: normal; | |
| 2104 | +--customButtonFontForHover-variant: normal; | |
| 2105 | +--customButtonFontForHover-weight: normal; | |
| 2106 | +--customButtonFontForHover-size: 16px; | |
| 2107 | +--customButtonFontForHover-line-height: 1.6em; | |
| 2108 | +--customButtonFontForHover-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2109 | +--customButtonFontForHover-text-decoration: none; | |
| 2110 | +--text-editor-font: normal normal normal 40px/50px avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2111 | +--text-editor-font-style: normal; | |
| 2112 | +--text-editor-font-variant: normal; | |
| 2113 | +--text-editor-font-weight: normal; | |
| 2114 | +--text-editor-font-size: 40px; | |
| 2115 | +--text-editor-font-line-height: 50px; | |
| 2116 | +--text-editor-font-family: avenir-lt-w01_85-heavy1475544,sans-serif; | |
| 2117 | +--text-editor-font-text-decoration: none; | |
| 2118 | +--m_loadMoreButtonFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2119 | +--m_loadMoreButtonFont-style: normal; | |
| 2120 | +--m_loadMoreButtonFont-variant: normal; | |
| 2121 | +--m_loadMoreButtonFont-weight: normal; | |
| 2122 | +--m_loadMoreButtonFont-size: 15px; | |
| 2123 | +--m_loadMoreButtonFont-line-height: 18px; | |
| 2124 | +--m_loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2125 | +--m_loadMoreButtonFont-text-decoration: none; | |
| 2126 | +--itemDescriptionFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2127 | +--itemDescriptionFont-style: normal; | |
| 2128 | +--itemDescriptionFont-variant: normal; | |
| 2129 | +--itemDescriptionFont-weight: normal; | |
| 2130 | +--itemDescriptionFont-size: 16px; | |
| 2131 | +--itemDescriptionFont-line-height: 1.6em; | |
| 2132 | +--itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2133 | +--itemDescriptionFont-text-decoration: none; | |
| 2134 | +--text-editor-font-1499774301866: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2135 | +--text-editor-font-1499774301866-style: normal; | |
| 2136 | +--text-editor-font-1499774301866-variant: normal; | |
| 2137 | +--text-editor-font-1499774301866-weight: normal; | |
| 2138 | +--text-editor-font-1499774301866-size: 40px; | |
| 2139 | +--text-editor-font-1499774301866-line-height: 50px; | |
| 2140 | +--text-editor-font-1499774301866-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2141 | +--text-editor-font-1499774301866-text-decoration: none; | |
| 2142 | +--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2143 | +--customButtonFont-style: normal; | |
| 2144 | +--customButtonFont-variant: normal; | |
| 2145 | +--customButtonFont-weight: normal; | |
| 2146 | +--customButtonFont-size: 16px; | |
| 2147 | +--customButtonFont-line-height: 1.6em; | |
| 2148 | +--customButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2149 | +--customButtonFont-text-decoration: none; | |
| 2150 | +--text-editor-font-1499927482082: normal normal normal 40px/50px avenir-lt-w01_35-light1475496,sans-serif; | |
| 2151 | +--text-editor-font-1499927482082-style: normal; | |
| 2152 | +--text-editor-font-1499927482082-variant: normal; | |
| 2153 | +--text-editor-font-1499927482082-weight: normal; | |
| 2154 | +--text-editor-font-1499927482082-size: 40px; | |
| 2155 | +--text-editor-font-1499927482082-line-height: 50px; | |
| 2156 | +--text-editor-font-1499927482082-family: avenir-lt-w01_35-light1475496,sans-serif; | |
| 2157 | +--text-editor-font-1499927482082-text-decoration: none; | |
| 2158 | +--m_itemDescriptionFont: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2159 | +--m_itemDescriptionFont-style: normal; | |
| 2160 | +--m_itemDescriptionFont-variant: normal; | |
| 2161 | +--m_itemDescriptionFont-weight: normal; | |
| 2162 | +--m_itemDescriptionFont-size: 15px; | |
| 2163 | +--m_itemDescriptionFont-line-height: 18px; | |
| 2164 | +--m_itemDescriptionFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2165 | +--m_itemDescriptionFont-text-decoration: none; | |
| 2166 | +--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2167 | +--loadMoreButtonFont-style: normal; | |
| 2168 | +--loadMoreButtonFont-variant: normal; | |
| 2169 | +--loadMoreButtonFont-weight: normal; | |
| 2170 | +--loadMoreButtonFont-size: 16px; | |
| 2171 | +--loadMoreButtonFont-line-height: 1.6em; | |
| 2172 | +--loadMoreButtonFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2173 | +--loadMoreButtonFont-text-decoration: none; | |
| 2174 | +--itemFontSlideshow: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2175 | +--itemFontSlideshow-style: normal; | |
| 2176 | +--itemFontSlideshow-variant: normal; | |
| 2177 | +--itemFontSlideshow-weight: normal; | |
| 2178 | +--itemFontSlideshow-size: 19px; | |
| 2179 | +--itemFontSlideshow-line-height: 1.4em; | |
| 2180 | +--itemFontSlideshow-family: montserrat,sans-serif; | |
| 2181 | +--itemFontSlideshow-text-decoration: none; | |
| 2182 | +--titleFontExpand: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2183 | +--titleFontExpand-style: normal; | |
| 2184 | +--titleFontExpand-variant: normal; | |
| 2185 | +--titleFontExpand-weight: normal; | |
| 2186 | +--titleFontExpand-size: 19px; | |
| 2187 | +--titleFontExpand-line-height: 1.4em; | |
| 2188 | +--titleFontExpand-family: montserrat,sans-serif; | |
| 2189 | +--titleFontExpand-text-decoration: none; | |
| 2190 | +--m_itemDescriptionFontSlideshow: normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2191 | +--m_itemDescriptionFontSlideshow-style: normal; | |
| 2192 | +--m_itemDescriptionFontSlideshow-variant: normal; | |
| 2193 | +--m_itemDescriptionFontSlideshow-weight: normal; | |
| 2194 | +--m_itemDescriptionFontSlideshow-size: 15px; | |
| 2195 | +--m_itemDescriptionFontSlideshow-line-height: 18px; | |
| 2196 | +--m_itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2197 | +--m_itemDescriptionFontSlideshow-text-decoration: none; | |
| 2198 | +--itemDescriptionFontSlideshow: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2199 | +--itemDescriptionFontSlideshow-style: normal; | |
| 2200 | +--itemDescriptionFontSlideshow-variant: normal; | |
| 2201 | +--itemDescriptionFontSlideshow-weight: normal; | |
| 2202 | +--itemDescriptionFontSlideshow-size: 16px; | |
| 2203 | +--itemDescriptionFontSlideshow-line-height: 1.6em; | |
| 2204 | +--itemDescriptionFontSlideshow-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2205 | +--itemDescriptionFontSlideshow-text-decoration: none; | |
| 2206 | +--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2207 | +--descriptionFontExpand-style: normal; | |
| 2208 | +--descriptionFontExpand-variant: normal; | |
| 2209 | +--descriptionFontExpand-weight: normal; | |
| 2210 | +--descriptionFontExpand-size: 16px; | |
| 2211 | +--descriptionFontExpand-line-height: 1.6em; | |
| 2212 | +--descriptionFontExpand-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2213 | +--descriptionFontExpand-text-decoration: none; | |
| 2214 | +--itemFont: normal normal normal 19px/1.4em montserrat,sans-serif; | |
| 2215 | +--itemFont-style: normal; | |
| 2216 | +--itemFont-variant: normal; | |
| 2217 | +--itemFont-weight: normal; | |
| 2218 | +--itemFont-size: 19px; | |
| 2219 | +--itemFont-line-height: 1.4em; | |
| 2220 | +--itemFont-family: montserrat,sans-serif; | |
| 2221 | +--itemFont-text-decoration: none; | |
| 2222 | +--textFont-style: normal; | |
| 2223 | +--textFont-variant: normal; | |
| 2224 | +--textFont-weight: normal; | |
| 2225 | +--textFont-size: 20px; | |
| 2226 | +--textFont-line-height: 1.4em; | |
| 2227 | +--textFont-family: madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif; | |
| 2228 | +--textFont-text-decoration: none; | |
| 2229 | + }</style><style> | |
| 2230 | + | |
| 2231 | + .s__3mb942.oUUTDbO--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2232 | + | |
| 2233 | + .sfxZxsX{--wbu-color-blue-0:#0F2CCF;--wbu-color-blue-100:#2F5DFF;--wbu-color-blue-200:#597DFF;--wbu-color-blue-300:#ACBEFF;--wbu-color-blue-400:#D5DFFF;--wbu-color-blue-500:#EAEFFF;--wbu-color-blue-600:#F5F7FF;--wbu-color-black-0:#151414;--wbu-color-black-100:#383838;--wbu-color-black-200:#525150;--wbu-color-black-300:#767574;--wbu-color-black-400:#A8A6A5;--wbu-color-black-500:#E0DFDF;--wbu-color-black-600:#F1F0EF;--wbu-color-red-0:#9C2426;--wbu-color-red-100:#DF3336;--wbu-color-red-200:#E55C5E;--wbu-color-red-300:#ED8F90;--wbu-color-red-400:#F4B8B9;--wbu-color-red-500:#F9D6D7;--wbu-color-red-600:#FCEBEB;--wbu-color-green-0:#0D4F3D;--wbu-color-green-100:#4B916D;--wbu-color-green-200:#97C693;--wbu-color-green-300:#BDE2A7;--wbu-color-green-400:#DAF3C0;--wbu-color-green-500:#EFFAE5;--wbu-color-green-600:#F1F5ED;--wbu-color-yellow-0:#D49341;--wbu-color-yellow-100:#F9AD4D;--wbu-color-yellow-200:#FABD71;--wbu-color-yellow-300:#FCD29D;--wbu-color-yellow-400:#FDEAD2;--wbu-color-yellow-500:#FEF3E5;--wbu-color-yellow-600:#FEF6ED;--wbu-color-orange-0:#AE3E09;--wbu-color-orange-100:#FF8044;--wbu-color-orange-200:#FE9361;--wbu-color-orange-300:#FDA77F;--wbu-color-orange-400:#FBCFBB;--wbu-color-orange-500:#FBE3D9;--wbu-color-orange-600:#FDF1EC;--wbu-color-purple-0:#5000AA;--wbu-color-purple-100:#7200F3;--wbu-color-purple-200:#8B2DF5;--wbu-color-purple-300:#BE89F9;--wbu-color-purple-400:#D7B7FB;--wbu-color-purple-500:#F1E5FE;--wbu-color-purple-600:#F8F2FF;--wbu-color-ai-0:#4D3DD0;--wbu-color-ai-100:#5A48F5;--wbu-color-ai-200:#7B6DF7;--wbu-color-ai-300:#A59BFA;--wbu-color-ai-400:#D6D1FC;--wbu-color-ai-500:#E7E4FE;--wbu-color-ai-600:#EEECFE;--wbu-heading-font-stack:'Madefor Display', 'Helvetica Neue', Helvetica, Arial, '\E3\192\A1\E3\201A\A4\E3\192\AA\E3\201A\AA', 'meiryo', '\E3\192\2019\E3\192\A9\E3\201A\AE\E3\192\17D\E8\A7\2019\E3\201A\B4 pro w3', 'hiragino kaku gothic pro', sans-serif;--wbu-text-tiny-size:10px;--wbu-text-tiny-line-height:12px;--wbu-text-small-size:12px;--wbu-text-small-line-height:12px;--wbu-text-medium-size:14px;--wbu-text-medium-line-height:16px;--wbu-text-large-size:16px;--wbu-text-large-line-height:18px;--wbu-heading-h1-font-size:32px;--wbu-heading-h1-line-height:40px;--wbu-heading-h1-letter-spacing:-0.5px;--wbu-heading-h1-font-weight:400;--wbu-heading-h2-font-size:24px;--wbu-heading-h2-line-height:32px;--wbu-heading-h2-letter-spacing:-0.5px;--wbu-heading-h2-font-weight:500;--wbu-heading-h3-font-size:16px;--wbu-heading-h3-line-height:24px;--wbu-heading-h3-letter-spacing:-0.5px;--wbu-heading-h3-font-weight:700;--wbu-heading-h4-font-size:14px;--wbu-heading-h4-line-height:18px;--wbu-heading-h4-letter-spacing:0px;--wbu-heading-h4-font-weight:500;--wbu-heading-h5-font-size:12px;--wbu-heading-h5-line-height:18px;--wbu-heading-h5-letter-spacing:0px;--wbu-heading-h5-font-weight:600} | |
| 2234 | + | |
| 2235 | + | |
| 2236 | + .sDDrUS7.oINNVeg--madefor{--wbu-font-stack:var(--wix-font-stack);--wbu-font-weight-regular:var(--wix-font-weight-regular);--wbu-font-weight-medium:var(--wix-font-weight-medium);--wbu-font-weight-bold:var(--wix-font-weight-bold)} | |
| 2237 | + | |
| 2238 | + | |
| 2239 | + | |
| 2240 | + | |
| 2241 | + | |
| 2242 | + | |
| 2243 | + | |
| 2244 | + | |
| 2245 | + | |
| 2246 | +/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2247 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/GalleryWrapperWixStyles.scss ***! | |
| 2248 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .nav-arrows-container .custom-nav-arrows svg{width:100%;height:100%}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2249 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/dynamic/FullscreenWrapperWixStyles.scss ***! | |
| 2250 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ | |
| 2251 | + | |
| 2252 | + .fullscreen-focus-lock { | |
| 2253 | + height: 100%; | |
| 2254 | +} | |
| 2255 | + | |
| 2256 | +/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2257 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/GalleryWrapper.global.scss ***! | |
| 2258 | + \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-gallery-stop-scroll-for-fullscreen{overflow-y:hidden}div.pro-gallery-parent-container .show-more-container i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container button.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more:hover{opacity:1}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{border-style:solid}div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more:hover{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{background:none !important;font-size:26px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{font-size:15px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i{font-size:26px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{z-index:12} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{z-index:11} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a:hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):hover, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a:hover{opacity:.7} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{font-size:22px} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{opacity:1;background:rgba(0,0,0,0);border-style:solid} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{opacity:.6} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{opacity:1} .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description, .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{font-size:15px}/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2259 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/FullscreenWrapper.global.scss ***! | |
| 2260 | + \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after, .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{opacity:.3} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-cart-icon{background:inherit !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love-store.pro-gallery-loved{color:#e03939 !important} .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon.fullscreen-social-love.pro-gallery-loved{color:#e03939 !important}/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2261 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/SocialShareWrapper.global.scss ***! | |
| 2262 | + \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .social-share-wrapper{position:fixed;top:0;bottom:0;left:0;right:0;z-index:200005} .social-share-wrapper .mobile-social-share-screen{position:absolute;top:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0)} .social-share-wrapper .mobile-social-share-screen.mobile-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:background-color .3s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-background{height:calc(100% - 150px);touch-action:none} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab{position:absolute;bottom:0px;width:100%;height:150px;box-sizing:border-box;background-color:#fff;margin-bottom:-150px;display:flex;justify-content:center;align-items:center;transition:all .4s ease} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab.mobile-social-share-tab-visible{margin-bottom:0px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:220px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-items-list .social-share-icon{height:16px;width:16px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container{height:32px;margin-top:20px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-input{width:200px;font-size:11px;padding:2px 4px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button{width:40px} .social-share-wrapper .mobile-social-share-screen .mobile-social-share-tab .social-share-items-container .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{height:16px;width:16px} .social-share-wrapper .desktop-social-share-screen{position:fixed;top:0;left:0;height:100%;width:100%;z-index:-1;background-color:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center} .social-share-wrapper .desktop-social-share-screen.desktop-social-share-screen-visible{z-index:200005;background-color:rgba(0,0,0,.6);transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-background{position:fixed;height:100%;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup{position:relative;width:580px;height:250px;box-sizing:border-box;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:-100px;opacity:0;transition:all .4s ease} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup.desktop-social-share-popup-visible{margin-bottom:0px;opacity:1} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button{position:absolute;top:24px;right:24px;cursor:pointer} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .desktop-social-share-popup-close-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list{display:flex;justify-content:space-between;width:280px} .social-share-wrapper .desktop-social-share-screen .desktop-social-share-popup .social-share-items-container .social-share-items-list .social-share-icon{height:24px;width:24px;transition:color .2s ease} .social-share-wrapper .social-share-item{position:relative} .social-share-wrapper .social-share-item .social-share-button{opacity:1;transition:opacity .2s ease;cursor:pointer} .social-share-wrapper .social-share-item .social-share-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-item .social-share-button:hover{opacity:.65} .social-share-wrapper .social-share-item .social-share-button:active{opacity:1} .social-share-wrapper .social-share-copylink-container{display:flex;margin-top:25px;height:40px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-input{border:1px solid #000;padding:2px 8px;height:100%;width:260px} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button{width:50px;height:100%;background-color:#000;color:#fff;cursor:pointer;transition:background-color .1s ease} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:focus{border-radius:7px;box-shadow:inset 0 0 1px 3px #116dff} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button:hover{background-color:rgba(0,0,0,.65)} .social-share-wrapper .social-share-copylink-container .social-share-copylink-button .social-share-copylink-icon{margin-top:2px}/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2263 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../../core-packages/pro-gallery-old/dist/statics/main.css ***! | |
| 2264 | + \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover) .gallery-item-content .gallery-item{transition:opacity .4s ease !important}div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.main-color-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{opacity:0}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover) .hover-info-element{transition:transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(1.1)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(1.11)}div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover) .hover-info-element,div.pro-gallery .gallery-item-container.zoom-in-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover) .hover-info-element{transform:scale(0.9009)}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .4s linear !important}div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover).simulate-hover .gallery-item-content .gallery-item,div.pro-gallery .gallery-item-container.blur-on-hover:not(.hide-hover):hover .gallery-item-content .gallery-item{filter:blur(6px)}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.grayscale-on-hover:not(.hide-hover):hover .gallery-item-content{filter:grayscale(1)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover){transition:background-color .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover) .gallery-item-hover:not(.hide-hover){transition:transform .4s ease !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover{background-color:rgba(0,0,0,0) !important}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-content{transform:scale(0.985)}div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover).simulate-hover .gallery-item-hover:not(.hide-hover),div.pro-gallery .gallery-item-container.shrink-on-hover:not(.hide-hover):hover .gallery-item-hover:not(.hide-hover){transform:scale(0.985)}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover) .gallery-item-content{transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover).simulate-hover .gallery-item-content,div.pro-gallery .gallery-item-container.invert-on-hover:not(.hide-hover):hover .gallery-item-content{filter:invert(1)}div.pro-gallery .gallery-item-container.color-in-on-hover .gallery-item-content{filter:grayscale(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.color-in-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.color-in-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:grayscale(0)}div.pro-gallery .gallery-item-container.darkened-on-hover .gallery-item-content{filter:brightness(1);transition:filter .6s ease !important}div.pro-gallery .gallery-item-container.darkened-on-hover.simulate-hover:not(.hide-hover) .gallery-item-content,div.pro-gallery .gallery-item-container.darkened-on-hover:hover:not(.hide-hover) .gallery-item-content{filter:brightness(0.7)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover .gallery-item-hover-inner{opacity:0}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover):before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover) .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover):hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container:not(.invert-hover).hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover{transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover:before{opacity:1;background:rgba(8,8,8,.75)}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner{opacity:1}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover .info-member:not(.hidden){opacity:1 !important}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover){transition:none}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover):before{opacity:0}div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover .gallery-item-hover.force-hover .info-member:not(.hidden),div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover:hover .gallery-item-hover:not(.hide-hover) .info-member:not(.hidden){opacity:0 !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover{transition:filter .4s ease,opacity .4s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover:before{transition:filter .4s ease,opacity .4s ease !important;filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-fade-in:hover .gallery-item-hover:not(.hide-hover):before{filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover:before{transition:transform .4s ease,filter .2s ease,opacity .2s ease !important;transform:scale(1);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover .info-member:not(.hidden){transition:opacity .2s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-expand:hover .gallery-item-hover:not(.hide-hover):before{transform:scale(0.9);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-up:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(0);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-right:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(-100%);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateX(100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-left:hover .gallery-item-hover:not(.hide-hover):before{transform:translateX(0);filter:opacity(0)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover:before{transition:transform .4s cubic-bezier(0.3, 0.13, 0.12, 1),filter .5s ease,opacity .5s ease !important;transform:translateY(-100%);filter:opacity(1)}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .gallery-item-hover-inner,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover .info-member:not(.hidden){transition:opacity .4s ease}div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down .gallery-item-hover.force-hover:before,div.pro-gallery .gallery-item-container.invert-hover.hover-animation-slide-down:hover .gallery-item-hover:not(.hide-hover):before{transform:translateY(0);filter:opacity(0)} .animation-slide{transition:width .4s ease,height .4s ease,top .4s ease,left .4s ease} .item-with-secondary-media-container .secondary-media-item.hide{opacity:0} .item-with-secondary-media-container .secondary-media-item.show{opacity:1} *[data-collapsed=true] .pro-gallery-parent-container .gallery-item, *[data-hidden=true] .pro-gallery-parent-container .gallery-item{background-image:none !important}html.pro-gallery{width:100%;height:auto}body.pro-gallery{transition:opacity 2s ease} #gallery-loader{position:fixed;top:50%} .show-more-container{text-align:center;line-height:138px} .show-more-container i.show-more{color:#5d5d61;font-size:40px;cursor:pointer;margin-top:-3px} .show-more-container button.show-more{display:inline-block;padding:11px 29px;border-radius:0;border:2px solid #5d5d61;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:12px;color:#5d5d61;background:rgba(0,0,0,0);cursor:pointer} .show-more-container button.show-more:hover{background:rgba(0,0,0,.1)} .more-items-loader{display:block;width:100%;text-align:center;line-height:50px;font-size:30px;color:#116dff} .version-header{color:#e03939;text-align:left;font-family:"Consolas",monospace;font-size:13px;position:absolute;top:0;left:0;width:320px;height:100px;line-height:30px;background:hsla(0,0%,100%,.8);z-index:100} .auto-slideshow-button{margin-top:19px;padding:5px;height:28px;width:20px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9} .auto-slideshow-counter{margin-top:24px;left:auto;z-index:1;position:absolute;display:flex;text-align:center;opacity:.9;font-size:15px;line-height:normal}@keyframes fadeIn{from{opacity:0}to{opacity:1}} .mouse-cursor{display:flex;width:100%;position:absolute} .nav-arrows-container{left:auto;position:absolute;display:flex;text-align:center;cursor:pointer;opacity:.9;align-items:center;background:rgba(0,0,0,0);border:none;justify-content:center} .nav-arrows-container.follow-mouse-cursor{position:relative;cursor:none} .nav-arrows-container:hover{opacity:1} .nav-arrows-container.drop-shadow svg{filter:drop-shadow(0px 1px 0.15px #B2B2B2)} .nav-arrows-container .slideshow-arrow{flex-shrink:0} .nav-arrows-container:focus:not(:focus-visible){--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important} .arrow-portal-container span{animation:fadeIn .1s ease-in-out;position:fixed;transition:top 50ms,left 50ms;display:flex;align-items:center;justify-content:center}div.gallery-slideshow div.pro-gallery,div.gallery-slideshow .gallery-column{box-sizing:content-box !important}div.gallery-slideshow .gallery-group,div.gallery-slideshow .gallery-item-container,div.gallery-slideshow .gallery-item-wrapper{overflow:visible !important}div.gallery-slideshow.streched .gallery-slideshow-info{padding-left:50px !important;padding-right:50px !important}@media(max-width: 500px){div.gallery-slideshow div.pro-gallery .gallery-slideshow-info{padding-left:20px;padding-right:20px}}div.gallery-slideshow div.pro-gallery .gallery-item-container .gallery-slideshow-info{position:absolute;padding-top:0px;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15} .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 60px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px 10px 50px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px}div.pro-gallery{width:100%;height:100%;overflow:hidden;backface-visibility:hidden;position:relative}div.pro-gallery .gallery-column{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden}div.pro-gallery .gallery-column .gallery-left-padding{display:inline-block;height:100%}div.pro-gallery .gallery-column .gallery-top-padding{display:block;width:100%}div.pro-gallery .gallery-group{float:left;overflow:hidden;position:relative;transform-style:preserve-3d;backface-visibility:hidden;box-sizing:border-box;padding:0;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px}div.pro-gallery .gallery-group.debug.gallery-group-gone{background:#cdcdd0}div.pro-gallery .gallery-group.debug.gallery-group-visible{background:#c1f0c1}div.pro-gallery .gallery-group.debug.gallery-group-hidden{background:#f99}div.pro-gallery .gallery-item-container{position:absolute;display:inline-block;vertical-align:top;border:none;padding:0;border-radius:0;box-sizing:border-box;overflow:hidden;transform-style:preserve-3d;backface-visibility:hidden;outline:none;text-decoration:none;color:inherit;will-change:top,left,width,height;box-sizing:border-box;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:11px;cursor:default;scroll-snap-align:center}div.pro-gallery .gallery-item-container .item-action{width:1px;height:1px;overflow:hidden;position:absolute;pointer-events:none;z-index:-1}div.pro-gallery .gallery-item-container .item-action:focus{--focus-ring-box-shadow: none !important;outline:none !important;box-shadow:none !important}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info{cursor:pointer}div.pro-gallery .gallery-item-container:hover .gallery-item-common-info button{text-decoration:underline;cursor:pointer}div.pro-gallery .gallery-item-container.visible{transform:translate3d(0, 0, 0)}div.pro-gallery .gallery-item-container.clickable{cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper{position:relative;width:100%;height:100%;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item{position:absolute;z-index:1;width:100%;height:100%;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .gallery-item{-o-object-fit:cover;object-fit:cover}div.pro-gallery .gallery-item-container .gallery-item-wrapper .item-with-secondary-media-container .secondary-media-item .text-item>div{width:100% !important;height:100% !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper.transparent,div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit{background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-preload{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper.cube-type-fit .gallery-item{background:rgba(0,0,0,0);-o-object-fit:contain;object-fit:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;overflow:hidden;border-radius:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item{box-sizing:border-box;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;white-space:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item .te-pro-gallery-text-item{line-height:normal !important;letter-spacing:normal !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item>div{background:initial !important;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item p,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item div,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h3,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item h6,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.text-item i{margin:0;padding:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item .pro-circle-preloader{top:50%;left:50%;height:30px;width:15px;z-index:-1;opacity:.4}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item img.gallery--placeholder-item{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded{background-color:rgba(0,0,0,0);opacity:1 !important;animation:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded.image-item:after{display:none !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-loaded~.pro-circle-preloader{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.error{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded{background-size:cover;background-repeat:no-repeat;background-position:center center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-preloaded.grid-fit{background-size:contain}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video{overflow:hidden;text-align:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video iframe{left:0;top:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playing i{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video.playedOnce~.image-item{pointer-events:none;opacity:0;transition:opacity .2s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i{display:inline-block;text-rendering:auto;/*! autoprefixer: ignore next */-webkit-font-smoothing:antialiased;position:absolute;z-index:11;top:50%;left:50%;height:60px;text-align:center;margin:-30px 0 0 -30px;background:#080808;color:#fff;border-radius:50px;opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle{opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button.play-background,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-triangle,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.play-background{font-size:26px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:hover{opacity:.9}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video button:before,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i:before{font-size:2.3em;opacity:1}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info{position:absolute;bottom:-220px;height:220px;width:100%;box-sizing:border-box;display:flex;z-index:15}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-info>div{height:100%;width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{white-space:initial;position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;border-radius:0;z-index:15;overflow:hidden}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-hover-inner{height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover.no-hover-bg:before{opacity:0 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;margin:0;box-sizing:border-box;z-index:-1}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery.one-row{white-space:nowrap;float:left}div.pro-gallery.one-row .gallery-column{width:100%;float:none;white-space:nowrap}div.pro-gallery.one-row .gallery-column .gallery-group{display:inline-block;float:none}div.pro-gallery.one-row.slider .gallery-column{overflow-x:scroll}div.pro-gallery.one-row.slider .gallery-column.scroll-snap{-ms-scroll-snap-type:x mandatory;scroll-snap-type:x mandatory}div.pro-gallery.one-row .gallery-horizontal-scroll-inner{position:relative;will-change:transform}div.pro-gallery.thumbnails-gallery{overflow:hidden;float:left}div.pro-gallery.thumbnails-gallery .galleryColumn{position:relative;overflow:visible}div.pro-gallery.thumbnails-gallery .thumbnailItem{position:absolute;background-color:#fff;background-size:cover;background-position:center;overflow-y:inherit;border-radius:0px;cursor:pointer}div.pro-gallery.thumbnails-gallery .thumbnailItem.pro-gallery-highlight::after{content:"";display:block;height:100%;position:absolute;top:0;left:0;width:100%;background-color:hsla(0,0%,100%,.6)}@media(max-width: 500px){div.pro-gallery.thumbnails-gallery{overflow:visible}}div.pro-gallery *:focus{box-shadow:none}div.pro-gallery.accessible i:focus,div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus{box-shadow:inset 0 0 0 1px #fff,inset 0 0 1px 4px #116dff}div.pro-gallery.accessible i:focus:not(:focus-visible),div.pro-gallery.accessible button:not(.nav-arrows-container,.has-custom-focus):focus:not(:focus-visible){box-shadow:none !important}div.pro-gallery.accessible .gallery-item-hover i:focus,div.pro-gallery.accessible .gallery-item-hover button:focus{box-shadow:none}div.pro-gallery.accessible .gallery-item-container:has(.item-action:focus)::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit;z-index:15}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::before{box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,inset 0 0 10px -5px #116dff}div.pro-gallery.accessible .pro-gallery-thumbnails-highlighted::after{content:" ";width:100%;height:100%;position:absolute;top:0;left:0;box-shadow:inset 0 0 1px 2px #116dff,inset 0 0 7px 0 #fff,0 0 10px -5px #116dff;pointer-events:none;border-radius:inherit}div.pro-gallery .hide-scrollbars{-ms-overflow-style:none;overflow:-moz-scrollbars-none;scrollbar-width:none}div.pro-gallery .hide-scrollbars::-webkit-scrollbar,div.pro-gallery .hide-scrollbars ::-webkit-scrollbar{width:0 !important;height:0 !important}div.pro-gallery .rtl{direction:rtl}div.pro-gallery .ltr{direction:ltr} .sr-only.out-of-view-component{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip-path:circle(0%);border:0} .screen-logs{word-wrap:break-word;background:#fff;width:280px;font-size:10px} .fade{display:block;transition:opacity 600ms ease} .fade-visible{opacity:1} .fade-hidden{opacity:0} .deck-before{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(-100%)} .deck-before-rtl{display:block;z-index:1;transition:transform 600ms ease;transform:translateX(100%)} .deck-current{display:block;z-index:0;transition:transform 600ms ease;transform:translateX(0)} .deck-current .override{transition:transform 600ms ease,opacity .1s ease 200ms !important} .deck-after{display:block;transition:opacity .2s ease 600ms;z-index:-1;opacity:0} .deck-after .override{transition:opacity .1s ease 0s !important} .disabled-transition{transition:none !important}@keyframes changing_background{0%{background-color:rgba(241,241,241,.2)}50%{background-color:rgba(241,241,241,.8)}100%{background-color:rgba(241,241,241,.2)}} .pro-gallery-parent-container.gallery-slideshow [data-hook=group-view]::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .pro-gallery-parent-container:not(.gallery-slideshow) [data-hook=group-view] .item-link-wrapper::before{content:"";position:absolute;scroll-snap-align:center;top:var(--group-top);left:var(--group-left);width:var(--group-width);right:var(--group-right);height:1px;pointer-events:none} .gallery-item-container{scroll-snap-align:none !important} .gallery-slideshow .gallery-item-container:not(.clickable) a{cursor:default}/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2265 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGallery.global.scss ***! | |
| 2266 | + \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2267 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!../../pro-gallery-info-element/dist/statics/app.css ***! | |
| 2268 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2269 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[1]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/infoElement.scss ***! | |
| 2270 | + \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .slideshow-info-element-inner .info-element-text>div{width:100%} .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info{box-sizing:border-box;padding-top:24px;height:100%;width:100%;padding-top:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-item-common-info.gallery-item-bottom-info .info-element-text>div{width:100%} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-description>span{white-space:normal} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-member.hide{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.populated-item{margin-bottom:24px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center{justify-content:center} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-item-common-info.gallery-item-bottom-info .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-item-common-info.gallery-item-bottom-info .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner{box-sizing:border-box;padding-top:24px;height:100%;width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text{flex-grow:1;padding:0;margin-bottom:25px;display:flex;flex-direction:column} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text>div{width:100%} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-title{white-space:normal;font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:32px;font-size:21px;height:auto;color:#2b5672;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description{font-family:"HelveticaNeueW01-Thin","HelveticaNeueW02-Thin","HelveticaNeueW10-35Thin",sans-serif;line-height:25px;font-size:15px;height:auto;color:#2b5672;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;transition:opacity .4s ease;white-space:nowrap;text-overflow:ellipsis} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-description>span{white-space:normal} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-member.hide{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button .overlay{display:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover{opacity:1 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-text .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:100%;position:absolute;top:0;left:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social{height:auto;position:static;display:flex;flex-direction:row;margin:0;overflow:visible;z-index:16;transition:opacity .4s ease} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.populated-item{margin-bottom:24px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center{justify-content:center} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button{margin:0 15px;display:inline-flex;font-size:19px;color:#2b5672;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-icon{fill:#2b5672} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love{font-size:15px;border:none;background:rgba(0,0,0,0);padding:0} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love i{float:left;display:inline-block;border:none;background:rgba(0,0,0,0);text-decoration:none;cursor:pointer} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{color:#2b5672;font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important;display:inline-block;height:30px;max-width:300px;z-index:16;font-size:12px;transform:none !important} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box.opened{width:210px !important;outline:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i{display:inline-block;font-size:15px;color:#2b5672;cursor:pointer;width:30px;height:30px;line-height:14px;text-align:center;margin:0 6px;float:left;text-decoration:none;background:rgba(0,0,0,0);border:none} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button:hover, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i:hover{opacity:.7} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.twitter-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.twitter-share{font-size:13px} .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box button.email-share, .gallery-slideshow div.pro-gallery .slideshow-info-element-inner .info-element-social .info-element-social-share .info-element-social-share-box i.email-share{font-size:13px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element{display:flex;flex-direction:column;justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social{margin:0;height:auto;position:static;display:flex;flex-direction:row} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.with-arrows{width:auto;margin:0px -10px 0} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.gradient-top{background:linear-gradient(rgba(0, 0, 0, 0.2) 0, transparent 140px)} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social:hover .info-element-social-share-box{width:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center{justify-content:center} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share{position:relative} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-center .info-element-social-share .info-element-social-share-box{position:absolute;left:-25px;padding-left:25px !important;margin-right:0 !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share{flex-direction:row-reverse} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social.info-align-right .info-element-social-share:hover .info-element-social-share-box{margin-right:40px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button{position:static !important;margin:0;padding:0 20px;font-size:19px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-button.info-element-social-share{margin-top:-3px} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share{flex-direction:row;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share:hover .info-element-social-share-box{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box{width:0;transition:width .3s;overflow:hidden;margin-left:25px !important;margin-right:25px !important} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered, .gallery-thumbnails div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .hover-info-element .info-element-social .info-element-social-share .info-element-social-share-box.hovered{width:210px !important;outline:none} .gallery-slider div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{white-space:normal} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover{padding:30px} .gallery-columns div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px 0 0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{display:flex;justify-content:center;opacity:0;/*! autoprefixer: ignore next */-webkit-box-pack:center;transition:opacity .4s ease;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper .buy-icon{margin-right:7px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:block;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;-webkit-line-clamp:1;text-overflow:ellipsis;opacity:0;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;white-space:nowrap;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text{padding:30px;display:flex;flex-direction:column;margin:0;box-sizing:border-box;height:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.short-item{padding-top:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.narrow-item{padding-left:5px;padding-right:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text>div{width:100%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-text.push-down{padding-top:60px;box-sizing:border-box}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{line-height:32px;font-size:21px;padding:0;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{line-height:25px;font-size:15px;color:#fff;overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;opacity:0;white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements{width:100%;height:24px !important;display:flex;flex-direction:row}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-love{margin-right:auto}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-new-info-elements .info-element-social-button{padding-left:10px;padding-right:10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-absolute{position:absolute;top:0;left:0}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social{outline:none;width:100%;height:100%;overflow:visible;z-index:16;transition:opacity .4s ease}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item{display:flex;align-items:flex-end;justify-content:space-around;height:90%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.short-item .info-element-social-button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.narrow-item .info-element-social-button{position:initial}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.with-arrows{width:86%;margin:0 7%}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button{outline:none;bottom:30px;position:absolute;margin:0;display:inline-block;font-size:19px;color:#fff;cursor:pointer;opacity:0;padding:10px;margin:-10px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button:hover:not(.info-element-loved){opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.visible{opacity:1 !important}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments{left:26px;top:26px;bottom:initial;font-size:15px;border:none;background:#2b5672;display:flex;-moz-column-gap:7px;column-gap:7px;align-items:center;padding:5px;margin:-5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-comments .info-element-social-comments-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;line-height:15px;font-size:15px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love{left:30px;bottom:30px;font-size:15px;border:none;background:rgba(0,0,0,0)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love i{outline:none;float:left;display:inline-block;line-height:14px;border:none;background:rgba(0,0,0,0);font-size:18px;padding:1px 5px;text-decoration:none;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-love .info-element-social-love-count{font-family:"HelveticaNeueW01-UltLt","HelveticaNeueW02-UltLt","HelveticaNeueW10-25UltL",sans-serif;font-style:normal;float:left;line-height:15px;font-size:15px;margin-top:2px;display:inline-block;padding-left:9px;letter-spacing:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-share{bottom:26px;left:auto;right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-dots{left:auto;right:22px;top:26px;height:30px;width:20px;display:flex;justify-content:center}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download{bottom:25px;left:auto;right:68px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social .info-element-social-button.info-element-social-download.pull-right{right:30px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments{left:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-love span,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-comments span{display:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-share{right:calc(25% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-download{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item .info-element-social-button.info-element-social-dots{left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button{bottom:auto;left:calc(50% - 8px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-love,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-comments{top:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-share{top:auto;right:auto;bottom:calc(25% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-download{top:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social.small-item.vertical-item .info-element-social-button.info-element-social-dots{bottom:calc(50% - 10px)}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box{position:absolute;top:0;left:50%;width:100%;height:100%;max-width:300px;min-width:200px;overflow:visible;z-index:16;font-size:12px;opacity:0;transform:translateX(-50%);margin-top:1px;margin-left:-3px;transition:opacity .4s ease;outline:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.hidden{opacity:0 !important;pointer-events:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i{display:inline-block;font-size:15px;color:#fff;cursor:pointer;position:absolute;top:50%;width:22px;text-align:center;transform:translateY(-50%);background:rgba(0,0,0,0);border:none}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button:hover,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i:hover{opacity:.7}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-1,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-1{margin-left:5px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-2{font-size:13px;margin-top:1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-4,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-4{margin-left:-1px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box i.network-5{font-size:13px;margin-top:1px;margin-left:-3px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item{top:50%;left:0;max-width:none;min-width:0;max-height:300px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i{left:50%;margin-left:-10px;margin-top:8px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-2,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-2{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item button.network-5,div.pro-gallery .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-social-share-box.vertical-item i.network-5{font-size:13px}div.pro-gallery .gallery-item-container .gallery-item-common-info{box-sizing:border-box;cursor:pointer}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-title{/*! autoprefixer: ignore next */overflow:hidden;/*! autoprefixer: ignore next */display:-webkit-box;-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description{/*! autoprefixer: ignore next */overflow:hidden;display:-webkit-box;/*! autoprefixer: ignore next */-webkit-box-orient:vertical;text-overflow:ellipsis}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-description>span{white-space:normal}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-member.hide{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper{display:flex;justify-content:center;color:#fff}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-size:15px;line-height:25px;height:45px;min-width:190px;padding:0 15px;position:relative;z-index:10;cursor:pointer;outline:none;border-style:solid;text-decoration:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button .overlay{display:none}div.pro-gallery .gallery-item-container .gallery-item-common-info .info-element-custom-button-wrapper button:hover .overlay{display:block;background:hsla(0,0%,100%,.1);width:100%;height:45px;position:absolute;top:0;left:0}div.pro-gallery.thumbnails-gallery .gallery-item-container .info-element-custom-button-wrapper{display:none !important}/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2271 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/InfoElement.global.scss ***! | |
| 2272 | + \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************//*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2273 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/Tooltip.global.scss ***! | |
| 2274 | + \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ :root{--tooltip-text-color: white;--tooltip-background-color: black;--tooltip-margin: 30px;--tooltip-arrow-size: 6px} .tooltip-wrapper{position:absolute;top:0;z-index:100;background-color:var(--tooltip-background-color);color:var(--tooltip-text-color);box-shadow:0px 0px 4px 0px rgba(0,0,0,.1);border:1px solid var(--tooltip-text-color)} .tooltip-body{padding:4px;font-size:14px;font-family:Helvetica} .tooltip-body::before{content:" ";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:var(--tooltip-arrow-size);margin-left:calc(var(--tooltip-arrow-size)*-1)} .tooltip-body.arrow{top:calc(var(--tooltip-margin)*-1)} .tooltip-body.arrow::before{top:100%;border-top-color:var(--tooltip-background-color)}/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\ | |
| 2275 | + !*** css ../../../../node_modules/@wix/yoshi-style-dependencies/css-loader.js??ruleSet[1].rules[2].rules[1].oneOf[0]!../../../../node_modules/@wix/yoshi-style-dependencies/postcss-loader.js??ruleSet[1].rules[2].rules[2]!../../../../node_modules/@wix/yoshi-style-dependencies/resolve-url-loader.js!../../../../node_modules/@wix/yoshi-style-dependencies/sass-loader.js??ruleSet[1].rules[2].rules[4]!./styles/static/ProGalleryRenderIndicator.global.scss ***! | |
| 2276 | + \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/ .pg-render-indicator{position:absolute;bottom:15.5px;left:15.5px;border:1px solid #717171;padding:5px 10px 5px 5px;font-size:16px;z-index:2147483648;cursor:default;line-height:20px} .pg-render-indicator table{table-layout:fixed} .pg-render-indicator.rendered{background-color:#7fff00} .pg-render-indicator.not-rendered{background-color:red} .pg-render-indicator .log-column{max-height:450px;max-width:500px;overflow:auto;background-color:#fff} .pg-render-indicator .show-on-hover{border:0;clip:rect(1px, 1px, 1px, 1px);clip-path:inset(50%);height:1px;margin:-1px;top:-9999px;left:-9999px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important} .pg-render-indicator div.worker-log-text{word-wrap:break-word;max-width:500px;min-width:100px} .pg-render-indicator:hover{max-width:90%;max-height:90%} .pg-render-indicator:hover .show-on-hover{clip:auto !important;clip-path:none;display:block;height:auto;line-height:normal;text-decoration:none;width:auto;position:static} | |
| 2277 | + | |
| 2278 | + .pro-fullscreen-wrapper, .pro-fullscreen-wrapper-loading{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:100005} | |
| 2279 | + .pro-gallery-empty{top:0;left:0;height:100%;width:100%;background-color:hsla(0,0%,100%,.9)} .pro-gallery-empty .pro-gallery-empty-content{height:334px;width:100%;overflow:hidden} .pro-gallery-empty .pro-gallery-empty-image{margin:66px auto 35px;width:262px;height:132px;background-image:url(media/emptystate.85a4add5.svg);background-size:contain} .pro-gallery-empty .pro-gallery-empty-title{color:#4eb7f5;font-family:"HelveticaNeueW01-55Roma","HelveticaNeueW02-55Roma","HelveticaNeueW10-55Roma",sans-serif;font-size:20px;line-height:25px;text-align:center;margin-bottom:10px} .pro-gallery-empty .pro-gallery-empty-info{color:#4eb7f5;font-family:"HelveticaNeueW01-45Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif;font-size:14px;line-height:20px;text-align:center} | |
| 2280 | +</style><style> | |
| 2281 | +.comp-m8omf94t div.pro-gallery-parent-container .gallery-item-wrapper-text .gallery-item-content{background-color:#000000}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:rgba(0, 0, 0, 0.9);font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:1px;border-color:#000000;border-radius:0px}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator i.show-more{color:rgba(0, 0, 0, 0.7)}.comp-m8omf94t div.pro-gallery-parent-container .show-more-container.pro-gallery-mobile-indicator button.show-more{--loadMoreButtonBorderRadius: 0;--loadMoreButtonBorderColor: #000000;--loadMoreButtonBorderWidth: 1;--loadMoreButtonColor: #FAFAFA;--loadMoreButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--loadMoreButtonFontColor: #000000;color:#000000;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF;border-width:undefinedpx;border-color:#000000;border-radius:undefinedpx}.comp-m8omf94t .nav-arrows-container .slideshow-arrow,.comp-m8omf94t .nav-arrows-container .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .slideshow-arrow,.comp-m8omf94t .nav-arrows-container.pro-gallery-mobile-indicator .custom-nav-arrows svg{--arrowsColor: #FAFAFA;fill:rgb(25, 33, 50)}.comp-m8omf94t .pro-gallery.inline-styles .auto-slideshow-counter{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0)}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:1px;border-radius:0px;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 19px/1.4em montserrat,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:1px;border-radius:0px}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.load-with-color:not(.image-loaded){--imageLoadingColor: #999999;background-color:#EEEEEE}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-triangle{--itemFontColor: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item.gallery-item-video i.gallery-item-video-play-background{--itemOpacity: #000000;color:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-background,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-background{--itemOpacity: #000000;fill:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gradient-top,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gradient-top{--itemOpacity: #000000;background:linear-gradient(rgba(0, 0, 0, 0.3) 0, transparent 140px) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info{--itemIconColorSlideshow: #000000}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button):not(.artstore-add-to-cart-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info a{color:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info svg .gallery-item-svg-foreground{fill:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-slideshow-info .info-element-description{--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover{--itemIconColor: #FAFAFA}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover i:not(.pro-gallery-loved):not(.info-element-loved),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover button:not(.pro-gallery-loved):not(.info-element-loved):not(.info-element-custom-button-button),.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover a{color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover svg .gallery-item-svg-foreground{fill:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-title{--itemFont: normal normal normal 25px/1.3em montserrat-black,sans-serif;--itemFontColor: #FAFAFA;color:#FFFFFF;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-description{--itemDescriptionFont: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--itemDescriptionFontColor: #FAFAFA;color:#FFFFFF !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper{--customButtonFontColor: #FAFAFA;color:#FFFFFF !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-wrapper .gallery-item-hover .info-element-custom-button-wrapper button{--customButtonColor: #000000;--customButtonBorderRadius: 0;--customButtonBorderWidth: 1;--customButtonBorderColor: #FAFAFA;--customButtonFont: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FFFFFF !important;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;background:#FFFFFF !important;border-width:undefinedpx;border-radius:undefinedpx;border-color:#FFFFFF}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover:not(.hide-hover):before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover) .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator:not(.invert-hover):hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover:before{--itemOpacity: #000000;background:rgba(0, 0, 0, 0.3) !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover .gallery-item-hover.default.force-hover:before,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator.invert-hover:hover .gallery-item-hover.default:not(.hide-hover):before{background:#000000 !important}.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-title,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-title{--itemFontSlideshow: normal normal normal 22px/1.3em montserrat-black,sans-serif;--itemFontColorSlideshow: #000000;color:#000000 !important;font:normal normal normal 22px/27px madefor-display-bold,helveticaneuew01-65medi,helveticaneuew02-65medi,helveticaneuew10-65medi,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .gallery-item-description,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-description{--itemDescriptionFontColorSlideshow: #000000;--itemDescriptionFontSlideshow: normal normal normal 15px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000 !important;font:normal normal normal 15px/18px madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif !important;text-decoration: }.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-text .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-bottom-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-top-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-left-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-item-right-info .info-element-custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .custom-button-wrapper button,.comp-m8omf94t .pro-gallery.inline-styles .gallery-item-container.pro-gallery-mobile-indicator .gallery-slideshow-info .info-element-custom-button-wrapper button{--customButtonFontForHover: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;--customButtonFontColorForHover: #000000;--externalCustomButtonBorderWidth: 0;--externalCustomButtonBorderRadius: 0;font:normal normal normal 15px/18px proxima-n-w01-reg,sans-serif;text-decoration: ;color:#000000 !important;background:#1A6AFF !important;border-color:#000000;border-width:undefinedpx;border-radius:undefinedpx}.comp-m8omf94t .te-pro-gallery-text-item{font:normal normal normal 12px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#FAFAFA}.comp-m8omf94t .pro-fullscreen-wrapper .pro-fullscreen-text-item{--fullscreen-text-item-bg: #000000;background-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-selected-license,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .pro-fullscreen-checkout-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-mobile-info{--bgColorExpand: #FAFAFA;background-color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-title h1{--titleColorExpand: #000000;--titleFontExpand: normal normal normal 25px/1.3em montserrat-black,sans-serif;color:#000000;font:normal normal normal 19px/1.4em montserrat,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link{--descriptionColorExpand: #000000;--descriptionFontExpand: normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;color:#000000;font:normal normal normal 16px/1.6em madefor-text,helveticaneuew01-45ligh,helveticaneuew02-45ligh,helveticaneuew10-45ligh,sans-serif;text-decoration: }.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-description .fullscreen-side-bar-description-line:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-exif:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-link:after,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-bottom-link:after{--descriptionColorExpand: #000000;border-color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-side-bar-social button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-nav button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-mobile-bar button,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social i:not(.pro-gallery-loved),.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social a,.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-social button{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-triangle{--descriptionColorExpand: #000000;color:#000000}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles i.fullscreen-item-video-play.progallery-svg-font-icons-play-background{--bgColorExpand: #FAFAFA;color:#FFFFFF}.comp-m8omf94t .pro-fullscreen-wrapper #fullscreen-view.fullscreen-bright.pro-fullscreen-inline-styles .fullscreen-icon{--descriptionColorExpand: #000000;--bgColorExpand: #FAFAFA;color:#000000;background:#FFFFFF} | |
| 2282 | +</style><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div id="gallery-wrapper-comp-m8omf94t" style="overflow:hidden;height:100%;width:100%"><style>div.comp-m8omf94t:not(.fullscreen-comp-wrapper) { | |
| 2283 | + height: 100%; | |
| 2284 | + width: 100%; | |
| 2285 | + position: relative; | |
| 2286 | + } | |
| 2287 | + div.comp-m8omf94t:not(.fullscreen-comp-wrapper) #gallery-wrapper-comp-m8omf94t { | |
| 2288 | + position: absolute; | |
| 2289 | + top: 0; | |
| 2290 | + left: 0; | |
| 2291 | + }</style><div id="pro-gallery-comp-m8omf94t" class="pro-gallery"><div data-key="pro-gallery-inner-container" class="pro-gallery-prerender" tabindex="-1"><div data-hook="css-scroll-indicator" data-scroll-base="0" data-scroll-top="0" class="pgscl-0 pgscl_m8omf94t_0-40960 pgscl_m8omf94t_0-20480 pgscl_m8omf94t_0-10240 pgscl_m8omf94t_0-5120 pgscl_m8omf94t_0-2560 pgscl_m8omf94t_0-1280 pgscl_m8omf94t_0-640 pgscl_m8omf94t_0-320 pgscl_m8omf94t_0-160 pgscl_m8omf94t_0-80 pgscl_m8omf94t_0-40 pgscl_m8omf94t_0-20 pgscl_m8omf94t_0-10" style="display:none"></div><div class="pro-gallery-parent-container gallery-thumbnails" style="margin:0;width:1450px;height:700px" role="region"><div id="pro-gallery-container-comp-m8omf94t" class="pro-gallery inline-styles one-row hide-scrollbars slider ltr " style="width:100%;height:700px;display:flex;justify-content:space-between"><div data-hook="gallery-column" id="gallery-horizontal-scroll-comp-m8omf94t" class="gallery-horizontal-scroll gallery-column hide-scrollbars ltr scroll-snap " style="width:100%;height:700px;overflow-y:visible"><div class="gallery-horizontal-scroll-inner"><div data-hook="group-view" style="--group-top:0px;--group-left:0px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" class="item-link-wrapper" data-idx="0" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_e66626c4ec664e8abdc711df1c875b7cmv2jpg_0" data-hash="5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" data-id="5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" data-idx="0" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:0;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="false"><div data-idx="0" id="item-action-5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" class="item-action" tabindex="0" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="0" src="https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:1315px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" class="item-link-wrapper" data-idx="1" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2jpg_1" data-hash="5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" data-id="5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" data-idx="1" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:1315px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="1" id="item-action-5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="1" src="https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:2630px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" class="item-link-wrapper" data-idx="2" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2jpg_2" data-hash="5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" data-id="5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" data-idx="2" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:2630px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="2" id="item-action-5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="2" src="https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:3945px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" class="item-link-wrapper" data-idx="3" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_96f0c3c93c984a7081456019efaf75e1mv2jpg_3" data-hash="5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" data-id="5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" data-idx="3" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:3945px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="3" id="item-action-5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="3" src="https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:5260px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" class="item-link-wrapper" data-idx="4" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_94e40dfe37f74f748aa5a9a6e393970emv2jpg_4" data-hash="5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" data-id="5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" data-idx="4" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:5260px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="4" id="item-action-5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="4" src="https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:6575px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" class="item-link-wrapper" data-idx="5" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2jpg_5" data-hash="5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" data-id="5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" data-idx="5" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:6575px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="5" id="item-action-5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="5" src="https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:7890px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" class="item-link-wrapper" data-idx="6" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_67920b58100e43b1972325ed1f67d855mv2jpg_6" data-hash="5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" data-id="5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" data-idx="6" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:7890px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="6" id="item-action-5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="6" src="https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:9205px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" class="item-link-wrapper" data-idx="7" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2jpg_7" data-hash="5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" data-id="5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" data-idx="7" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:9205px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="7" id="item-action-5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_cb0a086c751a4c57b14ca347f0a31dafmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="7" src="https://static.wixstatic.com/media/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_cb0a086c751a4c57b14ca347f0a31daf~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:10520px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" class="item-link-wrapper" data-idx="8" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2jpg_8" data-hash="5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" data-id="5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" data-idx="8" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:10520px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="8" id="item-action-5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_8bf05ac8b044450db46178df6f6bfbe3mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="8" src="https://static.wixstatic.com/media/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_8bf05ac8b044450db46178df6f6bfbe3~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:11835px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" class="item-link-wrapper" data-idx="9" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_bc20d7b95c064a3090ec2b202624ab6emv2jpg_9" data-hash="5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" data-id="5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" data-idx="9" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:11835px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="9" id="item-action-5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_bc20d7b95c064a3090ec2b202624ab6emv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="9" src="https://static.wixstatic.com/media/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_bc20d7b95c064a3090ec2b202624ab6e~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:13150px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" class="item-link-wrapper" data-idx="10" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2jpg_10" data-hash="5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" data-id="5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" data-idx="10" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:13150px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="10" id="item-action-5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_5a1a6c01b5d04ec4bed370e1acbd9513mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="10" src="https://static.wixstatic.com/media/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5a1a6c01b5d04ec4bed370e1acbd9513~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:14465px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" class="item-link-wrapper" data-idx="11" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2jpg_11" data-hash="5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" data-id="5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" data-idx="11" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:14465px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="11" id="item-action-5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_a4e01ad00fde4a828d97ef2d525fe05dmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="11" src="https://static.wixstatic.com/media/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a4e01ad00fde4a828d97ef2d525fe05d~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:15780px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" class="item-link-wrapper" data-idx="12" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2jpg_12" data-hash="5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" data-id="5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" data-idx="12" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:15780px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="12" id="item-action-5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="12" src="https://static.wixstatic.com/media/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5e3e6ddf1d4d4f128bd573ffd0ae7475~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:17095px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" class="item-link-wrapper" data-idx="13" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_780d0633e5404fe1951584b8c3c62f4amv2jpg_13" data-hash="5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" data-id="5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" data-idx="13" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:17095px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="13" id="item-action-5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_780d0633e5404fe1951584b8c3c62f4amv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="13" src="https://static.wixstatic.com/media/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_780d0633e5404fe1951584b8c3c62f4a~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:18410px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" class="item-link-wrapper" data-idx="14" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2jpg_14" data-hash="5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" data-id="5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" data-idx="14" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:18410px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="14" id="item-action-5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_8522e70b5a8940a0a065b2c407fcb1c1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="14" src="https://static.wixstatic.com/media/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_8522e70b5a8940a0a065b2c407fcb1c1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:19725px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" class="item-link-wrapper" data-idx="15" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_655423e526a14b0580ffdeac67721db1mv2jpg_15" data-hash="5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" data-id="5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" data-idx="15" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:19725px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="15" id="item-action-5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_655423e526a14b0580ffdeac67721db1mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="15" src="https://static.wixstatic.com/media/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_655423e526a14b0580ffdeac67721db1~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:21040px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" class="item-link-wrapper" data-idx="16" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d875168f9d9743729fbe296b5c5890cdmv2jpg_16" data-hash="5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" data-id="5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" data-idx="16" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:21040px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="16" id="item-action-5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_d875168f9d9743729fbe296b5c5890cdmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="16" src="https://static.wixstatic.com/media/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d875168f9d9743729fbe296b5c5890cd~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:22355px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" class="item-link-wrapper" data-idx="17" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a7a0ca114dc44d57bcec71344498f045mv2jpg_17" data-hash="5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" data-id="5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" data-idx="17" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:22355px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="17" id="item-action-5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_a7a0ca114dc44d57bcec71344498f045mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="17" src="https://static.wixstatic.com/media/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a7a0ca114dc44d57bcec71344498f045~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:23670px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" class="item-link-wrapper" data-idx="18" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_3d11f216f666415c81456ae28c2332d6mv2jpg_18" data-hash="5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" data-id="5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" data-idx="18" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:23670px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="18" id="item-action-5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_3d11f216f666415c81456ae28c2332d6mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="18" src="https://static.wixstatic.com/media/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_3d11f216f666415c81456ae28c2332d6~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:24985px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" class="item-link-wrapper" data-idx="19" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_d4908af36de648ceb804991311c2f065mv2jpg_19" data-hash="5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" data-id="5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" data-idx="19" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:24985px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="19" id="item-action-5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_2104,h_1120,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_2104,h_1120,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_2104,h_1120,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_2104,h_1120,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_d4908af36de648ceb804991311c2f065mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="19" src="https://static.wixstatic.com/media/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_d4908af36de648ceb804991311c2f065~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:26300px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" class="item-link-wrapper" data-idx="20" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_99f01463a4304bfa945e5c891bbb84a5mv2jpg_20" data-hash="5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" data-id="5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" data-idx="20" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:26300px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="20" id="item-action-5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_99f01463a4304bfa945e5c891bbb84a5mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="20" src="https://static.wixstatic.com/media/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_99f01463a4304bfa945e5c891bbb84a5~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:27615px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" class="item-link-wrapper" data-idx="21" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_a0573424e3b847c0a0990af5529bbe25mv2jpg_21" data-hash="5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" data-id="5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" data-idx="21" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:27615px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="21" id="item-action-5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_a0573424e3b847c0a0990af5529bbe25mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="21" src="https://static.wixstatic.com/media/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_a0573424e3b847c0a0990af5529bbe25~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:28930px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" class="item-link-wrapper" data-idx="22" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_51c8600272aa4051baf0c9694e074131mv2jpg_22" data-hash="5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" data-id="5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" data-idx="22" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:28930px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="22" id="item-action-5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_51c8600272aa4051baf0c9694e074131mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="22" src="https://static.wixstatic.com/media/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_51c8600272aa4051baf0c9694e074131~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:30245px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" class="item-link-wrapper" data-idx="23" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_5829dbbf62cd4510810a100282831554mv2jpg_23" data-hash="5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" data-id="5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" data-idx="23" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:30245px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="23" id="item-action-5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_5829dbbf62cd4510810a100282831554mv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="23" src="https://static.wixstatic.com/media/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_5829dbbf62cd4510810a100282831554~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div><div data-hook="group-view" style="--group-top:0px;--group-left:31560px;--group-width:1315px;--group-right:auto" aria-hidden="false"><div data-id="5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" class="item-link-wrapper" data-idx="24" data-hook="item-link-wrapper" tabindex="-1"><div class="gallery-item-container item-container-regular has-custom-focus visible clickable" id="pgi5ae170_bde393e9636e4da7ade1e710af96f07bmv2jpg_24" data-hash="5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" data-id="5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" data-idx="24" data-hook="item-container" style="overflow-y:hidden;position:absolute;bottom:auto;margin:0px;top:0;left:31560px;right:auto;width:1315px;height:700px;overflow:hidden;transition:opacity .2s ease;opacity:0;display:none" aria-hidden="true"><div data-idx="24" id="item-action-5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" class="item-action" tabindex="-1" data-hook="item-action" aria-label="image" role="button" aria-haspopup="dialog"></div><div><div data-hook="item-wrapper" class="gallery-item-wrapper visible cube-type-fill [object Object]" id="item-wrapper-5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" style="background-color:none;height:700px;width:1315px;margin:0px"><div class="gallery-item-content item-content-regular image-item gallery-item-visible gallery-item gallery-item-preloaded load-with-color " data-hook="image-item" style="width:1315px;height:700px;margin-top:0;margin-left:0"><picture><source srcSet="https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg 1x, https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg 2x, https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg 3x, https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg 4x, https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_2290,h_1219,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg 5x" type="image/jpeg"/><img id="5ae170_bde393e9636e4da7ade1e710af96f07bmv2.jpg" class="gallery-item-visible gallery-item gallery-item-preloaded" data-hook="gallery-item-image-img" data-idx="24" src="https://static.wixstatic.com/media/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg/v1/fit/w_1440,h_767,q_90,enc_avif,quality_auto/5ae170_bde393e9636e4da7ade1e710af96f07b~mv2.jpg" alt="" loading="lazy" style="width:100%;height:100%"/></picture></div></div></div></div></div></div></div></div></div><div class="pro-gallery inline-styles thumbnails-gallery ltr " style="width:130px;height:700px;margin-left:5px;margin-right:0" data-hook="gallery-thumbnails"><div data-hook="gallery-thumbnails-column" class="galleryColumn" style="overflow:visible;width:130px;height:700px;top:0"><div class="thumbnailItem pro-gallery-highlight" data-key="5ae170_e66626c4ec664e8abdc711df1c875b7cmv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_e66626c4ec664e8abdc711df1c875b7c~mv2.jpg);top:0"></div><div class="thumbnailItem" data-key="5ae170_de4a1a812fd2472e82e1bfb3389b7d31mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_de4a1a812fd2472e82e1bfb3389b7d31~mv2.jpg);top:130px"></div><div class="thumbnailItem" data-key="5ae170_20052cdd7dd44a339ef5748fece6ebc6mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_20052cdd7dd44a339ef5748fece6ebc6~mv2.jpg);top:260px"></div><div class="thumbnailItem" data-key="5ae170_96f0c3c93c984a7081456019efaf75e1mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_96f0c3c93c984a7081456019efaf75e1~mv2.jpg);top:390px"></div><div class="thumbnailItem" data-key="5ae170_94e40dfe37f74f748aa5a9a6e393970emv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_94e40dfe37f74f748aa5a9a6e393970e~mv2.jpg);top:520px"></div><div class="thumbnailItem" data-key="5ae170_a9e08b74a6f94ed18f0f9b02e27d6321mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_a9e08b74a6f94ed18f0f9b02e27d6321~mv2.jpg);top:650px"></div><div class="thumbnailItem" data-key="5ae170_67920b58100e43b1972325ed1f67d855mv2.jpg" style="width:120px;height:120px;margin-left:5px;margin-top:5px;overflow:hidden;background-image:url(https://static.wixstatic.com/media/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg/v1/fit/w_480,h_480,q_70,enc_avif,quality_auto/5ae170_67920b58100e43b1972325ed1f67d855~mv2.jpg);top:780px"></div></div></div></div><div data-key="items-styles" style="display:none"><style>#pro-gallery-comp-m8omf94t .gallery-item-container, #pro-gallery-comp-m8omf94t .thumbnails-gallery { opacity: 0 }</style></div></div></div><div id="layout-fixer-comp-m8omf94ttrue" style="display:none"><link href="" rel="stylesheet" id="layout-fixer-style-comp-m8omf94t"/><script>try { | |
| 2292 | + window.requestAnimationFrame(function() { | |
| 2293 | + setTimeout(() => { | |
| 2294 | + | |
| 2295 | + | |
| 2296 | + var ele = document.getElementById('pro-gallery-comp-m8omf94t'); | |
| 2297 | + var pgMeasures = ele.getBoundingClientRect(); | |
| 2298 | + var options = (() => "layoutParams_cropRatio:100%/100%|layoutParams_structure_galleryRatio_value:0|layoutParams_repeatingGroupTypes:|layoutParams_gallerySpacing:0|groupTypes:1|numberOfImagesPerRow:4|collageAmount:0.8|textsVerticalPadding:0|textsHorizontalPadding:0|calculateTextBoxHeightMode:MANUAL|targetItemSize:50|cubeRatio:100%/100%|externalInfoHeight:0|externalInfoWidth:0|isRTL:false|isVertical:false|minItemSize:120|groupSize:1|chooseBestGroup:true|cubeImages:true|cubeType:fill|smartCrop:false|collageDensity:1|imageMargin:0|hasThumbnails:true|galleryThumbnailsAlignment:right|gridStyle:1|titlePlacement:SHOW_ON_HOVER|arrowsSize:50|slideshowInfoSize:120|imageInfoType:NO_BACKGROUND|textBoxHeight:0|scrollDirection:1|galleryLayout:3|gallerySizeType:smart|gallerySize:50|cropOnlyFill:false|numberOfImagesPerCol:1|groupsPerStrip:0|scatter:0|enableInfiniteScroll:true|thumbnailSpacings:5|arrowsPosition:0|thumbnailSize:120|calculateTextBoxWidthMode:PERCENT|textBoxWidthPercent:50|useMaxDimensions:false|rotatingGroupTypes:|fixedColumns:0|rotatingCropRatios:|gallerySizePx:0|placeGroupsLtr:false")(ele); | |
| 2299 | + var width = pgMeasures.width; | |
| 2300 | + var height = pgMeasures.height; | |
| 2301 | + | |
| 2302 | + var isIOS = /iPad|iPhone|iPod/.test(navigator?.userAgent); | |
| 2303 | + if(isIOS) { | |
| 2304 | + width = width; | |
| 2305 | + width = width; | |
| 2306 | + height = height; | |
| 2307 | + height = height; | |
| 2308 | + } else { | |
| 2309 | + width = width; | |
| 2310 | + width = width; | |
| 2311 | + height = height; | |
| 2312 | + height = height; | |
| 2313 | + } | |
| 2314 | + | |
| 2315 | + pgMeasures = { top: pgMeasures.top, width, height }; | |
| 2316 | + | |
| 2317 | + var isVertical = options.includes('layoutParams_structure_scrollDirection:"VERTICAL"'); | |
| 2318 | + var layoutFixerUrl = '/_serverless/pro-gallery-css-v4-server/layoutCss?ver=2&id=comp-m8omf94t&items=3616_2048_1365|3551_2048_1365|3659_2048_1365|3428_2048_1365|3534_2048_1365|3515_2048_1365|3274_2048_1365|3579_2048_1365|3606_2048_1365|3482_2048_1365|3624_2048_1365|3647_2048_1365|3662_2048_1365|3367_2048_1365|3437_2048_1365|3451_2048_1365|3452_2048_1365|3498_2048_1365|3312_2048_1365|3420_2048_1152&container=' + pgMeasures.top + '_' + pgMeasures.width + '_' + pgMeasures.height + '_' + window.innerHeight + '&options=' + options; | |
| 2319 | + document.getElementById('layout-fixer-style-comp-m8omf94t').setAttribute('href', encodeURI(layoutFixerUrl)); | |
| 2320 | + | |
| 2321 | + }, 0); | |
| 2322 | + }); | |
| 2323 | + } catch (e) { | |
| 2324 | + console.warn('Cannot set layoutFixer css', e); | |
| 2325 | + }</script></div></div></div></div></div></div></div></div></div></div><div id="comp-m8omdbey11" role="" class="HFEOE3 NaeT1r comp-m8omdbey11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbey11-container"><div id="comp-m8omdbez" class="N8MGzv _v6ohL PO9MfV comp-m8omdbez wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text">À LOUER – 1 800 $ / mois</p> | |
| 2326 | +<p class="font_8 wixui-rich-text__text">Disponible dès maintenant</p> | |
| 2327 | +<p class="font_8 wixui-rich-text__text">266 Chemin de la Pinède, Piedmont, J0R 1K0</p> | |
| 2328 | +<p class="font_8 wixui-rich-text__text">Découvrez ce splendide condo situé dans un secteur paisible et recherché, à proximité de Saint-Sauveur, entre les pentes de ski de Piedmont et Saint-Sauveur.</p> | |
| 2329 | +<p class="font_8 wixui-rich-text__text">Caractéristiques principales :</p> | |
| 2330 | +<p class="font_8 wixui-rich-text__text">• Design moderne à aire ouverte</p> | |
| 2331 | +<p class="font_8 wixui-rich-text__text">• Foyer au gaz naturel pour des soirées chaleureuses</p> | |
| 2332 | +<p class="font_8 wixui-rich-text__text">• Deux chambres, dont une avec walk-in</p> | |
| 2333 | +<p class="font_8 wixui-rich-text__text">• Salle de bain avec douche indépendante et bain en coin</p> | |
| 2334 | +<p class="font_8 wixui-rich-text__text">• Thermopompe pour un confort optimal toute l’année</p> | |
| 2335 | +<p class="font_8 wixui-rich-text__text">• Balayeuse centrale incluse</p> | |
| 2336 | +<p class="font_8 wixui-rich-text__text">• Terrasse privée et deux stationnements extérieurs</p> | |
| 2337 | +<p class="font_8 wixui-rich-text__text">Un emplacement idéal : proche des écoles, boutiques, restaurants, pistes cyclables et centres de ski.</p> | |
| 2338 | +<p class="font_8 wixui-rich-text__text">Une opportunité parfaite pour profiter des Laurentides dans un cadre exceptionnel !</p> | |
| 2339 | +<p class="font_8 wixui-rich-text__text">Contactez notre équipe dès aujourd’hui pour planifier une visite.</p> | |
| 2340 | +<p class="font_8 wixui-rich-text__text">450-499-7904</p> | |
| 2341 | +<p class="font_8 wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@leshabitationssf.com" class="wixui-rich-text__text">info@leshabitationssf.com</a></p></div></div></div><div id="comp-m8omdbf0" role="" class="HFEOE3 NaeT1r comp-m8omdbf0 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf0-container"><div id="comp-m8omdbf1" role="" class="HFEOE3 NaeT1r comp-m8omdbf1-container comp-m8omdbf1 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf2" role="" class="HFEOE3 NaeT1r comp-m8omdbf2-container comp-m8omdbf2 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf211" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf211 wixui-rich-text N5mCVp" data-testid="richTextElement"><h6 class="font_6 wixui-rich-text__text"><span class="wixui-rich-text__text">Disponible</span></h6></div></div><div id="comp-m8omdbf39" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf39 wixui-rich-text" data-testid="richTextElement"><p class="font_7 wixui-rich-text__text"><span class="wixui-rich-text__text">APPARTEMENT</span></p></div><div id="comp-m8omdbf415" role="" class="HFEOE3 NaeT1r comp-m8omdbf415 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf415-container"><div id="comp-m8omdbf510" class="comp-m8omdbf510 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf510" class="iL7Pq5 gx51wo"> | |
| 2342 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="20 45 160 110" viewBox="20 45 160 110" height="200" width="200" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""><defs><style>#comp-m8omdbf510 svg [data-color="1"] {fill: #000000;}</style></defs> | |
| 2343 | + <g> | |
| 2344 | + <path d="M33.968 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395.001 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2345 | + <path d="M166.032 62.907c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07 0 2.118-1.705 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2346 | + <path d="M155.873 52.674H44.127c-2.104 0-3.81-1.718-3.81-3.837S42.022 45 44.127 45h111.746c2.104 0 3.81 1.718 3.81 3.837 0 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2347 | + <path d="M33.968 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2348 | + <path d="M166.032 103.837c-2.104 0-3.81-1.718-3.81-3.837V59.07c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2349 | + <path d="M166.032 103.837H33.968c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h132.064c2.104 0 3.81 1.718 3.81 3.837s-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2350 | + <path d="M23.81 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c-.001 2.12-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2351 | + <path d="M176.19 144.767c-2.104 0-3.81-1.718-3.81-3.837v-30.698c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v30.698c0 2.12-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2352 | + <path d="M23.81 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-7.758 6.266-14.07 13.968-14.07 2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837c-3.501 0-6.349 2.869-6.349 6.395 0 2.12-1.705 3.838-3.809 3.838z" fill="#112F5B" data-color="1"></path> | |
| 2353 | + <path d="M176.19 114.07c-2.104 0-3.81-1.718-3.81-3.837 0-3.526-2.848-6.395-6.349-6.395-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837c7.702 0 13.968 6.312 13.968 14.07.001 2.118-1.704 3.836-3.809 3.836z" fill="#112F5B" data-color="1"></path> | |
| 2354 | + <path d="M176.19 144.767H23.81c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h152.38c2.104 0 3.81 1.718 3.81 3.837s-1.705 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2355 | + <path d="M33.968 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837v10.233c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2356 | + <path d="M166.032 155c-2.104 0-3.81-1.718-3.81-3.837V140.93c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837v10.233c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2357 | + <path d="M51.746 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2358 | + <path d="M92.381 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2359 | + <path d="M92.381 73.14H51.746c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2360 | + <path d="M107.619 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837 2.104 0 3.81 1.718 3.81 3.837V100c0 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2361 | + <path d="M148.254 103.837c-2.104 0-3.81-1.718-3.81-3.837V69.302c0-2.119 1.705-3.837 3.81-3.837s3.81 1.718 3.81 3.837V100c-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2362 | + <path d="M148.254 73.14h-40.635c-2.104 0-3.81-1.718-3.81-3.837s1.705-3.837 3.81-3.837h40.635c2.104 0 3.81 1.718 3.81 3.837-.001 2.119-1.706 3.837-3.81 3.837z" fill="#112F5B" data-color="1"></path> | |
| 2363 | + </g> | |
| 2364 | +</svg> | |
| 2365 | +</div></div><div id="comp-m8omdbf61" role="" class="HFEOE3 NaeT1r comp-m8omdbf61-container comp-m8omdbf61 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf68" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf68 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">2</span></p></div><div id="comp-m8omdbf711" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf711 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Chambre(s)</span></p></div></div></div></div><div id="comp-m8omdbf82" role="" class="HFEOE3 NaeT1r comp-m8omdbf82 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbf82-container"><div id="comp-m8omdbf813" class="comp-m8omdbf813 wixui-vector-image"><div data-testid="svgRoot-comp-m8omdbf813" class="iL7Pq5 gx51wo"><svg preserveAspectRatio="xMidYMid meet" data-bbox="21 36.054 160 127.946" xmlns="http://www.w3.org/2000/svg" viewBox="21 36.054 160 127.946" height="200" width="200" data-type="tint" role="presentation" aria-hidden="true" aria-label=""> | |
| 2366 | + <g> | |
| 2367 | + <path d="M30.796 91.95V65.162c0-8.036 3.116-15.34 8.199-20.755 5.477-5.835 13.237-8.132 21.842-8.132h9.143v.372a27.803 27.803 0 0 1 28.808 11.735l2.733 4.065-45.975 31.107-2.749-4.088c-6.886-10.241-6.112-23.402 1.012-32.643-2.898.706-5.522 2.018-7.682 4.319a20.385 20.385 0 0 0-5.535 14.02V91.95H181v40.938c0 13.565-10.964 24.562-24.49 24.562h-1.632V164h-9.796v-6.55H56.918V164h-9.796v-6.55H45.49c-13.526 0-24.49-10.997-24.49-24.563V91.95h9.796zm0 9.825v31.112c0 8.14 6.579 14.738 14.694 14.738h111.02c8.115 0 14.694-6.598 14.694-14.737v-31.113H30.796zm34.936-52.838c-6.81 4.608-9.457 13.107-6.994 20.595L87.37 50.158c-5.99-5.103-14.829-5.83-21.639-1.221z" fill="#111111" fill-rule="evenodd"></path> | |
| 2368 | + </g> | |
| 2369 | +</svg> | |
| 2370 | +</div></div><div id="comp-m8omdbf97" role="" class="HFEOE3 NaeT1r comp-m8omdbf97-container comp-m8omdbf97 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbf916" class="N8MGzv _v6ohL PO9MfV comp-m8omdbf916 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1</span></p></div><div id="comp-m8omdbfa13" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfa13 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Salle(s) de bain</span></p></div></div></div></div><div id="comp-m8omdbfb14" role="" class="HFEOE3 NaeT1r comp-m8omdbfb14 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omdbfb14-container"><div id="comp-m8omdbfc3" role="" class="HFEOE3 NaeT1r comp-m8omdbfc3-container comp-m8omdbfc3 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfc10" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfc10 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><span class="wixGuard">​</span></span></p></div><div id="comp-m8omdbfd11" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfd11 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Pieds²</span></p></div></div></div></div><div id="comp-m8omdbfe" role="" class="HFEOE3 NaeT1r comp-m8omdbfe-container comp-m8omdbfe wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbfe11" role="" class="HFEOE3 NaeT1r comp-m8omdbfe11-container comp-m8omdbfe11 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omdbff" class="N8MGzv _v6ohL PO9MfV comp-m8omdbff wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">1800</span></p></div><div id="comp-m8ooawu0" class="N8MGzv _v6ohL PO9MfV comp-m8ooawu0 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">$</span></p></div><div id="comp-m8omdbfg7" class="N8MGzv _v6ohL PO9MfV comp-m8omdbfg7 wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">/</span></p></div><div id="comp-m8oobbzb" class="N8MGzv _v6ohL PO9MfV comp-m8oobbzb wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">MOIS</span></p></div></div></div></div></div></div><div id="comp-m8oqa661" role="" class="HFEOE3 NaeT1r comp-m8oqa661 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8oqa661-container"><div id="comp-m8oqbc3l" class="DDi8v8 comp-m8oqbc3l wixui-google-map"></div></div></div></div></section></main><footer id="comp-m8omcigd2" class="comp-m8omcigd2 S829f_ comp-m8omcigd2-container" slots="[object Object]" wix="[object Object]"><section id="comp-m8omcigd2_r_comp-kbgakgyt" tabindex="-1" data-block-level-container="Section" class="ke5pl1 comp-m8omcigd2_r_comp-kbgakgyt wixui-footer fwXYgt" data-testid="section-container"><div id="bgLayers_comp-m8omcigd2_r_comp-kbgakgyt" data-hook="bgLayers" data-motion-part="BG_LAYER comp-m8omcigd2_r_comp-kbgakgyt" class="QG9w8P"><div data-testid="colorUnderlay" class="LNYVZi ayCf9D"></div><div id="bgMedia_comp-m8omcigd2_r_comp-kbgakgyt" data-motion-part="BG_MEDIA comp-m8omcigd2_r_comp-kbgakgyt" class="ROWgFb"></div></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-kbgakgyt-container max-width-container"><div id="comp-m8omcigd2_r_comp-m2y11976" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y11976 wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div data-testid="responsive-container-content" role="group" class="comp-m8omcigd2_r_comp-m2y11976-container"><div id="comp-m8omcigd2_r_comp-m2y12dql" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y12dql wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Tél : 450.499.7978</span></p> | |
| 2371 | + | |
| 2372 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2373 | + | |
| 2374 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2375 | + | |
| 2376 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">E-mail:</span></p> | |
| 2377 | + | |
| 2378 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text"><a data-auto-recognition="true" href="mailto:info@sfhabitations.com" class="wixui-rich-text__text">info@sfhabitations.com</a></span></p> | |
| 2379 | + | |
| 2380 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2381 | + | |
| 2382 | +<p class="font_8 wixui-rich-text__text"><span class="wixGuard wixui-rich-text__text"></span></p> | |
| 2383 | + | |
| 2384 | +<p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">Secteur de Lanaudière, Laurentides, Montréal</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1gxle" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m2y1gxle-container comp-m8omcigd2_r_comp-m2y1gxle wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m2y1gkmp" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-m2y1gkmp wixui-rich-text" data-testid="richTextElement"><p class="font_8 wixui-rich-text__text"><span class="wixui-rich-text__text">S'ABONNER</span></p></div><div id="comp-m8omcigd2_r_comp-m2y1awex" class="QrIus comp-m8omcigd2_r_comp-m2y1awex"><div class="comp-m8omcigd2_r_comp-m2y1awex"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div style="--index2490108247-shadowXOffset:0px;--index2490108247-shadowYOffset:0px;overflow:visible;--wix-forms-formHeaderTwoFont-size:var(--wix-forms-formHeaderTwoFontH2-size);--wix-forms-formHeaderTwoFont-family:var(--wix-forms-formHeaderTwoFontH2-family)" class="sN4uTVR" data-hook="Form-wrapper"><div style="--wix-color-29:var(--wix-color-3);--wix-color-37:var(--wix-color-5);--wix-color-38:var(--wix-color-8);--wix-color-39:var(--wix-color-8);--wix-color-40:var(--wix-color-1);--wix-color-41:var(--wix-color-8);--wix-color-42:var(--wix-color-8);--wix-color-43:var(--wix-color-1);--wix-color-44:var(--wix-color-3);--wix-color-45:var(--wix-color-3);--wix-color-46:var(--wix-color-1);--wix-color-47:var(--wix-color-1);--wix-color-48:var(--wix-color-8);--wix-color-49:var(--wix-color-8);--wix-color-50:var(--wix-color-1);--wix-color-51:var(--wix-color-8);--wix-color-52:var(--wix-color-8);--wix-color-53:var(--wix-color-1);--wix-color-54:var(--wix-color-3);--wix-color-55:var(--wix-color-3)" data-hook="tpa-components-provider"><div><form aria-label="Abonnement" id="form-39743f17-3b77-49be-b37c-a7284b6479cc" data-hook="form-39743f17-3b77-49be-b37c-a7284b6479cc" class=""><fieldset class="kLNiUo"><div data-hook="form-root"><div class="ckHV4G" dir=""><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 2;grid-column:1 / span 12" data-hook="form-field-9c5d853d-7654-4b58-5574-bf0262076a35" data-field-type="HEADER"><div class="ElBhne" data-hook="ricos-viewer"><div class="zrLtk" dir="ltr" style="--ricos-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-text-color-tuple:var(--wix-forms-formParagraphColor);--ricos-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-background-color-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-fallback-color:rgb(0, 0, 0);--ricos-fallback-color-tuple:0, 0, 0;--ricos-settings-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-settings-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-focus-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-focus-action-color-tuple:var(--wix-forms-formLinkColor);--ricos-action-color-fallback:rgb(0, 0, 0);--ricos-action-color-fallback-tuple:0, 0, 0;--ricos-theme-color-1:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-theme-color-1-tuple:var(--wix-forms-formInputBackgroundColor);--ricos-theme-color-2:rgb(var(--wix-forms-formParagraphColor));--ricos-theme-color-2-tuple:var(--wix-forms-formParagraphColor);--ricos-theme-color-3:rgb(var(--wix-forms-formLinkColor));--ricos-theme-color-3-tuple:var(--wix-forms-formLinkColor);--ricos-custom-button-background-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-button-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-secondary-button-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-secondary-button-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-link-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-audio-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-audio-action-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-audio-action-text-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-file-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-file-icon-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-table-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-vertical-embed-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-vertical-embed-ribbon-text-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-link-preview-background-color:rgb(var(--wix-forms-formInputBackgroundColor));--ricos-custom-link-preview-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-code-block-line-height:1.5;--ricos-custom-toc-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-toc-title-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-divider-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-color:rgb(var(--wix-forms-formParagraphColor));--ricos-custom-quote-border-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-quote-line-height:1.5;--ricos-custom-quote-font-size:18px;--ricos-custom-smart-block-label-color:rgb(var(--wix-forms-formLinkColor));--ricos-custom-p-font-weight:normal;--ricos-custom-p-font-style:normal;--ricos-custom-p-line-height:1.5;--ricos-custom-p-font-size:var(--wix-forms-formParagraphFont-size, 16px);--ricos-custom-p-font-family:var(--wix-forms-formParagraphFont-family);--ricos-custom-p-color:rgb(var(--wix-forms-formParagraphColor, 0,0,0));--ricos-custom-h1-font-weight:normal;--ricos-custom-h1-font-style:normal;--ricos-custom-h1-line-height:1.5;--ricos-custom-h1-font-size:var(--wix-forms-formHeaderOneFont-size, 50px);--ricos-custom-h1-font-family:var(--wix-forms-formHeaderOneFont-family);--ricos-custom-h1-color:rgb(var(--wix-forms-formHeaderOneColor, 0,0,0));--ricos-custom-h2-font-weight:normal;--ricos-custom-h2-font-style:normal;--ricos-custom-h2-line-height:1.5;--ricos-custom-h2-font-size:var(--wix-forms-formHeaderTwoFont-size, 42px);--ricos-custom-h2-font-family:var(--wix-forms-formHeaderTwoFont-family);--ricos-custom-h2-color:rgb(var(--wix-forms-formHeaderTwoColor, 0,0,0));--ricos-custom-h3-font-weight:normal;--ricos-custom-h3-font-style:normal;--ricos-custom-h3-line-height:1.5;--ricos-custom-h3-font-size:var(--wix-forms-formHeaderThreeFont-size, 38px);--ricos-custom-h3-font-family:var(--wix-forms-formHeaderThreeFont-family);--ricos-custom-h3-color:rgb(var(--wix-forms-formHeaderThreeColor, 0,0,0));--ricos-custom-h4-font-weight:normal;--ricos-custom-h4-font-style:normal;--ricos-custom-h4-line-height:1.5;--ricos-custom-h4-font-size:var(--wix-forms-formHeaderFourFont-size, 34px);--ricos-custom-h4-font-family:var(--wix-forms-formHeaderFourFont-family);--ricos-custom-h4-color:rgb(var(--wix-forms-formHeaderFourColor, 0,0,0));--ricos-custom-h5-font-weight:normal;--ricos-custom-h5-font-style:normal;--ricos-custom-h5-line-height:1.5;--ricos-custom-h5-font-size:var(--wix-forms-formHeaderFiveFont-size, 28px);--ricos-custom-h5-font-family:var(--wix-forms-formHeaderFiveFont-family);--ricos-custom-h5-color:rgb(var(--wix-forms-formHeaderFiveColor, 0,0,0));--ricos-custom-h6-font-weight:normal;--ricos-custom-h6-font-style:normal;--ricos-custom-h6-line-height:1.5;--ricos-custom-h6-font-size:var(--wix-forms-formHeaderSixFont-size, 22px);--ricos-custom-h6-font-family:var(--wix-forms-formHeaderSixFont-family);--ricos-custom-h6-color:rgb(var(--wix-forms-formHeaderSixColor, 0,0,0));--ricos-breakout-normal-padding-start:0;--ricos-breakout-normal-padding-end:0;--ricos-breakout-full-width-padding-start:0;--ricos-breakout-full-width-padding-end:0" data-id="content-viewer"><div class="tlZw8"><div class="_7UvJA"><h1 class="JLkq2 LI-hR _0uG9a _41BxQ" dir="auto" id="viewer-cuu0z29" tabindex="-1"><span aria-hidden="true" id="abonnez-vous-aux-nouvelles-cuu0z29"></span><span class="_7sCfP"><span>Abonnez-vous aux nouvelles</span></span></h1></div></div></div></div></div></div></div><div><div style="display:grid;width:100%;grid-template-columns:repeat(12, 1fr);grid-auto-rows:minmax(min-content, max-content) 1fr" class="GLWhGq"><div style="grid-row:1 / span 1;grid-column:1 / span 8;display:flex;align-items:flex-end"><label id="form-field-label-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" for="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" class="shszO9W sdcwRYb">E-mail<span aria-hidden="true" class="sHbjjkq">*</span></label></div><div style="grid-row:2 / span 1;grid-column:1 / span 8" data-hook="form-field-email_443e" data-field-type="CONTACTS_EMAIL"><div data-hook="text-field-root" class="sigpKjl oYEaGDN---theme-3-box oYEaGDN--newErrorMessage snZ_6f6 sL5d0Ld"><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__8YVWUI"><div class="s__72lfJk smyXERm oYEaGDN---theme-3-box" data-theme="box" data-success="false" data-error="false" data-empty-state="true"><input id="form-field-input-fa3b0aad-f2fe-47df-ee69-6441506710df-comp-m2y1awex-" data-theme="box" data-success="false" data-error="false" data-empty-state="true" aria-invalid="false" required="" aria-label="E-mail" type="email" class="sjImZoO has-custom-focus" value=""/></div></div></div><div class="s__5mJsIL oKPjoIj---errorAppearance-8-TextOnly s__0oqQvY" data-hook="field-error-email_443e"></div></div><div style="grid-row:1 / span 1;grid-column:9 / span 4;display:flex;align-items:flex-end"></div><div style="grid-row:2 / span 1;grid-column:9 / span 4" data-hook="form-field-d5df37db-369b-4f3c-f561-579e39eeee46" data-field-type="SUBMIT_BUTTON"><div class=""><button data-fullwidth="false" data-mobile="false" data-hook="submit-button" style="--wix-ui-tpa-button-font-size-default:16px;--wix-ui-tpa-button-line-height-default:1.5em" aria-live="assertive" type="button" class="s__3DOwO7 sFTe_V3 sWHTiwe ojChOw_---paddingMode-16-explicitPaddings ojChOw_--wrapContent ojChOw_---hoverStyle-9-underline spPayPE ohrgDww--upgrade sgKo7D0 sasFW9G" data-focusable-focus="false" data-focusable-focus-visible="false" tabindex="0" aria-disabled="false"><span class="sezcxt9 sewooAr">S'ABONNER</span></button></div></div></div></div></div><div role="region" aria-live="polite"><div style="transition:opacity 350ms ease-in-out;opacity:0"></div></div></div></fieldset></form></div></div></div></div></div></div></div><div id="comp-m8omcigd2_r_comp-m8j7owsd" role="" class="HFEOE3 NaeT1r comp-m8omcigd2_r_comp-m8j7owsd-container comp-m8omcigd2_r_comp-m8j7owsd wixui-box" dir="ltr"><div aria-hidden="true" class="jdJeEr NYfD3h inner-box wixui-box"></div><div id="comp-m8omcigd2_r_comp-m8j7o6oq" class="comp-m8omcigd2_r_comp-m8j7o6oq wixui-vector-image"><a data-testid="linkElement" href="https://www.leshabitationssf.com" target="_self" class="IT88M3"><div data-testid="svgRoot-comp-m8omcigd2_r_comp-m8j7o6oq" class="iL7Pq5 gx51wo"> | |
| 2385 | +<svg preserveAspectRatio="xMidYMid meet" data-bbox="0.001 0.001 709.179 270.507" viewBox="0.001 0.001 709.179 270.507" xmlns="http://www.w3.org/2000/svg" data-type="color" role="presentation" aria-hidden="true" aria-label=""> | |
| 2386 | + <g> | |
| 2387 | + <path fill="#082677" d="m185.928 254.418.445-.541-.477-.513c-6.122-6.578-13.814-13.129-21.958-20.064l-.476-.405-.508.364c-5.898 4.221-8.415 8.516-8.415 14.36 0 10.478 7.796 15.25 15.04 15.25 6.843 0 11.273-2.29 16.348-8.451Z" data-color="1"></path> | |
| 2388 | + <path fill="#082677" d="m170.108 224.161.484.392.499-.374c5.569-4.177 7.64-7.667 7.64-12.891-.075-5.235-2.488-11.349-9.041-11.349-5.157 0-8.49 4.078-8.49 10.39 0 5.64 2.872 8.954 8.907 13.832Z" data-color="1"></path> | |
| 2389 | + <path fill="#082677" d="M114.94.14c-8.681 0-16.797.943-25.541 2.971-31.193 7.248-53.724 27.124-61.816 54.532-9.179 31.1 4.063 58.867 40.482 84.889a810 810 0 0 0 32.713 22.182c1.722 1.103 3.511 2.183 5.405 3.326l.224.135c12.056 7.274 25.721 15.519 24.236 31.531-1.238 13.303-13.99 21.543-25.606 21.824-.363.011-.734.021-1.097.021-13.673 0-27.187-6.23-38.603-12.326-8.862-4.733-19.021-10.435-27.444-18.221l-1.165-1.078-.173 1.578c-1.561 14.221-7.651 28.355-12.484 37.708-3.402 6.564-7.21 12.426-11.322 17.426 0 0-.731.918-.964 1.206-3.227 4.062-6.931 8.511-9.933 10.689l-1.851 1.343 2.285.104c20.105.911 43.018 2.779 62.862 5.125 13.834 1.643 28.645 3.195 43.224 3.426h44.718l-1.836-1.431c-5.042-3.93-8.052-9.963-8.052-16.133.087-10.218 5.978-14.689 15.668-20.841l.869-.552-.748-.706c-5.12-4.83-7.609-9.85-7.609-15.341.085-9.375 7.155-17.068 16.72-18.287h.053l.052-.007a21 21 0 0 1 2.685-.173c10.057 0 17.64 6.947 17.64 16.143-.064 2.972-.962 5.618-2.668 7.865a13.6 13.6 0 0 1-2.373 2.431c-1.82 1.414-4.429 3.129-8.21 5.395l-.958.574.852.723c5.041 4.273 11.581 9.906 17.462 15.566l.706.68.524-.827c2.081-3.278 4.102-6.584 5.961-10.977 1.061-2.501 1.27-3.823.741-4.723-.68-1.14-2.852-1.826-7.266-2.296l-.352-.036v-4.228h26.73v4.228l-.358.037c-7.615.84-8.861 2.654-12.556 8.033a798 798 0 0 0-9.529 13.823l-.374.553.478.468c4.99 4.882 12.965 13.784 17.148 19.652l.239.336 51.032.04h2.758c-18.02-9.847-34.305-33.769-39.607-50.438V159.78h69.639l9.231-47.489h-78.87V48.44h33.609c13.523 0 25.594.342 36.361 4.536 5.018 1.945 10.305 4.106 14.931 7.226 1.791 1.213 7.874 5.506 10.978 9.844l.979 1.367.444-1.622c7.182-26.244 16.489-46.84 40.662-68.393l1.568-1.397S119.448.14 114.94.14M92.837 66.03c.479-5.313 3.004-9.826 7.304-13.051 4.897-3.683 11.524-5.55 19.699-5.55 1.346 0 2.741.05 4.145.147 13.351.938 25.962 5.25 37.486 12.816.669.439 3.146 2.275 4.039 2.938-.02 5.04-.21 55.19-.181 60.273-2.079-1.599-5.953-4.572-6.469-4.932-2.521-1.765-5.315-3.49-8.541-5.274-5.29-2.931-10.987-5.553-16.012-7.866l-2.296-1.061c-10.558-4.902-23.698-11.004-33.012-21.106-4.418-4.775-6.721-11.255-6.161-17.336Z" data-color="1"></path> | |
| 2390 | + <path fill="#082677" d="m195.787 263.634-.495-.495a383 383 0 0 1-4.695-4.745l-.637-.659-.567.72c-2.902 3.683-5.723 6.506-8.624 8.63l-1.974 1.445h7.696c1.116 0 2.141.01 2.143.01h.008l11.909-.012-1.386-1.438c-.795-.825-2.002-2.079-3.378-3.455Z" data-color="1"></path> | |
| 2391 | + <path fill="#082677" d="M326.704 270.508q-8.214 0-15.183-2.972-6.971-2.97-12.049-8.267-5.08-5.294-7.889-12.373-2.81-7.077-2.81-15.291 0-10.374 4.269-18.695 4.267-8.32 12.103-13.184 7.834-4.863 18.317-4.863 10.049 0 16.588 2.594 6.537 2.594 9.563 6.159 2.053 2.595 2.377 6.862.324 4.27.324 7.942h-2.81q-2.055-9.724-7.619-14.318-5.566-4.592-15.183-4.593-6.594.001-11.239 2.647-4.648 2.65-7.619 7.241-2.973 4.593-4.376 10.319-1.405 5.728-1.405 11.888 0 13.076 3.35 20.64 3.348 7.566 8.969 10.752 5.618 3.188 12.319 3.188 5.293 0 8.915-.864 3.62-.863 6.646-2.378v-19.02q0-2.269.594-4.538.593-2.269 2.647-4.16 2.053-1.89 5.944-3.08 3.89-1.188 10.482-1.188v2.485q-4.323 0-5.89 2.701t-1.567 7.564v19.775a45.8 45.8 0 0 1-12.805 5.35q-6.755 1.674-14.967 1.675Z" data-color="1"></path> | |
| 2392 | + <path fill="#082677" d="M370.783 268.347v-57.706q0-4.863-1.351-7.835-1.352-2.971-6.214-2.972h-1.621v-2.81h47.007q3.782.001 5.728 1.243t2.702 3.242a11.7 11.7 0 0 1 .756 4.16v8.753h-2.81q-.001-6.699-3.512-9.726-3.512-3.025-9.996-3.025h-18.479v27.447h28.529v4.647h-28.529v29.934h18.695q6.485 0 10.698-2.647 4.215-2.647 6.917-9.456l2.593.864-3.458 9.186q-.972 3.136-2.917 4.917-1.946 1.783-5.944 1.783h-38.795Z" data-color="1"></path> | |
| 2393 | + <path fill="#082677" d="M452.9 270.184q-4.433 0-8.753-.864-4.323-.864-7.943-2.594-3.622-1.728-5.728-4.16c-2.106-2.432-2.107-3.439-2.107-5.457v-12.212h2.593q1.728 11.132 7.024 15.886 5.294 4.756 14.373 4.755 3.997 0 7.132-1.188t4.917-3.62c1.783-2.432 1.783-3.583 1.783-5.89q0-4.646-2.972-7.835-2.973-3.186-8.375-6.538l-13.292-7.889q-7.24-4.213-10.212-8.645-2.972-4.43-2.972-10.374-.001-8.535 6.268-13.508 6.267-4.97 16.642-4.972a42.4 42.4 0 0 1 8.537.865q4.214.865 7.727 2.539 3.51 1.677 5.62 4.053 2.107 2.378 2.107 5.511v12.212h-2.593q-1.839-11.13-6.97-15.832-5.135-4.7-13.67-4.7-3.566 0-6.484 1.297t-4.539 3.674-1.621 5.728q0 4.538 3.08 7.456c3.08 2.918 4.88 3.963 8.483 6.052l13.292 7.889q7.132 4.214 10.482 8.267 3.349 4.054 3.35 9.996 0 9.294-6.646 14.696-6.645 5.403-18.533 5.403Z" data-color="1"></path> | |
| 2394 | + <path fill="#082677" d="M506.541 268.347v-66.675h-8.537q-6.052 0-9.456 2.917-3.404 2.919-3.404 9.834h-2.81v-8.753q0-2.16.756-4.16.755-1.999 2.755-3.242t5.673-1.243h50.574v4.647h-23.341v66.675z" data-color="1"></path> | |
| 2395 | + <path fill="#082677" d="M559.178 268.347q-3.782 0-5.889-1.135c-2.107-1.135-2.396-2.124-2.972-4.106q-.866-2.97-.865-8.375v-57.706h12.319v57.706q-.001 4.863 1.351 7.835 1.35 2.972 6.214 2.972h1.513v2.81z" data-color="1"></path> | |
| 2396 | + <path fill="#082677" d="M607.978 270.508q-10.483 0-18.317-5.024-7.836-5.025-12.103-13.562-4.27-8.536-4.269-19.235c.001-10.699 1.422-13.543 4.269-19.235q4.267-8.536 12.103-13.562 7.834-5.026 18.317-5.025 10.59 0 18.371 5.025t12.103 13.562q4.322 8.538 4.323 19.235c.001 10.697-1.442 13.545-4.323 19.235q-4.323 8.537-12.103 13.562t-18.371 5.024m0-4.646q6.914.001 11.671-3.944 4.754-3.944 7.294-11.4 2.539-7.458 2.54-17.831-.001-10.48-2.54-17.885-2.54-7.4-7.294-11.347-4.757-3.944-11.671-3.944-6.702 0-11.509 3.944-4.81 3.946-7.349 11.347-2.54 7.403-2.539 17.885 0 10.373 2.539 17.831 2.538 7.456 7.349 11.4 4.807 3.945 11.509 3.944" data-color="1"></path> | |
| 2397 | + <path fill="#082677" d="m705.289 268.995-46.035-55.437v54.788h-4.971v-58.354q0-4.43-1.999-7.294t-7.727-2.864h-.756v-2.81h7.348q5.835.001 9.456 1.675a16.6 16.6 0 0 1 6.106 4.81l37.498 44.738v-51.223h4.971v71.971h-3.89Z" data-color="1"></path> | |
| 2398 | + </g> | |
| 2399 | +</svg> | |
| 2400 | +</div></a></div><nav id="comp-m8omcigd2_r_comp-m2y10ib8" aria-label="Site" class="d2V6sy comp-m8omcigd2_r_comp-m2y10ib8 wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcigd2_r_comp-m2y10ib8-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><div id="comp-m8omcigd2_r_comp-mbweuill"></div></div></div></div><div id="comp-m8omcigd2_r_comp-kd5pdf7t" class="N8MGzv _v6ohL PO9MfV comp-m8omcigd2_r_comp-kd5pdf7t wixui-rich-text" data-testid="richTextElement"><p class="font_9 wixui-rich-text__text"><span class="wixui-rich-text__text">© S&F Gestion. Par <span style="font-weight:bold;" class="wixui-rich-text__text"><a href="https://www.justsimpleweb.com/" target="_blank" rel="noreferrer noopener" class="wixui-rich-text__text">Just Simple Web.</a></span></span></p></div></div></section></footer><div id="comp-m8omcih716-pinned-layer" class="comp-m8omcih716-pinned-layer QED8q1"><div id="comp-m8omcih716" class="comp-m8omcih716 S829f_ comp-m8omcih716-container" slots="[object Object]" wix="[object Object]"><div id="comp-m8omcih716_r_comp-kd5px9hr" class="vO4l6e"><div id="overlay-comp-m8omcih716_r_comp-kd5px9hr" class="KyTZlx"></div><div id="container-comp-m8omcih716_r_comp-kd5px9hr" class="V1WvhC" data-block-level-container="MenuContainer"><div class="qINwWP"></div><div id="inlineContentParent-comp-m8omcih716_r_comp-kd5px9hr" class="dz6k8U"><div class="comp-m8omcih716_r_comp-kd5px9hr-overflow-wrapper dz6k8U wixui-mobile-menu ku1hVK" data-testid="responsive-container-overflow"><div data-testid="responsive-container-content" tabindex="-1" role="dialog" aria-label="Site navigation" class="comp-m8omcih716_r_comp-kd5px9hr-container"><nav id="comp-m8omcih716_r_comp-kd5px9kk" aria-label="Site" class="d2V6sy comp-m8omcih716_r_comp-kd5px9kk wixui-vertical-menu"><ul class="OXEw4D"><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-0" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/forfaits" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion d'immeubles à revenus</a></span></div></li><li data-testid="comp-m8omcih716_r_comp-kd5px9kk-1" class="Onlmt7 GrMktH WIf5uD wixui-vertical-menu__item"><div data-testid="itemWrapper" class="keDKhi"><span data-testid="linkWrapper" class="j945c8"><a data-testid="linkElement" href="https://www.leshabitationssf.com/gestion-de-copropriete" target="_self" class="G7GdaI wixui-vertical-menu__item-label">Gestion de copropriété</a></span></div></li></ul></nav><button id="comp-m8omcih716_r_comp-kkmqi5tc" class="comp-m8omcih716_r_comp-kkmqi5tc wixui-vector-image"><div data-testid="svgRoot-comp-m8omcih716_r_comp-kkmqi5tc" class="iL7Pq5 gx51wo LXgYyC"> | |
| 2401 | +<svg preserveAspectRatio="none" data-bbox="65.35 65.35 69.3 69.3" viewBox="65.35 65.35 69.3 69.3" xmlns="http://www.w3.org/2000/svg" data-type="shape" role="img" aria-label="Close Site Navigation"> | |
| 2402 | + <g> | |
| 2403 | + <path d="M134.65 128.99L105.66 100l28.99-28.99-5.66-5.66L100 94.34 71.01 65.35l-5.66 5.66L94.34 100l-28.99 28.99 5.66 5.66L100 105.66l28.99 28.99 5.66-5.66z"></path> | |
| 2404 | + </g> | |
| 2405 | +</svg> | |
| 2406 | +</div></button></div></div></div></div></div></div></div><div id="comp-m8omcih82-pinned-layer" class="comp-m8omcih82-pinned-layer QED8q1"><div id="comp-m8omcih82" style="display:none"></div></div><div id="comp-m8oopad5-pinned-layer" class="comp-m8oopad5-pinned-layer QED8q1"><div id="comp-m8oopad5" style="display:none"></div></div><div id="comp-mfl8zvjs-pinned-layer" class="comp-mfl8zvjs-pinned-layer QED8q1"><div id="comp-mfl8zvjs" style="display:none"></div></div></div></div></div></div></div><div id="comp-m9cxxt3r-pinned-layer" class="comp-m9cxxt3r-pinned-layer QED8q1"><div id="comp-m9cxxt3r" class="comp-m9cxxt3r S829f_ comp-m9cxxt3r-container" slots="[object Object]" wix="[object Object]"><div id="comp-m9cxxt3r_r_comp-m9cxxr9c" class="chBh7 comp-m9cxxt3r_r_comp-m9cxxr9c mqeQ0"><iframe class="UkML6" title="Wix Chat" aria-label="Wix Chat" scrolling="no" allowfullscreen="" allowtransparency="true" allowvr="true" frameBorder="0" allow="clipboard-write;autoplay;camera;microphone;geolocation;vr"></iframe></div></div></div></div></div><div id="SCROLL_TO_BOTTOM" class="qe3oTb ignore-focus SCROLL_TO_BOTTOM" role="region" tabindex="-1" aria-label="bottom of page"><span class="TvbeET">bottom of page</span></div></div></div> | |
| 2407 | + | |
| 2408 | +<script id="wix-skip-played-animations"> | |
| 2409 | + window.__pageRevealPromise && window.__pageRevealPromise.then(function() { | |
| 2410 | + requestAnimationFrame(function() { | |
| 2411 | + try { | |
| 2412 | + var stored = sessionStorage.getItem('wix-motion-played-animations'); | |
| 2413 | + if (stored) { | |
| 2414 | + var played = JSON.parse(stored); | |
| 2415 | + for (var compId in played) { | |
| 2416 | + if (played[compId]) { | |
| 2417 | + var el = document.getElementById(compId); | |
| 2418 | + if (el) { | |
| 2419 | + el.dataset.motionEnter = 'done'; | |
| 2420 | + } | |
| 2421 | + } | |
| 2422 | + } | |
| 2423 | + } | |
| 2424 | + } catch (e) {} | |
| 2425 | + }); | |
| 2426 | + }); | |
| 2427 | +</script> | |
| 2428 | + | |
| 2429 | + <script type="application/json" id="wix-fedops">{"data":{"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"e3414679-f162-4b5c-94e7-1bfa953daabc","isSEO":false,"appNameForBiEvents":"wix-studio"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","isInSEO":false,"platformOnSite":true}}</script> | |
| 2430 | + <script>window.fedops = JSON.parse(document.getElementById('wix-fedops').textContent)</script> | |
| 2431 | + | |
| 2432 | + | |
| 2433 | + <script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js">(()=>{"use strict";var e={},r={};function t(i){var n=r[i];if(void 0!==n)return n.exports;var o=r[i]={exports:{}};return e[i](o,o.exports,t),o.exports}t.rv=()=>"1.6.8",t.ruid="bundler=rspack@1.6.8";let i="unknown",n=e=>{let r,t,n=(r=e.cache,t=e.varnish,`${r||i},${t||i}`);return{caching:n,isCached:n.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}};function o(){return"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let r=16*Math.random()|0;return("x"===e?r:3&r|8).toString(16)})}let a=/Mobile|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i,s=/iPhone|iPad|iPod/i,c=e=>!!e&&s.test(e);!function(){var e;let r,{site:t,rollout:s,fleetConfig:d,requestUrl:l,isInSEO:p,shouldReportErrorOnlyInPanorama:u}=window.fedops.data,m=(e=>{let{userAgent:r}=e.navigator;return/instagram.+google\/google/i.test(r)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(r)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:r}=window;if(!e||!r)return"document";let{webdriver:t,userAgent:i,plugins:n,languages:o}=r;if(t)return"webdriver";if(!n||Array.isArray(n))return"plugins";if(Object.getOwnPropertyDescriptor(n,"0")?.writable)return"plugins-extra";if(!i)return"userAgent";if(i.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!o||0===o.length||!Object.isFrozen(o))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:r}=e;if(r&&/ (\(internal\/)|(\(?file:\/)/.test(r))return"stack"}}return""})()||(p?"seo":""),w=!!m,{isCached:h,caching:f,microPop:g}=((e,r)=>{let t,o=(e=>{let r;try{r=e()}catch{r=[]}let t=r.reduce((e,r)=>(e[r.name]=r.description,e),{});return{cache:t.cache,varnish:t.varnish,microPop:t.dc}})(r);if(o.cache||o.varnish)return n({cache:o.cache||i,varnish:o.varnish||i,microPop:o.microPop});let a=(t=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&t.length?{cache:t[1],varnish:t[2]||i,microPop:t[3]}:null;return a?n(a):{caching:i,isCached:!1}})(document.cookie,()=>performance.getEntriesByType("navigation")[0].serverTiming||[]),v={WixSite:1,UGC:2,Template:3}[t.siteType]||0,x=t.appNameForBiEvents,{isDACRollout:y,siteAssetsVersionsRollout:S}=s,I=+!!y,$=+!!S,b=0===d.code||1===d.code?d.code:null,_=2===d.code,P=Date.now()-window.initialTimestamps.initialTimestamp,O=Math.round(performance.now()-(()=>{try{let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e.activationStart??0}catch{}return 0})()),{visibilityState:T}=document,{fedops:R,addEventListener:k,thunderboltVersion:A}=window;R.apps=R.apps||{},R.apps[x]={startLoadTime:O},R.sessionId=t.sessionId,R.vsi=o(),R.is_cached=h,R.phaseStarted=C(28),R.phaseEnded=C(22),performance.mark("[cache] "+f+(g?" ["+g+"]":"")),R.reportError=(e,r="load")=>{let t=e?.reason||e?.message;t?(u||N(26,`&errorInfo=${t}&errorType=${r}`),E({error:{name:r,message:t,stack:e?.stack}})):e.preventDefault()},k("error",R.reportError),k("unhandledrejection",R.reportError);let M=!1;function N(e,r=""){if(l.includes("suppressbi=true"))return;var i="//frog.wix.com/bolt-performance?src=72&evid="+e+"&appName="+x+"&is_rollout="+b+"&is_company_network="+_+"&is_sav_rollout="+$+"&is_dac_rollout="+I+"&dc="+t.dc+(g?"µPop="+g:"")+"&is_cached="+h+"&msid="+t.metaSiteId+"&session_id="+window.fedops.sessionId+"&ish="+w+"&isb="+w+(w?"&isbr="+m:"")+"&vsi="+window.fedops.vsi+"&caching="+f+(M?",browser_cache":"")+"&pv="+T+"&pn=1&v="+A+"&url="+encodeURIComponent(l)+"&client_url="+encodeURIComponent(window.location.href)+"&st="+v+`&ts=${P}&tsn=${O}`+r;let n=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{n=navigator.sendBeacon(i)}catch{}n||(new Image().src=i)}function E({transaction:e,error:r}){let i=[{fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",componentId:`${"Studio"===window.fedops.data.site.editorName?"wix-studio":`thunderbolt${window.fedops.data.site.isResponsive?"-responsive":""}`}`,platform:"viewer",msid:window.fedops.data.site.metaSiteId,sessionId:window.fedops.vsi,sessionTime:Date.now()-window.initialTimestamps.initialTimestamp,logLevel:r?"ERROR":"INFO",message:r?.message??(e?.name&&`${e.name} START`),errorName:r?.name,errorStack:r?.stack,transactionName:e?.name,transactionAction:e&&"START",isSsr:!1,dataCenter:t.dc,isCached:!!h,isRollout:!!b,isHeadless:!!w,isDacRollout:!!I,isSavRollout:!!$,isCompanyNetwork:!!_}];try{let e=JSON.stringify({messages:i});return navigator.sendBeacon("https://panorama.wixapps.net/api/v1/bulklog",e)}catch(e){console.error(e)}}function C(e){return(r,t)=>{let i=Date.now()-P,n=`&name=${r}&duration=${i}`,o=t&&t.paramsOverrides?Object.keys(t.paramsOverrides).map(e=>e+"="+t.paramsOverrides[e]).join("&"):"";N(e,o?`${n}&${o}`:n)}}if(k("pageshow",({persisted:e})=>{e&&!M&&(M=!0,R.is_cached=!0)},!0),window.__browser_deprecation__)return;let D=document.referrer?`&document_referrer=${document.referrer}`:"",U=window.sessionStorage.getItem("isMpa"),B=U?`&isMpa=${U}`:"";U&&window.sessionStorage.removeItem("isMpa");let W=window.sessionStorage.getItem("mpaSessionId");W||(W=o(),window.sessionStorage.setItem("mpaSessionId",W)),window.fedops.mpaSessionId=W;let j=((e,r=!1)=>{if(!e)return 1;let t=e.navigator?.userAgent||"",i=e.devicePixelRatio||1;if(c(t))return e.visualViewport?.scale||1;if((e=>!!e&&!!e&&a.test(e)&&!c(e))(t)){let e,t;if(!r)return 1;let n=(()=>{try{let e=localStorage.getItem("wix_dpr_baseline");if(!e)return null;let r=Number(e);return r>0?{dpr:r}:null}catch{return null}})();return n?(e=i,t=n.dpr,!e||!t||t<=0||e<=t?1:Math.round(e/t*100)/100):1}return((e,r=0,t=0)=>{if(!e||!r||!t)return 1;let i=e&&r&&t?Math.trunc(e*r)<=t?1:2:1;return!i||e<=i?1:Math.round(e/i*100)/100})(i,e.innerWidth,e.outerWidth)})(window)>1,F=(e=window,r=e.visualViewport?.scale,{devicePixelRatio:e.devicePixelRatio||1,innerWidth:e.innerWidth,outerWidth:e.outerWidth,...null!=r?{visualViewportScale:r}:{}});N(21,`&platformOnSite=${window.fedops.data.platformOnSite}&hasInitialZoom=${j}&infoInitialZoom=${encodeURIComponent(JSON.stringify(F))}&mpaSessionId=${W}${D}${B}`),E({transaction:{name:"PANORAMA_COMPONENT_LOAD"}})}()})(); | |
| 2434 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendFedopsLoadStarted.inline.ed1ed98a.bundle.min.js.map</script> | |
| 2435 | + | |
| 2436 | + | |
| 2437 | + <!-- Polyfills check --> | |
| 2438 | + <script> | |
| 2439 | + if ( | |
| 2440 | + typeof Promise === 'undefined' || | |
| 2441 | + typeof Set === 'undefined' || | |
| 2442 | + typeof Object.assign === 'undefined' || | |
| 2443 | + typeof Array.from === 'undefined' || | |
| 2444 | + typeof Symbol === 'undefined' | |
| 2445 | + ) { | |
| 2446 | + // send bi in order to detect the browsers in which polyfills are not working | |
| 2447 | + window.fedops.phaseStarted('missing_polyfills') | |
| 2448 | + } | |
| 2449 | + </script> | |
| 2450 | + | |
| 2451 | + | |
| 2452 | +<!-- initCustomElements # 1--> | |
| 2453 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js">(()=>{"use strict";var e,r,o,a,t,i,c,n={},d={};function f(e){var r=d[e];if(void 0!==r)return r.exports;var o=d[e]={id:e,loaded:!1,exports:{}};return n[e].call(o.exports,o,o.exports,f),o.loaded=!0,o.exports}if(f.m=n,f.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return f.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,f.t=function(o,a){if(1&a&&(o=this(o)),8&a||"object"==typeof o&&o&&(4&a&&o.__esModule||16&a&&"function"==typeof o.then))return o;var t=Object.create(null);f.r(t);var i={};e=e||[null,r({}),r([]),r(r)];for(var c=2&a&&o;("object"==typeof c||"function"==typeof c)&&!~e.indexOf(c);c=r(c))Object.getOwnPropertyNames(c).forEach(e=>{i[e]=()=>o[e]});return i.default=()=>o,f.d(t,i),t},f.d=(e,r)=>{for(var o in r)f.o(r,o)&&!f.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},f.f={},f.e=e=>Promise.all(Object.keys(f.f).reduce((r,o)=>(f.f[o](e,r),r),[])),f.u=e=>"6948"===e?"thunderbolt-commons.9eb9a4be.bundle.min.js":"3033"===e?"fastdom.inline.48a8bd4b.bundle.min.js":"1619"===e?"custom-element-utils.inline.bec24b26.bundle.min.js":"5205"===e?"render-indicator.inline.df41a0e9.bundle.min.js":"7151"===e?"version-indicator.inline.704acef2.bundle.min.js":"6008"===e?"bi-common.inline.24faadf6.bundle.min.js":""+(({1059:"santa-platform-utils",1090:"speculationRules",1116:"passwordProtectedPage",1122:"group_19",1211:"siteUrlService",1278:"group_24",131:"siteThemeService",1353:"pageContextService",1374:"editorWixCodeSdk",1438:"sdkStateService",1522:"builderContextProviders",1533:"merge-mappers",1538:"businessLogger",1611:"group_44",1638:"quickActionBar",1788:"qaApi",1791:"businessLoggerService",1799:"BackgroundLayer",180:"urlService",1802:"provideCssService",1818:"Repeater_FixedColumns",182:"consentPolicy",1869:"windowScroll",1899:"platformSiteBusinessLoggerService",1932:"customCss",1951:"group_45",1969:"wixEcomFrontendWixCodeSdk",2017:"debug",2031:"platformInteractionsService",2089:"group_47",2122:"siteDynamicRouteService",2130:"ForwardRef",2198:"platformDynamicRouteService",2214:"siteConfigurationService",2220:"group_31",2221:"anchorsService",2226:"translationsService",2242:"builderModuleLoader",2303:"externalServices",2304:"TPAModal",2442:"group_37",2463:"siteTopologyService",2570:"thunderbolt-components-registry",2609:"imagePlaceholder",2616:"linkUtilsService",2624:"group_2",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",2771:"publicApiCallerService",28:"thunderbolt-components-registry-builder",2859:"platformEnvironmentService",2867:"namedSignalsService",2870:"platformNamedSignalsService",2880:"environmentService",294:"stores",2996:"seoService",3026:"lightboxService",3187:"businessManager",3220:"platformPublicApiCallerService",3221:"multilingual",325:"servicesManager",3336:"platformExperimentsService",3370:"domSelectors",338:"platformSiteTopologyService",3399:"platformSiteDynamicRouteService",3407:"clientSdk",3531:"panorama",3556:"warmupData",3607:"UnauthorizedComponent",3654:"ssrCache",3714:"seo-api-converters",3801:"wixDomSanitizer",3872:"siteMembers",3884:"tpaModuleProvider",3894:"protectedPages",3937:"siteRendererConfigurationService",3968:"platformEditorContextService",3979:"dynamicPages",399:"searchBox",3992:"componentsqaapi",3996:"environmentWixCodeSdk",4134:"group_4",4183:"svgLoader",419:"TPAPopup",4217:"group_21",4218:"group_0",4310:"becky-css",4331:"platform",4345:"dashboardWixCodeSdk",4354:"editorElementsDynamicTheme",4443:"pagesService",4444:"siteExperimentsService",4456:"sitePagesService",4499:"siteScrollBlockerService",4675:"stickyToComponent",470:"rendererConfigurationService",4708:"reporter-api",477:"group_32",4803:"dynamicRouteService",4819:"group_35",4990:"accessibility",5002:"group_28",5067:"accessibilityBrowserZoom",5154:"servicesManagerReact",5183:"renderIndicator",5187:"group_7",5213:"scrollToAnchor",5217:"siteRenderingContextService",5221:"containerSliderService",5238:"triggersAndReactions",5289:"SiteStyles",5296:"platformPubsub",5298:"assetsLoader",5363:"environment",5391:"widgetWixCodeSdk",5474:"platformPageContextService",5581:"platformRenderingContextService",5675:"group_41",569:"siteMembersService",572:"animationsWixCodeSdk",5735:"platformSiteSiteThemeService",5745:"ByocStyles",5750:"platformSiteMembersService",5761:"group_10",5794:"seo-api",5837:"group_14",5850:"siteBusinessLoggerService",5863:"appMonitoring",5874:"navigation",5901:"group_5",5976:"AppPart",6070:"platformSiteInteractionsService",6095:"styleUtilsService",6103:"usedPlatformApis",6134:"routerService",6135:"customUrlMapper",6155:"imagePlaceholderService",6182:"motion",6218:"group_11",6258:"group_20",6285:"versionIndicator",6336:"siteSiteThemeService",6428:"ContentReflowBanner",6453:"platformRendererConfigurationService",6526:"siteDeviceInfoService",6647:"mobileFullScreen",6715:"feedback",6732:"siteProvideCssService",6749:"router",6839:"platformFedopsLoggerService",6891:"group_38",6979:"consentPolicyService",6992:"platformTranslationsService",700:"module-executor",7016:"externalComponent",7109:"group_43",7141:"group_50",7146:"serviceRegistrar",7200:"canvas",7233:"FontRulersContainer",7284:"widget",7291:"platformMultilingualService",7356:"group_48",7360:"AppPart2",7482:"vsm-css",7502:"group_42",7538:"group_8",7554:"headAppenderService",7575:"renderer",7644:"group_6",7716:"group_40",7726:"TPAUnavailableMessageOverlay",7729:"tpa",7796:"Repeater_FluidColumns",7801:"testApi",7859:"siteMembersWixCodeSdk",7862:"platformLocaleService",7896:"platformSiteUrlService",7921:"interactions",7981:"domStore",8051:"animations",8207:"FontFaces",821:"group_25",8211:"cyclicTabbingService",8255:"platformRouterService",8277:"pageAnchors",8319:"platformSitePagesService",8332:"platformSiteThemeService",8339:"platformLinkUtilsService",8402:"platformConfigurationService",8428:"containerSlider",8547:"group_49",8559:"TPAWorker",8574:"builderComponent",858:"fedopsLoggerService",8634:"platformDeviceInfoService",8656:"RemoteRefDeadComp",8662:"GhostComp",8678:"cyclicTabbing",87:"ooi",8729:"group_9",8742:"topologyService",8770:"platformStyleUtilsService",8897:"siteAboveTheFoldService",8919:"group_3",8932:"group_39",897:"group_29",8970:"contentReflow",898:"group_46",906:"onloadCompsBehaviors",9081:"group_18",9091:"platformTopologyService",9111:"BuilderComponentDeadComp",9132:"siteEditorContextService",9134:"group_36",9182:"group_51",9214:"multilingualService",9270:"siteScrollBlocker",9316:"platformPagesService",9387:"group_27",9395:"popups",9421:"provideComponentService",9467:"platformSdkStateService",95:"componentsLoader",959:"group_23",9740:"wix-seo-SEO_DEFAULT",9763:"group_30",9764:"platformConsentPolicyService",9768:"group_22",9779:"tslib.inline",9794:"siteLocaleService",9845:"routerFetch",9863:"tpaWidgetNativeDeadComp",9899:"siteInteractionsService",9980:"mpaNavigation"})[e]||e)+"."+({1059:"97687ea7",1090:"851746fd",1116:"ca8d2b5a",1122:"91a95564",1171:"2a59485b",1193:"2569022a",1211:"e04e6b11",1239:"13b3236c",1278:"973ec0eb",131:"cfa0ee23",1353:"8e408c09",1374:"038d9db5",1438:"e883b66a",1463:"75cc62bf",1522:"0e729e1b",1533:"5cea6f9f",1538:"b3c0de71",1546:"633fdeb7",1567:"8a2ed6ac",1593:"185974ae",1611:"32da439a",1638:"e48f9c16",1788:"54c48f6e",1791:"2d664784",1799:"c6051cdc",180:"646756e1",1802:"3df59c19",1818:"82eb4dab",182:"a987db6a",1869:"94e57fc8",1899:"1b2057a6",1932:"f836d8c7",1951:"c1314395",196:"baa4a8cb",1962:"e93dd1da",1969:"62ed7f20",1997:"219fdc2a",2017:"b53af7c0",203:"93b8a21e",2031:"d22bb148",2046:"c3b0bdb6",2089:"84e4b439",2122:"cf9d7361",2130:"972f1da6",2198:"dcdf55cd",2214:"b3407eb8",2220:"820e7611",2221:"2b2254e2",2226:"d3f0a0ce",2242:"b26ca23d",2303:"a9aa058b",2304:"1c4e2cd1",2355:"dff147c9",2442:"22be02da",2463:"0391096e",2538:"bed4d851",2559:"35044fa3",2570:"5b11072b",2609:"3c11dd4b",2616:"89b26de8",2624:"910667fd",2639:"7853b464",2689:"fa382800",2725:"6b13159c",2735:"4bd510e1",2771:"da04ce9a",2777:"337d02e4",28:"6b469a9d",2859:"2b9317db",2867:"413074b3",2870:"4e4d5f25",2880:"676d132e",294:"271cca5b",2996:"c651b2c6",3026:"b35591f5",3187:"6bd030ea",3220:"4716e932",3221:"9d540a42",325:"97378610",330:"6686e7ed",3336:"da9f5032",3370:"1b55da8c",338:"7eda8ac1",3399:"ab0972b9",3407:"f155b667",3415:"27e0927d",3456:"4a19a8fa",3480:"987f1496",3531:"a27650b3",3556:"780ab490",3560:"1762fb1e",3583:"f8ed7ce7",3600:"83d984c4",3607:"8e13c2dd",3634:"94e30248",3654:"f7fb72e6",3714:"2cc9a061",3723:"af439be2",3801:"34d4abc7",3872:"3aafb18a",3884:"51ac9350",3894:"6b5d83a2",3937:"e6df8159",3968:"416cce38",3979:"4ff4e6f5",399:"b003db84",3992:"17ef48ef",3996:"566c4d0f",4134:"097eac4d",4183:"eaac3f9d",419:"a13a7947",4217:"cb838eb5",4218:"b58e75e0",4310:"ac0b3c00",4331:"d1162e0c",4345:"de335548",4354:"89ba8f0a",437:"748f01d1",4443:"cdab3cff",4444:"681aa90e",4456:"d8cb8478",4499:"240cf11b",4675:"726f62ad",470:"ef2ebe53",4708:"71a5ef2b",477:"71b56717",4803:"824ca8f9",4819:"35cb204d",4980:"cbd2ff42",4990:"e4888b8e",5002:"517aa7aa",5028:"dcbabd4f",5067:"f43a588a",5154:"2187b4f5",5183:"c95e75a9",5187:"0a21109c",5192:"cc825f45",5213:"bd63e157",5217:"63721a41",5221:"fec3cd3a",5238:"2c5caf8e",5267:"a4e6564b",5289:"a8b3f792",5296:"d41c28b7",5298:"664431f5",5363:"7ac3f543",5391:"c191ad97",5474:"55cfd378",5539:"4aa2904e",5581:"256b7c35",5675:"fdc7f282",569:"ed1463fc",572:"9f05a568",5735:"5a3cfec9",5745:"4ac8a223",5750:"d471f2af",5761:"d3c97b81",5794:"416b98a6",5837:"ce4fa204",5850:"333eb10e",5863:"f7f650a3",5874:"eba89c08",5901:"3acec901",5976:"6a8402a6",6070:"0d827fa3",6086:"61c45f4e",6095:"98a18ef2",6103:"2fac58dc",6134:"664e9f31",6135:"64f7515a",6155:"c6a1d133",6182:"a51fa0ca",6198:"ce015fff",6218:"18733d1a",6223:"f63c905f",6258:"2588c8a2",6285:"a8fe3456",6336:"6721363c",6428:"dffb6c1d",6453:"9f3a14c4",6474:"a86b17b7",6526:"0362d8ae",6647:"26016b15",6715:"9279907e",6732:"a3d18858",6749:"32a795c0",6753:"afdd5351",6839:"67cdc1b8",6891:"115f04f2",6979:"2e4502a1",6992:"b199b90f",700:"81334661",7016:"2e78f1f7",7109:"fe23d399",7127:"130b4e34",7141:"f473d1ca",7146:"3376f5cc",7186:"3bc830d5",7200:"bfd00c3f",7233:"f9341c8b",7257:"d71af493",7284:"e18b4874",7291:"e92e4859",7356:"8aafa69d",7360:"327ec15d",7482:"60a84d33",7502:"00edceba",7538:"9220f1c1",754:"9c52b3e5",7554:"86d2abc6",7575:"320eeef1",7644:"84400d58",7716:"b48b66d9",7726:"8e304d9b",7729:"6edeff75",7796:"6c0fb6fc",7801:"6a858867",7859:"957dbd39",7862:"1a0ce6ce",7896:"beb65605",7921:"b40c3cbb",7981:"ece10f59",8051:"d94f0463",8052:"29e79fff",81:"54fe0482",8155:"5a0141ee",8166:"deb21518",8167:"d0b9d59c",8207:"6c3c8de5",821:"724dfd3a",8211:"b9cd99de",8255:"40d16460",8268:"1028e4f2",8277:"5ac241c2",8319:"9851d9fb",8332:"a711845b",8339:"2ccc441f",8402:"b66f7f7f",8428:"8d71c775",8487:"a7db3a46",8547:"4392f91f",8559:"6b34ddad",8574:"ce42a157",858:"84374dc7",8634:"4b8ddea3",8656:"afc9c6e5",8662:"56f311d7",8678:"a0ad2cb2",87:"35dd0965",8729:"1b2aefb1",8742:"1abeb981",8770:"04ec9910",8863:"d3d9107f",8897:"c87fc374",8919:"a22a799c",8932:"dca0f811",8968:"069cf880",897:"5e0152fc",8970:"3a7544b6",898:"1fd93beb",9022:"f39960c7",906:"b457547d",9071:"a9e0d43e",9081:"dacb1809",9091:"8368e3eb",9111:"551bb85b",9132:"ffc79f2e",9134:"4b0f738f",9182:"49f9c6e7",9214:"2ca66c92",9269:"712ee971",9270:"d7ac0282",9316:"81af62d8",9387:"82d9db18",9395:"2b704839",9421:"5886298e",9467:"1b10e3bd",95:"037bc6b5",959:"82012ddd",9740:"6c1af586",9763:"9d2d4c10",9764:"58cf53ee",9768:"e636f159",9779:"cdbfecc7",9794:"56234440",9845:"c9420889",9863:"91e76dd4",9899:"6d018680",9954:"07a4e2f0",9980:"bd7e02b4"})[e]+".chunk.min.js",f.miniCssF=e=>"5205"===e?"render-indicator.inline.d4591556.min.css":"7151"===e?"version-indicator.inline.7046c9c0.min.css":""+({1799:"BackgroundLayer",1818:"Repeater_FixedColumns",2304:"TPAModal",2689:"TPABaseComponent",2735:"TPAPreloaderOverlay",419:"TPAPopup",5187:"group_7",5976:"AppPart",6428:"ContentReflowBanner",7233:"FontRulersContainer",7360:"AppPart2",7726:"TPAUnavailableMessageOverlay",7796:"Repeater_FluidColumns",9863:"tpaWidgetNativeDeadComp"})[e]+"."+({1799:"0748fc04",1818:"17a84fdd",2304:"e96a6f61",2689:"88cd9698",2735:"44f745b9",419:"82254d4c",5187:"c472a333",5976:"a5efb1fa",6428:"91e2605c",7233:"3c707054",7360:"e5b1bfd5",7726:"2ffa98e3",7796:"564dd9aa",9863:"6f11f5af"})[e]+".chunk.min.css",f.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),f.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o={},f.l=function(e,r,a,t){if(o[e])return void o[e].push(r);if(void 0!==a)for(var i,c,n=document.getElementsByTagName("script"),d=0;d<n.length;d++){var l=n[d];if(l.getAttribute("src")==e){i=l;break}}i||(c=!0,(i=document.createElement("script")).timeout=120,f.nc&&i.setAttribute("nonce",f.nc),i.src=e),o[e]=[r];var s=function(r,a){i.onerror=i.onload=null,clearTimeout(p);var t=o[e];if(delete o[e],i.parentNode&&i.parentNode.removeChild(i),t&&t.forEach(function(e){return e(a)}),r)return r(a)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=s.bind(null,i.onerror),i.onload=s.bind(null,i.onload),c&&document.head.appendChild(i)},f.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),a=[],f.O=(e,r,o,t)=>{if(r){t=t||0;for(var i=a.length;i>0&&a[i-1][2]>t;i--)a[i]=a[i-1];a[i]=[r,o,t];return}for(var c=1/0,i=0;i<a.length;i++){for(var[r,o,t]=a[i],n=!0,d=0;d<r.length;d++)(!1&t||c>=t)&&Object.keys(f.O).every(e=>f.O[e](r[d]))?r.splice(d--,1):(n=!1,t<c&&(c=t));if(n){a.splice(i--,1);var l=o();void 0!==l&&(e=l)}}return e},f.p="https://static.parastorage.com/services/wix-thunderbolt/dist/",f.rv=()=>"1.6.8","undefined"!=typeof document){var l=function(e,r,o,a,t){var i=document.createElement("link");return i.rel="stylesheet",i.type="text/css",f.nc&&(i.nonce=f.nc),i.href=r,i.onerror=i.onload=function(o){if(i.onerror=i.onload=null,"load"===o.type)a();else{var c=o&&("load"===o.type?"missing":o.type),n=o&&o.target&&o.target.href||r,d=Error("Loading CSS chunk "+e+" failed.\\n("+n+")");d.code="CSS_CHUNK_LOAD_FAILED",d.type=c,d.request=n,i.parentNode&&i.parentNode.removeChild(i),t(d)}},o?o.parentNode.insertBefore(i,o.nextSibling):document.head.appendChild(i),i},s=function(e,r){for(var o=document.getElementsByTagName("link"),a=0;a<o.length;a++){var t=o[a],i=t.getAttribute("data-href")||t.getAttribute("href");if(i&&(i=i.split("?")[0]),"stylesheet"===t.rel&&(i===e||i===r))return t}for(var c=document.getElementsByTagName("style"),a=0;a<c.length;a++){var t=c[a],i=t.getAttribute("data-href");if(i===e||i===r)return t}},p={404:0};f.f.miniCss=function(e,r){if(p[e])r.push(p[e]);else 0!==p[e]&&({1799:1,1818:1,2304:1,2689:1,2735:1,419:1,5187:1,5205:1,5976:1,6428:1,7151:1,7233:1,7360:1,7726:1,7796:1,9863:1})[e]&&r.push(p[e]=new Promise(function(r,o){var a=f.miniCssF(e),t=f.p+a;if(s(a,t))return r();l(e,t,null,r,o)}).then(function(){p[e]=0},function(r){throw delete p[e],r}))}}t={404:0},f.f.j=function(e,r){var o=f.o(t,e)?t[e]:void 0;if(0!==o)if(o)r.push(o[2]);else if(404!=e){var a=new Promise((r,a)=>o=t[e]=[r,a]);r.push(o[2]=a);var i=f.p+f.u(e),c=Error();f.l(i,function(r){if(f.o(t,e)&&(0!==(o=t[e])&&(t[e]=void 0),o)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;c.message="Loading chunk "+e+" failed.\n("+a+": "+i+")",c.name="ChunkLoadError",c.type=a,c.request=i,o[1](c)}},"chunk-"+e,e)}else t[e]=0},f.O.j=e=>0===t[e],i=(e,r)=>{var o,a,[i,c,n]=r,d=0;if(i.some(e=>0!==t[e])){for(o in c)f.o(c,o)&&(f.m[o]=c[o]);if(n)var l=n(f)}for(e&&e(r);d<i.length;d++)a=i[d],f.o(t,a)&&t[a]&&t[a][0](),t[a]=0;return f.O(l)},(c=self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).forEach(i.bind(null,0)),c.push=i.bind(null,c.push.bind(c)),f.ruid="bundler=rspack@1.6.8"})(); | |
| 2454 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/webpack-runtime.3a9e18a8.bundle.min.js.map</script> | |
| 2455 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["3033"],{17709(t){!function(e){"use strict";var i=function(){},n=e.requestAnimationFrame||e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.msRequestAnimationFrame||function(t){return setTimeout(t,16)};function s(){this.reads=[],this.writes=[],this.raf=n.bind(e),i("initialized",this)}function r(t){t.scheduled||(t.scheduled=!0,t.raf(a.bind(null,t)),i("flush scheduled"))}function a(t){i("flush");var e,n=t.writes,s=t.reads;try{i("flushing reads",s.length),t.runTasks(s),i("flushing writes",n.length),t.runTasks(n)}catch(t){e=t}if(t.scheduled=!1,(s.length||n.length)&&r(t),e)if(i("task errored",e.message),t.catch)t.catch(e);else throw e}function u(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}s.prototype={constructor:s,runTasks:function(t){var e;for(i("run tasks");e=t.shift();)e()},measure:function(t,e){i("measure");var n=e?t.bind(e):t;return this.reads.push(n),r(this),n},mutate:function(t,e){i("mutate");var n=e?t.bind(e):t;return this.writes.push(n),r(this),n},clear:function(t){return i("clear",t),u(this.reads,t)||u(this.writes,t)},extend:function(t){if(i("extend",t),"object"!=typeof t)throw Error("expected object");var e=Object.create(this);return function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t[i]=e[i])}(e,t),e.fastdom=this,e.initialize&&e.initialize(),e},catch:null},t.exports=e.fastdom=e.fastdom||new s}("undefined"!=typeof window?window:void 0!==this?this:globalThis)}}]); | |
| 2456 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/fastdom.inline.48a8bd4b.bundle.min.js.map</script> | |
| 2457 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1619"],{26350(e,t,i){i.r(t),i.d(t,{STATIC_MEDIA_URL:()=>eH,fileType:()=>v,fittingTypes:()=>r,getData:()=>eR,MEDIA_ROOT_URL:()=>ez,sdk:()=>eB,isWEBP:()=>S,alignTypes:()=>h,htmlTag:()=>u,getPlaceholder:()=>eC,getResponsiveImageProps:()=>e$,upscaleMethods:()=>m,getFileExtension:()=>k,populateGlobalFeatureSupport:()=>q});let r={SCALE_TO_FILL:"fill",SCALE_TO_FIT:"fit",STRETCH:"stretch",ORIGINAL_SIZE:"original_size",TILE:"tile",TILE_HORIZONTAL:"tile_horizontal",TILE_VERTICAL:"tile_vertical",FIT_AND_TILE:"fit_and_tile",LEGACY_STRIP_TILE:"legacy_strip_tile",LEGACY_STRIP_TILE_HORIZONTAL:"legacy_strip_tile_horizontal",LEGACY_STRIP_TILE_VERTICAL:"legacy_strip_tile_vertical",LEGACY_STRIP_SCALE_TO_FILL:"legacy_strip_fill",LEGACY_STRIP_SCALE_TO_FIT:"legacy_strip_fit",LEGACY_STRIP_FIT_AND_TILE:"legacy_strip_fit_and_tile",LEGACY_STRIP_ORIGINAL_SIZE:"legacy_strip_original_size",LEGACY_ORIGINAL_SIZE:"actual_size",LEGACY_FIT_WIDTH:"fitWidth",LEGACY_FIT_HEIGHT:"fitHeight",LEGACY_FULL:"full",LEGACY_BG_FIT_AND_TILE:"legacy_tile",LEGACY_BG_FIT_AND_TILE_HORIZONTAL:"legacy_tile_horizontal",LEGACY_BG_FIT_AND_TILE_VERTICAL:"legacy_tile_vertical",LEGACY_BG_NORMAL:"legacy_normal"},n="fill",a="fill_focal",o="crop",s="legacy_crop",l="legacy_fill",h={CENTER:"center",TOP:"top",TOP_LEFT:"top_left",TOP_RIGHT:"top_right",BOTTOM:"bottom",BOTTOM_LEFT:"bottom_left",BOTTOM_RIGHT:"bottom_right",LEFT:"left",RIGHT:"right"},c={[h.CENTER]:{x:.5,y:.5},[h.TOP_LEFT]:{x:0,y:0},[h.TOP_RIGHT]:{x:1,y:0},[h.TOP]:{x:.5,y:0},[h.BOTTOM_LEFT]:{x:0,y:1},[h.BOTTOM_RIGHT]:{x:1,y:1},[h.BOTTOM]:{x:.5,y:1},[h.RIGHT]:{x:1,y:.5},[h.LEFT]:{x:0,y:.5}},d={center:"c",top:"t",top_left:"tl",top_right:"tr",bottom:"b",bottom_left:"bl",bottom_right:"br",left:"l",right:"r"},u={BG:"bg",IMG:"img",SVG:"svg"},m={AUTO:"auto",CLASSIC:"classic",SUPER:"super"},g={radius:"0.66",amount:"1.00",threshold:"0.01"},p={uri:"",css:{img:{},container:{}},attr:{img:{},container:{}},transformed:!1},f=[1.5,2,4],_={HIGH:{size:196e4,quality:90,maxUpscale:1},MEDIUM:{size:36e4,quality:85,maxUpscale:1},LOW:{size:16e4,quality:80,maxUpscale:1.2},TINY:{size:0,quality:80,maxUpscale:1.4}},b="HIGH",T="MEDIUM",I="contrast",E="brightness",w="saturation",L="blur",v={JPG:"jpg",JPEG:"jpeg",JPE:"jpe",PNG:"png",WEBP:"webp",WIX_ICO_MP:"wix_ico_mp",WIX_MP:"wix_mp",GIF:"gif",SVG:"svg",AVIF:"avif",UNRECOGNIZED:"unrecognized"};function A(e,...t){return function(...i){let r=i[i.length-1]||{},n=[e[0]];return t.forEach(function(t,a){let o=Number.isInteger(t)?i[t]:r[t];n.push(o,e[a+1])}),n.join("")}}function O(e){return e[e.length-1]}v.JPG,v.JPEG,v.JPE,v.PNG,v.GIF,v.WEBP;let y=[v.PNG,v.JPEG,v.JPG,v.JPE,v.WIX_ICO_MP,v.WIX_MP,v.WEBP,v.AVIF],C=[v.JPEG,v.JPG,v.JPE];function R(e,t,i){var n;return i&&t&&!(!(n=t.id)||!n.trim()||"none"===n.toLowerCase())&&Object.values(r).includes(e)}function M(e,t,i,r){var n;if(n=e,/(^https?)|(^data)|(^\/\/)/.test(n)||(S(e)||P(e))&&t&&!i)return!1;let a=y.includes(k(e)),o=!!G(e)&&!!(i||r);return a||o}function x(e){return k(e)===v.PNG}function S(e){return k(e)===v.WEBP}function G(e){return k(e)===v.GIF}function P(e){return k(e)===v.AVIF}let N=["/","\\","?","<",">","|","\u201C",":",'"'].map(encodeURIComponent),F=["\\.","\\*"];function k(e){return(/[.]([^.]+)$/.exec(e)&&/[.]([^.]+)$/.exec(e)[1]||"").toLowerCase()}function $(e,t,i,r,a){let o;return o=a===n?Math.max(i/e,r/t):"fit"===a?Math.min(i/e,r/t):1}function B(e,t,i,r,a,o){let{scaleFactor:s,width:l,height:h}=function(e,t,i,r,n){let a,o=i,s=r;if(a=$(e,t,i,r,n),"fit"===n&&(o=e*a,s=t*a),o&&s&&o*s>25e6){let i=Math.sqrt(25e6/(o*s));o*=i,s*=i,a=$(e,t,o,s,n)}return{scaleFactor:a,width:o,height:s}}(e=e||r.width,t=t||r.height,r.width*a,r.height*a,i);return function(e,t,i,r,a,o,s){let{optimizedScaleFactor:l,upscaleMethodValue:h,forceUSM:c}=function(e,t,i,r){if("auto"===r)return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1};if("super"===r)return{optimizedScaleFactor:O(f),upscaleMethodValue:2,forceUSM:!(f.includes(i)||i>O(f))};return{optimizedScaleFactor:_[U(e,t)].maxUpscale,upscaleMethodValue:1,forceUSM:!1}}(e,t,o,a),d=i,u=r;if(o<=l)return{width:d,height:u,scaleFactor:o,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!1};switch(s){case n:d=l/o*i,u=l/o*r;break;case"fit":d=e*l,u=t*l}return{width:d,height:u,scaleFactor:l,upscaleMethodValue:h,forceUSM:c,cssUpscaleNeeded:!0}}(e,t,l,h,o,s,i)}function H(e){return e.alignment&&d[e.alignment]||d[h.CENTER]}function z(e){let t;return!e||"number"!=typeof e.x||isNaN(e.x)||"number"!=typeof e.y||isNaN(e.y)||(t={x:W(Math.max(0,Math.min(100,e.x))/100,2),y:W(Math.max(0,Math.min(100,e.y))/100,2)}),t}function U(e,t){let i=e*t;return i>_[b].size?b:i>_[T].size?T:i>_.LOW.size?"LOW":"TINY"}function W(e,t){let i=Math.pow(10,t||0);return(e*i/i).toFixed(t)}let Y={isMobile:!1},D=function(e,t){Y[e]=t};function q(){if("undefined"!=typeof window&&"undefined"!=typeof navigator){let e=window.matchMedia&&window.matchMedia("(max-width: 767px)").matches,t=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);D("isMobile",e&&t)}}function j(e,t){let i={css:{container:{}}},{css:n}=i,{fittingType:a}=e;switch(a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.LEGACY_STRIP_ORIGINAL_SIZE:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FIT:case r.LEGACY_STRIP_SCALE_TO_FIT:n.container.backgroundSize="contain",n.container.backgroundRepeat="no-repeat";break;case r.STRETCH:n.container.backgroundSize="100% 100%",n.container.backgroundRepeat="no-repeat";break;case r.SCALE_TO_FILL:case r.LEGACY_STRIP_SCALE_TO_FILL:n.container.backgroundSize="cover",n.container.backgroundRepeat="no-repeat";break;case r.TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.TILE_VERTICAL:case r.LEGACY_STRIP_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.TILE:case r.LEGACY_STRIP_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_STRIP_FIT_AND_TILE:n.container.backgroundSize="contain",n.container.backgroundRepeat="repeat";break;case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat";break;case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-x";break;case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="repeat-y";break;case r.LEGACY_BG_NORMAL:n.container.backgroundSize="auto",n.container.backgroundRepeat="no-repeat"}switch(t.alignment){case h.CENTER:n.container.backgroundPosition="center center";break;case h.LEFT:n.container.backgroundPosition="left center";break;case h.RIGHT:n.container.backgroundPosition="right center";break;case h.TOP:n.container.backgroundPosition="center top";break;case h.BOTTOM:n.container.backgroundPosition="center bottom";break;case h.TOP_RIGHT:n.container.backgroundPosition="right top";break;case h.TOP_LEFT:n.container.backgroundPosition="left top";break;case h.BOTTOM_RIGHT:n.container.backgroundPosition="right bottom";break;case h.BOTTOM_LEFT:n.container.backgroundPosition="left bottom"}return i}let V={[h.CENTER]:"center",[h.TOP]:"top",[h.TOP_LEFT]:"top left",[h.TOP_RIGHT]:"top right",[h.BOTTOM]:"bottom",[h.BOTTOM_LEFT]:"bottom left",[h.BOTTOM_RIGHT]:"bottom right",[h.LEFT]:"left",[h.RIGHT]:"right"},Z={position:"absolute",top:"auto",right:"auto",bottom:"auto",left:"auto"};function J(e,t){let i={css:{container:{},img:{}}},{css:n}=i,{fittingType:a}=e,o=t.alignment;switch(n.container.position="relative",a){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:e.parts&&e.parts.length?(n.img.width=e.parts[0].width,n.img.height=e.parts[0].height):(n.img.width=e.src.width,n.img.height=e.src.height);break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="contain",n.img.objectPosition=V[o]||"unset";break;case r.LEGACY_BG_NORMAL:n.img.width="100%",n.img.height="100%",n.img.objectFit="none",n.img.objectPosition=V[o]||"unset";break;case r.STRETCH:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="fill";break;case r.SCALE_TO_FILL:n.img.width=t.width,n.img.height=t.height,n.img.objectFit="cover"}if("number"==typeof n.img.width&&"number"==typeof n.img.height&&(n.img.width!==t.width||n.img.height!==t.height)){let e=Math.round((t.height-n.img.height)/2),i=Math.round((t.width-n.img.width)/2);Object.assign(n.img,Z,{[h.TOP_LEFT]:{top:0,left:0},[h.TOP_RIGHT]:{top:0,right:0},[h.TOP]:{top:0,left:i},[h.BOTTOM_LEFT]:{bottom:0,left:0},[h.BOTTOM_RIGHT]:{bottom:0,right:0},[h.BOTTOM]:{bottom:0,left:i},[h.RIGHT]:{top:e,right:0},[h.LEFT]:{top:e,left:0},[h.CENTER]:{width:t.width,height:t.height,objectFit:"none"}}[o])}return i}function X(e,t){let i,a={css:{container:{}},attr:{container:{},img:{}}},{css:o,attr:s}=a,{fittingType:l}=e,c=t.alignment,{width:d,height:u}=e.src;switch(o.container.position="relative",l){case r.ORIGINAL_SIZE:case r.LEGACY_ORIGINAL_SIZE:case r.TILE:e.parts&&e.parts.length?(s.img.width=e.parts[0].width,s.img.height=e.parts[0].height):(s.img.width=d,s.img.height=u),s.img.preserveAspectRatio="xMidYMid slice";break;case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:s.img.width="100%",s.img.height="100%",s.img.transform="",s.img.preserveAspectRatio="";break;case r.STRETCH:s.img.width=t.width,s.img.height=t.height,s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="none";break;case r.SCALE_TO_FILL:if(M(e.src.id))s.img.width=t.width,s.img.height=t.height;else{var m;let e;m=t.width,e=$(d,u,m,t.height,n),i={width:Math.round(d*e),height:Math.round(u*e)},s.img.width=i.width,s.img.height=i.height}s.img.x=0,s.img.y=0,s.img.transform="",s.img.preserveAspectRatio="xMidYMid slice"}if("number"==typeof s.img.width&&"number"==typeof s.img.height&&(s.img.width!==t.width||s.img.height!==t.height)){let e,i,n=0,a=0;l===r.TILE?(e=t.width%s.img.width,i=t.height%s.img.height):(e=t.width-s.img.width,i=t.height-s.img.height);let o=Math.round(e/2),d=Math.round(i/2);switch(c){case h.TOP_LEFT:n=0,a=0;break;case h.TOP:n=o,a=0;break;case h.TOP_RIGHT:n=e,a=0;break;case h.LEFT:n=0,a=d;break;case h.CENTER:n=o,a=d;break;case h.RIGHT:n=e,a=d;break;case h.BOTTOM_LEFT:n=0,a=i;break;case h.BOTTOM:n=o,a=i;break;case h.BOTTOM_RIGHT:n=e,a=i}s.img.x=n,s.img.y=a}return s.container.width=t.width,s.container.height=t.height,s.container.viewBox=["0 0",t.width,t.height].join(" "),a}function K(e,t){let i=B(e.src.width,e.src.height,"fit",t,e.devicePixelRatio,e.upscaleMethod);return{transformType:e.src.width&&e.src.height?n:"fit",width:Math.round(i.width),height:Math.round(i.height),alignment:d.center,upscale:i.scaleFactor>1,forceUSM:i.forceUSM,scaleFactor:i.scaleFactor,cssUpscaleNeeded:i.cssUpscaleNeeded,upscaleMethodValue:i.upscaleMethodValue}}function Q(e){return{transformType:o,x:Math.round(e.x),y:Math.round(e.y),width:Math.round(e.width),height:Math.round(e.height),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1}}function ee(e,t,i){return"number"==typeof e&&!isNaN(e)&&0!==e&&e>=t&&e<=i}function et(e,t,i,o){var d,u,p,f,b,T,A;let R,Y=o?.isSEOBot??!1,D=function(e){if(C.includes(k(e)))return v.JPG;if(x(e))return v.PNG;if(S(e))return v.WEBP;if(G(e))return v.GIF;if(P(e))return v.AVIF;return v.UNRECOGNIZED}(t.id),q=function(e,t){let i=/\.([^.]*)$/,r=RegExp(`(${N.concat(F).join("|")})`,"g");if(t&&t.length){let e=t,n=t.match(i);return n&&y.includes(n[1])&&(e=t.replace(i,"")),encodeURIComponent(e).replace(r,"_")}let n=e.match(/\/(.*?)$/);return(n?n[1]:e).replace(i,"")}(t.id,t.name),j=Y?1:Math.min(i.pixelAspectRatio||1,2),V=k(t.id),Z=M(t.id,o?.hasAnimation,o?.allowAnimatedTransform,o?.allowFullGIFTransformation),J={fileName:q,fileExtension:V,fileType:D,fittingType:e,preferredExtension:V,src:{id:t.id,width:t.width,height:t.height,isCropped:!1,isAnimated:(d=t.id,u=o?.hasAnimation,R=S(d)||P(d),k(d)===v.GIF||R&&u)},focalPoint:{x:t.focalPoint&&t.focalPoint.x,y:t.focalPoint&&t.focalPoint.y},parts:[],devicePixelRatio:j,quality:0,upscaleMethod:o&&o.upscaleMethod&&m[o.upscaleMethod.toUpperCase()]||m.AUTO,progressive:!0,watermark:"",unsharpMask:{},filters:{},transformed:Z,allowFullGIFTransformation:o?.allowFullGIFTransformation,isPlaceholderFlow:o?.isPlaceholderFlow};if(Z){let e,d,u,m,y,C;!function(e,t,i){var o,d,u,m,g,p,f,_,b,T,I;let E,w,L,v,A,O;if(t.crop){let i,r;o=t.crop,i=Math.max(0,Math.min(t.width,o.x+o.width)-Math.max(0,o.x)),r=Math.max(0,Math.min(t.height,o.y+o.height)-Math.max(0,o.y)),(E=i&&r&&(t.width!==i||t.height!==r)?{x:Math.max(0,o.x),y:Math.max(0,o.y),width:i,height:r}:null)&&(e.src.width=E.width,e.src.height=E.height,e.src.isCropped=!0,e.parts.push(Q(E)))}switch(e.fittingType){case r.SCALE_TO_FIT:case r.LEGACY_FIT_WIDTH:case r.LEGACY_FIT_HEIGHT:case r.LEGACY_FULL:case r.FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:e.parts.push(K(e,i));break;case r.SCALE_TO_FILL:e.parts.push((g=e,p=i,w=B(g.src.width,g.src.height,n,p,g.devicePixelRatio,g.upscaleMethod),{transformType:(L=z(g.focalPoint))?a:n,width:Math.round(w.width),height:Math.round(w.height),alignment:H(p),focalPointX:L&&L.x,focalPointY:L&&L.y,upscale:w.scaleFactor>1,forceUSM:w.forceUSM,scaleFactor:w.scaleFactor,cssUpscaleNeeded:w.cssUpscaleNeeded,upscaleMethodValue:w.upscaleMethodValue}));break;case r.STRETCH:e.parts.push((f=e,_=i,v=$(f.src.width,f.src.height,_.width,_.height,n),(A={..._}).width=f.src.width*v,A.height=f.src.height*v,K(f,A)));break;case r.TILE_HORIZONTAL:case r.TILE_VERTICAL:case r.TILE:case r.LEGACY_ORIGINAL_SIZE:case r.ORIGINAL_SIZE:d=e.src,u=e.focalPoint,m=i.alignment,O=z(u)||function(e=h.CENTER){return c[e]}(m),E={x:Math.max(0,Math.min(d.width-i.width,O.x*d.width-i.width/2)),y:Math.max(0,Math.min(d.height-i.height,O.y*d.height-i.height/2)),width:Math.min(d.width,i.width),height:Math.min(d.height,i.height)},e.src.isCropped?(Object.assign(e.parts[0],E),e.src.width=E.width,e.src.height=E.height):e.parts.push(Q(E));break;case r.LEGACY_STRIP_TILE_HORIZONTAL:case r.LEGACY_STRIP_TILE_VERTICAL:case r.LEGACY_STRIP_TILE:case r.LEGACY_STRIP_ORIGINAL_SIZE:e.parts.push({transformType:s,width:Math.round((b=i).width),height:Math.round(b.height),alignment:H(b),upscale:!1,forceUSM:!1,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FIT:case r.LEGACY_STRIP_FIT_AND_TILE:e.parts.push({transformType:"fit",width:Math.round((T=i).width),height:Math.round(T.height),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1});break;case r.LEGACY_STRIP_SCALE_TO_FILL:e.parts.push({transformType:l,width:Math.round((I=i).width),height:Math.round(I.height),alignment:H(I),upscale:!1,forceUSM:!0,scaleFactor:1,cssUpscaleNeeded:!1})}}(J,t,i),J.quality=function(e,t){let i=e.fileType===v.PNG,r=e.fileType===v.JPG,n=e.fileType===v.WEBP,a=e.fileType===v.AVIF;if(r||i||n||a){let r=O(e.parts),n=_[U(r.width,r.height)].quality,a=t.quality&&t.quality>=5&&t.quality<=90?t.quality:n;return i?a+5:a}return 0}(J,p=(p=o)||{}),J.progressive=!1!==p.progressive,J.watermark=p.watermark,J.autoEncode=p.autoEncode??!0,J.encoding=p?.encoding,f=J,e="number"==typeof(T=(T=(b=p).unsharpMask)||{}).radius&&!isNaN(T.radius)&&T.radius>=.1&&T.radius<=500,d="number"==typeof T.amount&&!isNaN(T.amount)&&T.amount>=0&&T.amount<=10,u="number"==typeof T.threshold&&!isNaN(T.threshold)&&T.threshold>=0&&T.threshold<=255,J.unsharpMask=e&&d&&u?{radius:W(b.unsharpMask?.radius,2),amount:W(b.unsharpMask?.amount,2),threshold:W(b.unsharpMask?.threshold,2)}:"number"==typeof(A=(A=b.unsharpMask)||{}).radius&&!isNaN(A.radius)&&0===A.radius&&"number"==typeof A.amount&&!isNaN(A.amount)&&0===A.amount&&"number"==typeof A.threshold&&!isNaN(A.threshold)&&0===A.threshold||(m=O(f.parts)).scaleFactor>=1&&!m.forceUSM&&"fit"!==m.transformType?void 0:g,y=p.filters||{},C={},ee(y[I],-100,100)&&(C[I]=y[I]),ee(y[E],-100,100)&&(C[E]=y[E]),ee(y[w],-100,100)&&(C[w]=y[w]),ee(y.hue,-180,180)&&(C.hue=y.hue),ee(y[L],0,100)&&(C[L]=y[L]),J.filters=C}return J}function ei(e,t,i){let n={...i},a=Y.isMobile;switch(e){case r.LEGACY_BG_FIT_AND_TILE:case r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL:case r.LEGACY_BG_FIT_AND_TILE_VERTICAL:case r.LEGACY_BG_NORMAL:n.width=Math.min(a?1e3:1920,t.width),n.height=Math.min(a?1e3:1920,Math.round(n.width/(t.width/t.height))),n.pixelAspectRatio=1}return n}let er=A`fit/w_${"width"},h_${"height"}`,en=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,ea=A`fill/w_${"width"},h_${"height"},fp_${"focalPointX"}_${"focalPointY"}`,eo=A`crop/x_${"x"},y_${"y"},w_${"width"},h_${"height"}`,es=A`crop/w_${"width"},h_${"height"},al_${"alignment"}`,el=A`fill/w_${"width"},h_${"height"},al_${"alignment"}`,eh=A`,lg_${"upscaleMethodValue"}`,ec=A`,q_${"quality"}`,ed=A`,quality_auto`,eu=A`,usm_${"radius"}_${"amount"}_${"threshold"}`,em=A`,bl`,eg=A`,wm_${"watermark"}`,ep={[I]:A`,con_${"contrast"}`,[E]:A`,br_${"brightness"}`,[w]:A`,sat_${"saturation"}`,hue:A`,hue_${"hue"}`,[L]:A`,blur_${"blur"}`},ef=A`,enc_auto`,e_=A`,enc_avif`,eb=A`,enc_pavif`,eT=A`,pstr`,eI=A`,anm_all`;function eE(e,t,i,r={},h){if(M(t.id,r?.hasAnimation,r?.allowAnimatedTransform,r?.allowFullGIFTransformation)){if((S(t.id)||P(t.id))&&!r.allowWebpAvifTransforms){let{alignment:n,...a}=i;t.focalPoint={x:void 0,y:void 0},delete t?.crop,h=et(e,t,a,r)}else h=h||et(e,t,i,r);return function(e){let t=[];e.parts.forEach(e=>{switch(e.transformType){case o:t.push(eo(e));break;case s:t.push(es(e));break;case l:let i=el(e);e.upscale&&(i+=eh(e)),t.push(i);break;case"fit":let r=er(e);e.upscale&&(r+=eh(e)),t.push(r);break;case n:let h=en(e);e.upscale&&(h+=eh(e)),t.push(h);break;case a:let c=ea(e);e.upscale&&(c+=eh(e)),t.push(c)}});let i=t.join("/");if(e.quality&&(i+=ec(e)),e.unsharpMask&&(i+=eu(e.unsharpMask)),e.progressive||(i+=em(e)),e.watermark&&(i+=eg(e)),e.filters&&(i+=Object.keys(e.filters).map(t=>ep[t](e.filters)).join("")),e.fileType!==v.GIF&&("AVIF"===e.encoding?(i+=e_(e),i+=ed(e)):"PAVIF"===e.encoding?(i+=eb(e),i+=ed(e)):e.autoEncode&&(i+=ef(e))),e.src?.isAnimated&&e.transformed){let t=G(e.src.id),r=!0===e.isPlaceholderFlow,n=!0===e.allowFullGIFTransformation;r?i+=eT(e):t&&n&&(i+=eI(e))}return`${e.src.id}/v1/${i}/${e.fileName}.${e.preferredExtension}`}(h)}return t.id}let ew={[h.CENTER]:"50% 50%",[h.TOP_LEFT]:"0% 0%",[h.TOP_RIGHT]:"100% 0%",[h.TOP]:"50% 0%",[h.BOTTOM_LEFT]:"0% 100%",[h.BOTTOM_RIGHT]:"100% 100%",[h.BOTTOM]:"50% 100%",[h.RIGHT]:"100% 50%",[h.LEFT]:"0% 50%"},eL=Object.entries(ew).reduce((e,[t,i])=>(e[i]=t,e),{}),ev=[r.TILE,r.TILE_HORIZONTAL,r.TILE_VERTICAL,r.LEGACY_BG_FIT_AND_TILE,r.LEGACY_BG_FIT_AND_TILE_HORIZONTAL,r.LEGACY_BG_FIT_AND_TILE_VERTICAL],eA=[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE,r.LEGACY_BG_NORMAL];function eO(e,t,{width:i,height:n}){return e===r.TILE&&t.width>i&&t.height>n}let ey={width:"100%",height:"100%"};function eC(e,t,i,n={}){var a;let o,{autoEncode:s=!0,isSEOBot:l,shouldLoadHQImage:h,hasAnimation:c,allowAnimatedTransform:d,encoding:u}=n;if(!R(e,t,i))return p;let m=d??!0,g=M(t.id,c,m);if(!g||h)return eR(e,t,i,{...n,autoEncode:s,useSrcset:g});let f={...i,...function(e,{width:t,height:i}){if(!t||!i){let r=t||Math.min(980,e.width),n=r/e.width;return{width:r,height:i||e.height*n}}return{width:t,height:i}}(t,i)},{alignment:_,htmlTag:b}=f,T=eO(e,t,f),I=function(e,t,{width:i,height:r},n=!1){var a,o;if(n)return{width:i,height:r};let s=!eA.includes(e),l=eO(e,t,{width:i,height:r}),h=!l&&ev.includes(e),c=h?t.width:i,d=h?t.height:r,u=s?(a=c,o=x(t.id),a>900?o?.05:.15:a>500?o?.1:.18:a>200?.25:1):1;return{width:l?1920:c*u,height:d*u}}(e,t,f,l),E=(a=f.width,l?0:ev.includes(e)?1:a>200?2:3),w=(o=ev.includes(e)&&!T,e===r.SCALE_TO_FILL||o?r.SCALE_TO_FIT:e),L=function(e,t,i,n="center"){let a={img:{},container:{}};if(e===r.SCALE_TO_FILL){var o;let e=t.focalPoint&&(o=t.focalPoint,eL[`${o.x}% ${o.y}%`]||"");t.focalPoint&&!e?a.img={objectPosition:function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(t,i,t.focalPoint)}:a.img={objectPosition:ew[e||n]}}else[r.LEGACY_ORIGINAL_SIZE,r.ORIGINAL_SIZE].includes(e)?a.img={objectFit:"none",top:"auto",left:"auto",right:"auto",bottom:"auto"}:ev.includes(e)&&(a.container={backgroundSize:`${t.width}px ${t.height}px`});return a}(e,t,i,_),{uri:v}=eR(w,t,{...I,alignment:_,htmlTag:b},{autoEncode:s,filters:E?{blur:E}:{},hasAnimation:c,allowAnimatedTransform:m,encoding:u,isPlaceholderFlow:!0}),{attr:A={},css:O}=eR(e,t,{...f,alignment:_,htmlTag:b},{});return O.img=O.img||{},O.container=O.container||{},Object.assign(O.img,L.img,ey),Object.assign(O.container,L.container),{uri:v,css:O,attr:A,transformed:!0}}function eR(e,t,i,r){let n={};if(R(e,t,i)){var a;let o,s=ei(e,t,i),l=et(e,t,s,r);n.uri=eE(e,t,s,r,l),r?.useSrcset&&(n.srcset=(a=n,o=s.pixelAspectRatio||1,{dpr:[`${1===o?a.uri:eE(e,t,{...s,pixelAspectRatio:1},r)} 1x`,`${2===o?a.uri:eE(e,t,{...s,pixelAspectRatio:2},r)} 2x`]})),Object.assign(n,(s.htmlTag===u.BG?j:s.htmlTag===u.SVG?X:J)(l,s),{transformed:l.transformed})}else n=p;return n}function eM(e,t,i,r){if(R(e,t,i)){let n=ei(e,t,i),a=et(e,t,n,r);return{uri:eE(e,t,n,r||{},a)}}return{uri:""}}let ex="https://static.wixstatic.com/",eS="https://static.wixstatic.com/media/",eG=/^media\//i,eP="undefined"!=typeof window?window.devicePixelRatio:1,eN=(e,t)=>{let i=t&&t.baseHostURL;return i?`${i}${e}`:eG.test(e)?`${ex}${e}`:`${eS}${e}`};q();let eF="center",ek=[1920,1536,1366,1280,980],e$=(e,t,i)=>{let{displayMode:r,uri:n,width:a,height:o,name:s,crop:l,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,encoding:p,siteMargin:f,widthProportion:_,allowFullGIFTransformation:b,baseHostURL:T}=e;if(_){let e,g,I=(e="original_size"===r,g=a/o,ek.map((r,I)=>{let E=980===r,w=e=>E?t:_/100*(e-2*(f||0)),L=w(ek[I+1]),v=w(r),A=L/i,O=!(e||E)&&((e,t,i,r,n,a,o,s=eF)=>{if(e>t){let e=Math.round(r/(a/n)),t=Math.round(i/2-e/2);return s.includes("top")?t=0:s.includes("bottom")&&(t=i-e),{width:r,height:e,x:0,y:t}}{let e=Math.round(i/(n/o)),t=Math.round(r/2-e/2);return s.includes("left")?t=0:s.includes("right")&&(t=r-e),{width:e,height:i,x:t,y:0}}})(A,g,o,a,i,L,v,c),{srcset:y,fallbackSrc:C,css:R}=e$({displayMode:e?"original_size":E?"fill":"fit",uri:n,width:a,height:o,crop:l||O,name:s,focalPoint:h,alignType:c,quality:d,upscaleMethod:u,hasAnimation:m,encoding:p,allowFullGIFTransformation:b,baseHostURL:T},v,i);return e&&R&&(R.img.objectFit="cover"),{srcset:y||"",sizes:E?`${_}vw`:`${v}px`,media:`(max-width: ${r}px)`,fallbackSrc:C,imgStyle:R?.img}})).filter(Boolean).reverse();return{fallbackSrc:I[0].fallbackSrc,sources:I,css:I[0].imgStyle}}{let{srcset:e,css:f,uri:_}=eR(r,{id:n,width:a,height:o,name:s,crop:l,focalPoint:h},{width:t,height:i,alignment:c},{focalPoint:h,name:s,quality:d?.quality,upscaleMethod:u,hasAnimation:m,allowAnimatedTransform:g,useSrcset:!0,encoding:p,allowFullGIFTransformation:b}),I=T||eH,E=e?.dpr?.map(e=>/^[a-z]+:/.test(e)?e:`${I}${e}`);return{fallbackSrc:`${I}${_}`,srcset:E?.join(", ")||"",css:f}}};q();let eB={getScaleToFitImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FIT,{id:e,width:t,height:i,name:o&&o.name},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getScaleToFillImageURL:function(e,t,i,n,a,o){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:o&&o.name,focalPoint:{x:o&&o.focalPoint&&o.focalPoint.x,y:o&&o.focalPoint&&o.focalPoint.y}},{width:n,height:a,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:o?.devicePixelRatio??eP},o).uri,o)},getCropImageURL:function(e,t,i,n,a,o,s,l,c,d){return eN(eM(r.SCALE_TO_FILL,{id:e,width:t,height:i,name:d&&d.name,crop:{x:n,y:a,width:o,height:s}},{width:l,height:c,htmlTag:u.IMG,alignment:h.CENTER,pixelAspectRatio:d?.devicePixelRatio??eP},d).uri,d)}},eH=eS,ez=ex},55901(e,t,i){(0,i(16858).Rr)()},19787(e,t,i){var r=i(16858),n=i(99090);((e=window)=>{let{mediaServices:t,environmentConsts:i,requestUrl:a,staticVideoUrl:o}=e.customElementNamespace;(0,r.EH)(e,t,{...i,prefersReducedMotion:(0,n.O)(window,a),staticVideoUrl:o}),(0,r.jh)(e),(0,r.p7)(e,t,i)})(),window.resolveExternalsRegistryModule("imageClientApi")},16858(e,t,i){i.d(t,{_o:()=>s,NL:()=>O,yO:()=>w,vk:()=>c,EH:()=>k,KU:()=>l,Rr:()=>x,jh:()=>G,p7:()=>A,Aq:()=>h});var r=i(17709),n=i.n(r);let a=(e,t,i)=>{let r=1,n=0;for(let a=0;a<e.length;a++){let o=e[a];if(o>t||(n+=o)>t&&(r++,n=o,r>i))return!1}return!0};function o(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function s(){class e extends HTMLElement{setContainerHeight(e){this.style.setProperty("--flex-columns-height",`${e}px`)}removeContainerHeight(){this.style.removeProperty("--flex-columns-height")}getColumnCount(e){return parseInt(e.getPropertyValue("--flex-column-count"),10)}getRowGap(e){return parseInt(e.getPropertyValue("row-gap")||"0",10)}activate(){this.isActive=!0,this.attachObservers(),this.recalcHeight()}deactivate(){this.isActive=!1,this.detachHeightCalcObservers(),this.removeContainerHeight()}calcActive(){return"multi-column-layout"===getComputedStyle(this).getPropertyValue("--container-layout-type")}get itemsHeights(){return Array.from(this.children).map(e=>{let t=getComputedStyle(e),i=parseFloat(t.height||"0");return i+=parseFloat(t.marginTop||"0"),{height:i+=parseFloat(t.marginBottom||"0")}})}setIsActive(){let e=this.calcActive();this.isActive!==e&&(e?this.activate():this.deactivate())}connectedCallback(){this.cleanUp(),this.createObservers(),this.setIsActive(),window.document.body&&this.isActiveObserver?.observe(window.document.body)}disconnectedCallback(){this.cleanUp()}constructor(...e){super(...e),o(this,"containerWidthObserver",void 0),o(this,"mutationObserver",void 0),o(this,"isActiveObserver",void 0),o(this,"childResizeObserver",void 0),o(this,"containerWidth",0),o(this,"isActive",!1),o(this,"isDuringCalc",!1),o(this,"attachObservers",()=>{this.mutationObserver?.observe(this,{childList:!0,subtree:!0}),this.containerWidthObserver?.observe(this),Array.from(this.children).forEach(e=>{this.handleItemAdded(e)})}),o(this,"detachHeightCalcObservers",()=>{this.mutationObserver?.disconnect(),this.containerWidthObserver?.disconnect(),this.childResizeObserver?.disconnect()}),o(this,"recalcHeight",()=>{this.isActive&&n().measure(()=>{if(!this.isActive||this.isDuringCalc)return;this.isDuringCalc=!0;let e=getComputedStyle(this),t=((e,t,i)=>{let r=-1/0,n=e.map(e=>(e.height+t>r&&(r=e.height+t),e.height+t)),o=r,s=r*e.length,l=r;for(;o<s;){let e=Math.floor((o+s)/2);a(n,e,i)?s=e:o=e+1,l=o}return l-t})(this.itemsHeights,this.getRowGap(e),this.getColumnCount(e));this.isDuringCalc=!1,n().mutate(()=>{this.setContainerHeight(t),this.style.setProperty("visibility",null)})})}),o(this,"cleanUp",()=>{this.detachHeightCalcObservers(),this.removeContainerHeight(),this.isActiveObserver?.disconnect()}),o(this,"handleItemAdded",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.observe(e)}),o(this,"handleItemRemoved",e=>{e instanceof window.HTMLElement&&this.childResizeObserver?.unobserve(e)}),o(this,"createObservers",()=>{this.containerWidthObserver=new ResizeObserver(e=>{let t=e[0];if(t.contentRect.width!==this.containerWidth){if(0===this.containerWidth){this.containerWidth=t.contentRect.width;return}this.containerWidth=t.contentRect.width,this.recalcHeight()}}),this.mutationObserver=new MutationObserver(e=>{e.forEach(e=>{Array.from(e.removedNodes).forEach(this.handleItemRemoved),Array.from(e.addedNodes).forEach(this.handleItemAdded)}),this.recalcHeight()}),this.childResizeObserver=new ResizeObserver(()=>{this.recalcHeight()}),this.isActiveObserver=new ResizeObserver(()=>{this.setIsActive()})})}}return e}let l="multi-column-layouter",h=()=>{let e={observedElementToRelayoutTarget:new Map,getLayoutTargets(t){let i=new Set;return t.forEach(t=>i.add(e.observedElementToRelayoutTarget.get(t))),i},observe:i=>{e.observedElementToRelayoutTarget.set(i,i),t.observe(i)},unobserve:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)},observeChild:(i,r)=>{e.observedElementToRelayoutTarget.set(i,r),t.observe(i)},unobserveChild:i=>{e.observedElementToRelayoutTarget.delete(i),t.unobserve(i)}},t=new window.ResizeObserver(t=>{e.getLayoutTargets(t.map(e=>e.target)).forEach(e=>e.reLayout())});return e},c=(e,t=window)=>{let i=!1;return(...r)=>{i||(i=!0,t.requestAnimationFrame(()=>{i=!1,e(...r)}))}};function d(...e){let t=e[0];for(let i=1;i<e.length;++i)t=`${t.replace(/\/$/,"")}/${e[i].replace(/^\//,"")}`;return t}var u=i(26350);let m={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},g=(e,t)=>e&&t&&Object.keys(t).forEach(i=>e.setAttribute(i,t[i])),p=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||m[i]?r:`${r}px`;else e.style.removeProperty(i)}),f=(e,t,i=!0)=>{var r;return e&&i?(r=e.dataset[t])?"true"===r||"false"!==r&&("null"===r?null:`${+r}`===r?+r:r):r:e.dataset[t]},_=(e,t)=>e&&t&&Object.assign(e.dataset,t),b=e=>e||document.documentElement.clientHeight||window.innerHeight||0,T={fit:"contain",fill:"cover"};var I=i(69654);let E=(e,t,i)=>{void 0===e.customElements.get(t)&&e.customElements.define(t,i)};function w(e,t=window){class i extends t.HTMLElement{reLayout(){}connectedCallback(){this.observeResize(),this.reLayout()}disconnectedCallback(){this.unobserveResize(),this.unobserveChildren()}observeResize(){e.resizeService.observe(this)}unobserveResize(){e.resizeService.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new t.MutationObserver(()=>this.reLayout())),this.childListObserver.observe(e,{childList:!0})}observeChildAttributes(e,i=[]){this.childrenAttributesObservers||(this.childrenAttributesObservers=[]);let r=new t.MutationObserver(()=>this.reLayout());r.observe(e,{attributeFilter:i}),this.childrenAttributesObservers.push(r)}observeChildResize(t){this.childrenResizeObservers||(this.childrenResizeObservers=[]),e.resizeService.observeChild(t,this),this.childrenResizeObservers.push(t)}unobserveChildrenResize(){this.childrenResizeObservers&&(this.childrenResizeObservers.forEach(t=>{e.resizeService.unobserveChild(t)}),this.childrenResizeObservers=null)}unobserveChildren(){if(this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null),this.childrenAttributesObservers){for(let e of this.childrenAttributesObservers)e.disconnect(),e=null;this.childrenAttributesObservers=null}this.unobserveChildrenResize()}constructor(){super()}}return i}let L=e=>{if(e.customElementNamespace||(e.customElementNamespace={}),void 0===e.customElementNamespace.WixElement){let t=w({resizeService:h()},e);return e.customElementNamespace.WixElement=t,t}return e.customElementNamespace.WixElement},v="wix-bg-image",A=(e=globalThis.window,t={},i={experiments:{}})=>{if(e&&void 0===e.customElements.get(v)){let r=function(e,t,i,r=window){let n=((e=window)=>({measure:function(e,t,i,{containerId:r,bgEffectName:n},a){let o=i[e],s=i[r],{width:l,height:h}=a.getMediaDimensionsByEffect(n,s.offsetWidth,s.offsetHeight,b(a.getScreenHeightOverride?.()));t.width=l,t.height=h,t.currentSrc=o.style.backgroundImage,t.bgEffectName=o.dataset.bgEffectName},patch:function(t,i,r,n,a){let o=r[t];n.targetWidth=i.width,n.targetHeight=i.height;let s=((e,t,i)=>{var r;let n,{targetWidth:a,targetHeight:o,imageData:s,filters:l,displayMode:h=u.fittingTypes.SCALE_TO_FILL}=e;if(!a||!o||!s.uri)return{uri:"",css:{}};let{width:c,height:d,crop:m,name:g,focalPoint:p,upscaleMethod:f,quality:_,devicePixelRatio:b=t.devicePixelRatio}=s,T={filters:l,upscaleMethod:f,..._,hasAnimation:e?.hasAnimation||s?.hasAnimation},I=(r=b,((n=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0].toLowerCase().includes("devicepixelratio")))?Number(n[1]):null)||r||1),E={id:s.uri,width:c,height:d,...m&&{crop:m},...p&&{focalPoint:p},...g&&{name:g}},w={width:a,height:o,htmlTag:"bg",pixelAspectRatio:I,alignment:e.alignType||u.alignTypes.CENTER},L=(0,u.getData)(h,E,w,T),v=s.baseHostURL||t.staticMediaUrl;return L.uri=((e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=`${t}/`;return e&&(/^micons\//.test(e)?r=i:"ico"===/[^.]+$/.exec(e)[0]&&(r=r.replace("media","ficons"))),r+e})(L.uri,v,t.mediaRootUrl),L})(n,a,0);if(function(e="",t){return!e.includes(t)||!!e!=!!t}(i.currentSrc,s.uri)){let t,i;t={backgroundImage:`url("${s.uri}")`,...s.css.container},(i=new e.Image).onload=p.bind(null,o,t),i.src=s.uri}else p(o,s.css.container)}}))(r);return class extends e{reLayout(){if(t.isExperimentOpen("specs.thunderbolt.tb_stop_client_images")||t.isExperimentOpen("specs.thunderbolt.final_force_webp")||t.isExperimentOpen("specs.thunderbolt.final_force_no_webp"))return;let e={},a={},o=(0,I.ZH)(this,{experiments:i.experiments,logger:i.logger,document:r.document}),s=JSON.parse(this.dataset.tiledImageInfo),{bgEffectName:l}=this.dataset,{containerId:h}=s,c=(0,I.qc)(h,{experiments:i.experiments,logger:i.logger,document:r.document});e[o]=this,e[h]=c,s.displayMode=s.imageData.displayMode,t.mutationService.measure(()=>{n.measure(o,a,e,{containerId:h,bgEffectName:l},t)}),t.mutationService.mutate(()=>{n.patch(o,a,e,s,i,t)})}attributeChangedCallback(e,t){t&&this.reLayout()}disconnectedCallback(){super.disconnectedCallback()}static get observedAttributes(){return["data-tiled-image-info"]}constructor(){super()}}}(L(e),t,i,e);E(e,v,r)}};function O(e,t,i,r=window){let n={width:void 0,height:void 0,left:void 0};return class extends e{reLayout(){let{containerId:e,pageId:a,useCssVars:o,bgEffectName:s}=this.dataset,l=(0,I.hW)(this,e)||(0,I.qc)(`${e}`,{experiments:i.experiments,logger:i.logger,document:r.document}),h=(0,I.hW)(this,a)||(0,I.qc)(`${a}`,{experiments:i.experiments,logger:i.logger,document:r.document}),c={};t.mutationService.measure(()=>{let e="fixed"===r.getComputedStyle(this).position,i=b(t.getScreenHeightOverride?.()),n=l.getBoundingClientRect(),a=t.getMediaDimensionsByEffect(s,n.width,n.height,i),{hasParallax:d}=a,u=h&&(r.getComputedStyle(h).transition||"").includes("transform"),{width:m,height:g}=a,p=`${m}px`,f=`${g}px`,_=`${(n.width-m)/2}px`;if(e){let e=r.document.documentElement.clientLeft;_=u?`${l.offsetLeft-e}px`:`${n.left-e}px`}let T=e||d?0:`${(n.height-g)/2}px`;Object.assign(c,o?{"--containerW":p,"--containerH":f,"--containerL":_,"--screenH_val":`${i}`}:{width:p,height:f,left:_,top:T})}),t.mutationService.mutate(()=>{if(o){let e;p(this,n),e=this,e&&c&&Object.keys(c).forEach(t=>{e.style.setProperty(t,c[t])})}else p(this,c)})}connectedCallback(){super.connectedCallback(),t.windowResizeService.observe(this)}disconnectedCallback(){super.disconnectedCallback(),t.windowResizeService.unobserve(this)}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-is-full-height","data-container-size"]}constructor(){super()}}}let y="__more__",C="moreContainer";function R(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let M="wix-dropdown-menu",x=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(M)){let t=h(),i=function(e,t,i=window){let r=((e=window)=>{let t=(e,t,i,r,n,a,o,s)=>{if(e-=n*(o?r.length:r.length-1),e-=s.left+s.right,t&&(r=r.map(()=>a)),r.some(e=>0===e))return null;let l=0,h=r.reduce((e,t)=>e+t,0);if(h>e)return null;if(t){if(i){let t=Math.floor(e/r.length),i=r.map(()=>t);if((l=t*r.length)<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r}if(i){let t=Math.floor((e-h)/r.length);l=0;let i=r.map(e=>(l+=e+t,e+t));if(l<e){let t=Math.floor(e-l);r.forEach((e,r)=>{r<=t-1&&i[r]++})}return i}return r},i=e=>{let t=parseFloat(e);return isFinite(t)?t:0},r=e=>!isNaN(parseFloat(e))&&isFinite(e);return{measure:(r,n)=>{var a;let o,s,l,h,c,d,u,m,g,p,_={},b={};b[r]=n;let T=1,I=n.getRootNode().querySelector("[id^=site-root]");I&&(T=I.getBoundingClientRect().width/I.offsetWidth);let E=(o=+f(b[r],"numItems"))<=0||o>Number.MAX_SAFE_INTEGER?[]:Array(o).fill(0).map((e,t)=>String(t)),w=["moreContainer","itemsContainer","dropWrapper"].concat(E,[y]);w.forEach(e=>{let t=`${r}${e}`;b[t]=n.getRootNode().getElementById(`${t}`)}),a=T,s={},w.forEach(e=>{let t=`${r}${e}`,i=b[t];i&&(s[t]={width:i.offsetWidth,boundingClientRectWidth:Math.round(i.getBoundingClientRect().width/a),height:i.offsetHeight})}),_.children=s;let L=b[r],v=b[`${r}itemsContainer`],A=v.childNodes,O=b[`${r}moreContainer`],C=O.childNodes,R=f(L,"stretchButtonsToMenuWidth"),M=f(L,"sameWidthButtons");_.absoluteLeft=L.getBoundingClientRect().left,_.bodyClientWidth=e.document.body.clientWidth,_.alignButtons=f(L,"dropalign"),_.hoverListPosition=f(L,"drophposition"),_.menuBorderY=parseInt(f(L,"menuborderY"),10),_.ribbonExtra=parseInt(f(L,"ribbonExtra"),10),_.ribbonEls=parseInt(f(L,"ribbonEls"),10),_.labelPad=parseInt(f(L,"labelPad"),10),_.menuButtonBorder=parseInt(f(L,"menubtnBorder"),10),l=v.lastChild,_.menuItemContainerMargins=(parseInt((h=e.getComputedStyle(l)).marginLeft,10)||0)+(parseInt(h.marginRight,10)||0),d=i((c=e.getComputedStyle(v)).borderTopWidth)+i(c.paddingTop),u=i(c.borderBottomWidth)+i(c.paddingBottom),m=i(c.borderLeftWidth)+i(c.paddingLeft),g=i(c.borderRightWidth)+i(c.paddingRight),d+=i(c.marginTop),u+=i(c.marginBottom),m+=i(c.marginLeft),g+=i(c.marginRight),_.menuItemContainerExtraPixels={top:d,bottom:u,left:m,right:g,height:d+u,width:m+g},_.needToOpenMenuUp=L.getBoundingClientRect().top>e.innerHeight/2,_.menuItemMarginForAllChildren=!R||"false"!==v.getAttribute("data-marginAllChildren"),_.moreSubItem=[],_.labelWidths={},_.linkIds={},_.parentId={},_.menuItems={},_.labels={},C.forEach((t,i)=>{_.parentId[t.id]=f(t,"parentId");let r=f(t,"dataId");_.menuItems[r]={dataId:r,parentId:f(t,"parentId"),moreDOMid:t.id,moreIndex:i},b[t.id]=t;let n=t.querySelector("p");b[n.id]=n,_.labels[n.id]={width:n.offsetWidth,height:n.offsetHeight,left:n.offsetLeft,lineHeight:parseInt(e.getComputedStyle(n).fontSize,10)},_.moreSubItem.push(t.id)}),A.forEach((e,t)=>{let i,r,n=f(e,"dataId");_.menuItems[n]=_.menuItems[n]||{},_.menuItems[n].menuIndex=t,_.menuItems[n].menuDOMid=e.id,_.children[e.id].left=e.offsetLeft;let a=e.querySelector("p");b[a.id]=a,_.labelWidths[a.id]=(i=a,r=T,Math.round(i.getBoundingClientRect().width/r));let o=e.querySelector("p");b[o.id]=o,_.linkIds[e.id]=o.id});let x=L.offsetHeight;_.height=x,_.width=L.offsetWidth,p=x-_.menuBorderY-_.labelPad-_.ribbonEls-_.menuButtonBorder-_.ribbonExtra,_.lineHeight=`${p}px`;let S=((e,i,r,n,a)=>{let o=i.width;i.hasOriginalGapData={},i.originalGapBetweenTextAndBtn={};let s=a.map(t=>{let r,a=f(n[e+t],"originalGapBetweenTextAndBtn");return(void 0===a?(i.hasOriginalGapData[t]=!1,r=i.children[e+t].boundingClientRectWidth-i.labelWidths[`${e+t}label`],i.originalGapBetweenTextAndBtn[e+t]=r):(i.hasOriginalGapData[t]=!0,r=parseFloat(a)),i.children[e+t].width>0)?Math.floor(i.labelWidths[`${e+t}label`]+r):0}),l=s.pop(),h=r.sameWidthButtons,c=r.stretchButtonsToMenuWidth,d=!1,u=i.menuItemContainerMargins,m=i.menuItemMarginForAllChildren,g=i.menuItemContainerExtraPixels,p=s.reduce((e,t)=>e>t?e:t,-1/0),_=t(o,h,c,s,u,p,m,g);if(!_){for(let e=1;e<=s.length;e++)if(_=t(o,h,c,s.slice(0,-1*e).concat(l),u,p,m,g)){d=!0;break}_||(d=!0,_=[l])}if(d){let e=_[_.length-1];for(_=_.slice(0,-1);_.length<a.length;)_.push(0);_[_.length-1]=e}return{realWidths:_,moreShown:d}})(r,_,{sameWidthButtons:M,stretchButtonsToMenuWidth:R},b,E.concat(y));return _.realWidths=S.realWidths,_.isMoreShown=S.moreShown,_.menuItemIds=E,_.hoverState=f(O,"hover",!1),{measures:_,domNodes:b}},patch:(e,t,i)=>{let n=i[e];p(n,{overflowX:"visible"});let{menuItemIds:a,needToOpenMenuUp:o}=t,s=a.concat(y);_(n,{dropmode:o?"dropUp":"dropDown"});let l=0;if(t.hoverState===y){let e,r,n=t.realWidths.indexOf(0),o=t.menuItems[e=t.menuItems,r=e=>e.menuIndex===n,Object.keys(e).find(t=>r(e[t],t))],s=o.moreIndex,h=s===a.length-1;o.moreDOMid&&g(i[o.moreDOMid],{"data-listposition":h?"dropLonely":"top"}),Object.values(t.menuItems).filter(e=>!!e.moreDOMid).forEach(e=>{if(e.moreIndex<s)p(i[e.moreDOMid],{display:"none"});else{let i=`${e.moreDOMid}label`;l=Math.max(t.labels[i].width,l)}})}else t.hoverState&&t.moreSubItem.forEach((i,r)=>{let n=`${e+C+r}label`;l=Math.max(t.labels[n].width,l)});((e,t,i,n)=>{let{hoverState:a}=t;if("-1"!==a){let{menuItemIds:o}=t,s=o.indexOf(a);if(r(t.hoverState)||a===y){if(!t.realWidths)return;let a=Math.max(n,t.children[-1!==s?e+s:e+y].width),o=Math.max(n,t.children[`${e}dropWrapper`].width),l=(0!==t.moreSubItem.length?t.labels[`${t.moreSubItem[0]}label`].lineHeight:0)+15+t.menuBorderY+t.labelPad+t.menuButtonBorder;t.moreSubItem.forEach(e=>{p(i[e],{minWidth:`${a}px`}),p(i[`${e}label`],{minWidth:"0px",lineHeight:`${l}px`})});let h=r(t.hoverState)?t.hoverState:"__more__",c={width:t.children[e+h].width,left:t.children[e+h].left},d=((e,t,i,r,n)=>{let{width:a,height:o,alignButtons:s,hoverListPosition:l,menuItemContainerExtraPixels:h}=t,c=t.absoluteLeft,d=((e,t,i,r,n,a,o,s,l,h)=>{let c="0px",d="auto",u=a.left,m=a.width;if("left"===t?c="left"===n?0:`${u+e.left}px`:"right"===t?(d="right"===n?0:`${r-u-m-e.right}px`,c="auto"):"left"===n?c=`${u+(m+e.left-i)/2}px`:"right"===n?(c="auto",d=`${(m+e.right-(i+e.width))/2}px`):c=`${e.left+u+(m-(i+e.width))/2}px`,"auto"!==c){let e=o+parseInt(c,10);e+h>l?(c="auto",d=0):c=e<0?0:c}return"auto"!==d&&(d=s-parseInt(d,10)>l?0:d),{moreContainerLeft:c,moreContainerRight:d}})(h,s,r,a,l,i,c,c+a,t.bodyClientWidth,n);return{left:d.moreContainerLeft,right:d.moreContainerRight,top:t.needToOpenMenuUp?"auto":`${o}px`,bottom:t.needToOpenMenuUp?`${o}px`:"auto"}})(0,t,c,a,o);p(i[`${e}${C}`],{left:d.left,right:d.right}),p(i[`${e}dropWrapper`],{left:d.left,right:d.right,top:d.top,bottom:d.bottom})}}})(e,t,i,l),t.originalGapBetweenTextAndBtn&&s.forEach(r=>{t.hasOriginalGapData[r]||_(i[`${e}${r}`],{originalGapBetweenTextAndBtn:t.originalGapBetweenTextAndBtn[`${e}${r}`]})}),((e,t,i,r)=>{let{realWidths:n,height:a,menuItemContainerExtraPixels:o}=i,s=0,l=null,h=null,c=i.lineHeight,d=a-o.height;for(let a=0;a<r.length;a++){let o=n[a],u=o>0,m=e+r[a];h=i.linkIds[m],u?(s++,l=m,p(t[m],{width:`${o}px`,height:`${d}px`,position:"relative","box-sizing":"border-box",overflow:"visible",visibility:"inherit"}),p(t[`${m}label`],{"line-height":c}),g(t[m],{"aria-hidden":!1})):(p(t[m],{height:"0px",overflow:"hidden",position:"absolute",visibility:"hidden"}),g(t[m],{"aria-hidden":!0}),g(t[h],{tabIndex:-1}))}1===s&&(_(t[`${e}moreContainer`],{listposition:"lonely"}),_(t[l],{listposition:"lonely"}))})(e,i,t,s)}}})(i);return class extends e{static get observedAttributes(){return["data-hovered-item"]}attributeChangedCallback(){this._isVisible()&&this.reLayout()}connectedCallback(){this._id=this.getAttribute("id"),this._hideElement(),this._waitForDomLoad().then(()=>{super.observeResize(),this._observeChildrenResize(),this.reLayout()})}disconnectedCallback(){t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),super.disconnectedCallback()}_waitForDomLoad(){let e,t=new Promise(t=>{e=t});return this._isDomReady()?e():(this._waitForDomReadyObserver=new i.MutationObserver(()=>this._onRootMutate(e)),this._waitForDomReadyObserver.observe(this,{childList:!0,subtree:!0})),t}_isDomReady(){return this._itemsContainer=this.getRootNode().getElementById(`${this._id}itemsContainer`),this._dropContainer=this.getRootNode().getElementById(`${this._id}dropWrapper`),this._itemsContainer&&this._dropContainer}_onRootMutate(e){this._isDomReady()&&(this._waitForDomReadyObserver.disconnect(),e())}_observeChildrenResize(){let e=Array.from(this._itemsContainer.childNodes);this._labelItems=e.map(e=>this.getRootNode().getElementById(`${e.getAttribute("id")}label`)),this._labelItems.forEach(e=>super.observeChildResize(e))}_setVisibility(e){this._visible=e,this.style.visibility=e?"inherit":"hidden"}_isVisible(){return this._visible}_hideElement(){this._setVisibility(!1)}_showElement(){this._setVisibility(!0)}reLayout(){let e,i;t.mutationService.clear(this._mutationIds.read),t.mutationService.clear(this._mutationIds.write),this._mutationIds.read=t.mutationService.measure(()=>{let t=r.measure(this._id,this);e=t.measures,i=t.domNodes}),this._mutationIds.write=t.mutationService.mutate(()=>{r.patch(this._id,e,i),this._showElement()})}constructor(...e){super(...e),R(this,"_visible",!1),R(this,"_mutationIds",{read:null,write:null}),R(this,"_itemsContainer",null),R(this,"_dropContainer",null),R(this,"_labelItems",[])}}}(L(e),{resizeService:t,mutationService:n()},e);e.customElements.define(M,i)}},S="wix-iframe",G=(e=globalThis.window)=>{if(e&&void 0===e.customElements.get(S)){var t;let i=(t=L(e),class extends t{reLayout(){let e=this.querySelector("iframe");if(e){let t=e.dataset.src;t&&e.src!==t&&(e.src=t,e.dataset.src="",this.dataset.src="")}}attributeChangedCallback(e,t,i){i&&this.reLayout()}static get observedAttributes(){return["data-src"]}constructor(){super()}});E(e,S,i)}},P={measure(e,t,{hasBgScrollEffect:i,videoWidth:r,videoHeight:n,fittingType:a,alignType:o="center",qualities:s,staticVideoUrl:l,videoId:h,videoFormat:c,focalPoint:m}){var g,p,f,_,b,I,E,w,L,v;let A,O,y,C=i?t.offsetWidth:e.parentElement.offsetWidth,R=e.parentElement.offsetHeight,M=parseInt(r,10),x=parseInt(n,10),S=(g=a,p={wScale:C/M,hScale:R/x},f=M,_=x,{width:Math.round(f*(A=g===u.fittingTypes.SCALE_TO_FIT?Math.min(p.wScale,p.hScale):Math.max(p.wScale,p.hScale))),height:Math.round(_*A)}),G=(b=function(e,{width:t,height:i}){var r;return(r=e=>e.size,Object.values(e.reduce((e,t)=>(e[r(t)]=t,e),{}))).find(e=>e.size>t*i)||e[e.length-1]}(s,S),I=l,E=h,"mp4"===(w=c)?b.url?d(I,b.url):d(I,E,b.quality,w,"file.mp4"):""),P=(L=e,v=G,O=L.networkState===L.NETWORK_NO_SOURCE,y=!L.currentSrc.endsWith(v),v&&(y||O)),N=T[a]||"cover",F=m?function(e,t,i){let{width:r,height:n}=e,{width:a,height:o}=t,{x:s,y:l}=i;if(!a||!o)return`${s}% ${l}%`;let h=Math.max(a/r,o/n),c=r*h,d=n*h,u=Math.max(0,Math.min(c-a,s/100*c-a/2)),m=Math.max(0,Math.min(d-o,l/100*d-o/2)),g=u&&Math.floor(u/(c-a)*100),p=m&&Math.floor(m/(d-o)*100);return`${g}% ${p}%`}(S,{width:C,height:R},m):"",k=o.replace("_"," ");return{videoSourceUrl:G,needsSrcUpdate:P,videoStyle:{height:"100%",width:"100%",objectFit:N,objectPosition:F||k}}},mutate(e,t,i,r,n,a,o,s,l,h,c){var d,u,m;if(n?i.setAttribute("autoplay",""):i.removeAttribute("autoplay"),t){let{width:e,height:i,...n}=r;p(t,n)}else(function(e,t,i,r,n,a){a&&t.paused&&(i.style.opacity="1",t.style.opacity="0");let o=t.paused||""===t.currentSrc;if((e||a)&&o)if(t.ontimeupdate=null,t.onseeked=null,t.onplay=null,!a&&n){let e=t.muted;t.muted=!0,t.ontimeupdate=()=>{t.currentTime>0&&(t.ontimeupdate=null,t.onseeked=()=>{t.onseeked=null,t.muted=e,N(t,i,r)},t.currentTime=0)}}else t.onplay=()=>{a||(t.onplay=null),N(t,i,r)}})(o,i,e,s,n,c),p(i,r);d=o,u=i,m=a,d&&(u.src=m,u.load()),i.playbackRate=h}};function N(e,t,i){"fade"===i&&(t.style.transition="opacity 1.6s ease-out"),t.style.opacity="0",e.style.opacity="1"}let F="wix-video",k=(e=globalThis.window,t,i={experiments:{}})=>{if(e&&void 0===e.customElements.get(F)){var r,n;let a=L(e),o=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"50% 100%"});E(e,F,(r=a,n={...t,intersectionObserver:o},class extends r{connectedCallback(){i.disableImagesLazyLoading?this.reLayout():n.intersectionObserver.observe(this)}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}unobserveIntersect(){n.intersectionObserver?.unobserve(this)}reLayout(){let{isVideoDataExists:e,videoWidth:t,videoHeight:r,qualities:a,videoId:o,videoFormat:s,alignType:l,fittingType:h,focalPoint:c,hasBgScrollEffect:d,autoPlay:u,animatePoster:m,containerId:g,isEditorMode:p,playbackRate:f,hasAlpha:_}=JSON.parse(this.dataset.videoInfo);if(!e)return;let b=!i.prefersReducedMotion&&u,T=this.querySelector(`video[id^="${g}"]`),E=this.querySelector(`.bgVideoposter[id^="${g}"]`);if(this.unobserveChildren(),!(T&&E))return void this.observeChildren(this);let w=(0,I.qc)(g,{document:this.getRootNode(),experiments:i.experiments,logger:i.logger}),L=(0,I.iT)(`.webglcanvas[id^="${g}"]`,{element:w,experiments:i.experiments,logger:i.logger});(_||"true"===w.dataset.hasAlpha)&&!L?requestAnimationFrame(()=>this.reLayout()):n.mutationService.measure(()=>{let{videoSourceUrl:e,needsSrcUpdate:u,videoStyle:g}=P.measure(T,w,{hasBgScrollEffect:d,videoWidth:t,videoHeight:r,fittingType:h,alignType:l,qualities:a,staticVideoUrl:i.staticVideoUrl,videoId:o,videoFormat:s,focalPoint:c});n.mutationService.mutate(()=>{P.mutate(E,L,T,g,b,e,u,m,s,f,p)})})}attributeChangedCallback(e,t){t&&this.reLayout()}static get observedAttributes(){return["data-video-info"]}constructor(){super()}}))}}},46418(e,t,i){var r=i(17709),n=i.n(r),a=i(33842),o=i(26350),s=i(16858);let l=o,h=function(e,t=window){!function(e){if(void 0===e.Reflect||void 0===e.customElements||e.customElements.hasOwnProperty("polyfillWrapFlushCallback"))return;let t=e.HTMLElement;e.HTMLElement=function(){return e.Reflect.construct(t,[],this.constructor)},e.HTMLElement.prototype=t.prototype,e.HTMLElement.prototype.constructor=e.HTMLElement,e.Object.setPrototypeOf(e.HTMLElement,t),e.Object.defineProperty(e.HTMLElement,"name",{value:t.name})}(t);let i={registry:new Set,observe(e){i.registry.add(e)},unobserve(e){i.registry.delete(e)}};e.windowResizeService.init((0,s.vk)(()=>i.registry.forEach(e=>e.reLayout())),t);let r=(0,s.Aq)(),n=(e,i)=>{void 0===t.customElements.get(e)&&t.customElements.define(e,i)},a=(0,s.yO)({resizeService:r},t);return t.customElementNamespace={WixElement:a},n("wix-element",a),{contextWindow:t,defineWixBgMedia:e=>{n("wix-bg-media",(0,s.NL)(a,{windowResizeService:i,...e},t))},defineMultiColumnRepeaterElement:()=>{let e=(0,s._o)();n(s.KU,e)}}};var c=i(91534),d=i(76526);let u=()=>({getSiteScale:()=>{let e=document.querySelector("#site-root");return e?e.getBoundingClientRect().width/e.offsetWidth:1}}),m=(e,t,i,r)=>{let{getMediaDimensions:n,...o}=a[e]||{};return n?{...n(t,i,r),...o}:{width:t,height:i,...o}},{experiments:g,media:p,requestUrl:f,site:_}=window.viewerModel,b=(0,d.isExperimentOpen)(g,"specs.thunderbolt.customImageDomain");((e,t,i,r)=>{var a,o,s;let g,p,f,_,b,T,{environmentConsts:I,wixCustomElements:E,media:w,requestUrl:L,mediaServices:v}=(a=void 0,o=void 0,s=void 0,p={"specs.thunderbolt.useClassSelectorsForLookup":(g=t=>(0,d.isExperimentOpen)(e.experiments,t))("specs.thunderbolt.useClassSelectorsForLookup"),"specs.thunderbolt.addIdAsClassName":g("specs.thunderbolt.addIdAsClassName")},f={staticMediaUrl:e.media.staticMediaUrl,mediaRootUrl:e.media.mediaRootUrl,externalBaseUrl:e.externalBaseUrl??"",userDomainMediaPrefixes:e.userDomainMediaPrefixes??[],experiments:p,isViewerMode:!0,devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,...s},b={getMediaDimensionsByEffect:m,..._={mutationService:n(),isExperimentOpen:g,siteService:u()},...o},{...e,wixCustomElements:a||(T=u(),h({resizeService:{init:e=>new ResizeObserver(e)},windowResizeService:{init:e=>window.addEventListener("resize",e)},siteService:T})),services:_,environmentConsts:f,mediaServices:b}),A=E?.contextWindow||window;A.wixCustomElements=E,Object.assign(A.customElementNamespace,{mediaServices:v,environmentConsts:I,requestUrl:L,staticVideoUrl:w.staticVideoUrl}),(0,c.g)({...v},E.contextWindow,I),E.defineWixBgMedia(v),E.defineMultiColumnRepeaterElement(),window.__imageClientApi__=l})({experiments:g,media:p,requestUrl:f,externalBaseUrl:_?.externalBaseUrl,userDomainMediaPrefixes:b?p?.userDomainMediaPrefixes:void 0})},13176(e,t,i){i.d(t,{z:()=>r});let r=["MENU_AS_CONTAINER_TOGGLE","MENU_AS_CONTAINER_EXPANDABLE_MENU","BACK_TO_TOP_BUTTON","SCROLL_TO_","TPAMultiSection_","TPASection_","comp-","TINY_MENU","MENU_AS_CONTAINER","SITE_HEADER","SITE_FOOTER","SITE_PAGES","PAGES_CONTAINER","BACKGROUND_GROUP","POPUPS_ROOT"]},69654(e,t,i){i.d(t,{C5:()=>c,Xx:()=>d,ZH:()=>h,hW:()=>g,iT:()=>u,kp:()=>p,qc:()=>l,vP:()=>m});var r=i(13176);function n(e,t){return["true","new","b","enabled"].includes(`${e?.[t]}`.toLowerCase())}function a(e={}){let t=e?.experiments;if(!t&&"undefined"!=typeof window)try{let e=window;t=e.viewerModel?.experiments}catch{}if(!t)return!1;let i=n(t,"specs.thunderbolt.useClassSelectorsForLookup"),r=n(t,"specs.thunderbolt.addIdAsClassName");return!!(i&&r)}function o(e={}){return e.document||("undefined"!=typeof document?document:null)}function s(e,t,i){e&&"function"==typeof e.meter&&e.meter("dom_selector_id_fallback",{customParams:{compId:t,selectorType:i}}),"undefined"!=typeof console&&console.warn&&console.warn(`[DOM Selectors] Fallback to ID for '${t}' (${i}).`)}function l(e,t={}){let i=o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=i.querySelector(`.${e}`);if(t)return t}let n=i.getElementById(e);return n&&r&&s(t?.logger,e,"getElementById"),n}function h(e,t={}){if(!e)return"";if(!a(t))return e.id;let i=Array.from(e.classList||[]),o=n(t.experiments,"specs.thunderbolt.preserveWixSelectClass");if(t.isEditor&&o&&!i.includes("wix-select"))return"";if(t.componentIds?.size){for(let e of i.filter(e=>e.includes("__"))){let i=e.indexOf("__"),r=e.substring(0,i);if(t.componentIds.has(r))return e}for(let e of i)if(t.componentIds.has(e))return e}let l=t.prefixes??r.z,c=null;for(let e of i)if(l.some(t=>e.startsWith(t))){if(e.includes("__"))return e;(!c||e.length<c.length)&&(c=e)}return c||(e.id&&s(t.logger,e.id,"getElementCompId"),e.id||"")}function c(e){return e.replace(/#([a-zA-Z0-9_-]+)/g,".$1").replace(/\[id="([^"]+)"\]/g,'[class~="$1"]').replace(/\[id\^="([^"]+)"\]/g,':is([class^="$1"],[class*=" $1"])').replace(/\[id\*="([^"]+)"\]/g,'[class*="$1"]').replace(/\[id\$="([^"]+)"\]/g,'[class$="$1"]')}function d(e,t,i=!1){if(!t)return e;let r=c(e);return`:is(${r}${i?".wix-select":""}, ${e})`}function u(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return null;let r=a(t);if(r){let t=c(e),r=i.querySelector(t);if(r)return r}let n=i.querySelector(e);return n&&r&&s(t.logger,e,"querySelector"),n}function m(e,t={}){let i=t.element||o(t);if(!i||!e||"string"!=typeof e)return[];let r=a(t);if(r){let t=c(e),r=Array.from(i.querySelectorAll(t));if(r.length>0)return r}let n=Array.from(i.querySelectorAll(e));return n.length>0&&r&&s(t.logger,e,"querySelectorAll"),n}function g(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=e.closest(`.${t}`);if(i)return i}let n=e.closest(`#${t}`);return n&&r&&s(i.logger,t,"getClosestByCompId"),n}function p(e,t,i={}){if(!t||"string"!=typeof t)return null;let r=a(i);if(r){let i=c(t),r=e.closest(i);if(r)return r}let n=e.closest(t);return n&&r&&s(i.logger,t,"closest"),n}}}]); | |
| 2458 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/custom-element-utils.inline.bec24b26.bundle.min.js.map</script> | |
| 2459 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6901"],{33842(e,t,i){i.r(t),i.d(t,{BackgroundParallax:()=>n,BackgroundParallaxZoom:()=>o,BackgroundReveal:()=>l,BgCloseUp:()=>d,BgExpand:()=>c,BgFabeBack:()=>h,BgFadeIn:()=>u,BgFadeOut:()=>g,BgFake3D:()=>m,BgPanLeft:()=>f,BgPanRight:()=>b,BgParallax:()=>p,BgPullBack:()=>v,BgReveal:()=>w,BgRotate:()=>M,BgShrink:()=>y,BgSkew:()=>I,BgUnwind:()=>x,BgZoomIn:()=>L,BgZoomOut:()=>D,ImageParallax:()=>O,ImageReveal:()=>P});var r=i(16956);let a=(e,t)=>({width:e,height:t}),s=(e,t,i)=>({width:e,height:Math.max(t,i)}),n={hasParallax:!0,getMediaDimensions:s},o={hasParallax:!0,getMediaDimensions:s},l={hasParallax:!0,getMediaDimensions:s},d={getMediaDimensions:a},c={getMediaDimensions:a},h={getMediaDimensions:a},u={getMediaDimensions:a},g={getMediaDimensions:a},m={hasParallax:!0,getMediaDimensions:s},f={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},b={getMediaDimensions:(e,t)=>({width:1.2*e,height:t})},p={hasParallax:!0,getMediaDimensions:s},v={getMediaDimensions:a},w={hasParallax:!0,getMediaDimensions:s},M={getMediaDimensions:(e,t)=>{let i,a,s,n,o;return i=(0,r.kU)(22),a=Math.hypot(e,t)/2,s=Math.acos(e/2/a),n=e*Math.abs(Math.cos(i))+t*Math.abs(Math.sin(i)),o=e*Math.abs(Math.sin(i))+t*Math.abs(Math.cos(i)),{width:Math.ceil(i<s?n:2*a),height:Math.ceil(i<(0,r.kU)(90)-s?o:2*a)}}},y={getMediaDimensions:a},I={getMediaDimensions:(e,t)=>({width:e,height:e*Math.tan((0,r.kU)(20))+t})},x={getMediaDimensions:a},L={hasParallax:!0,getMediaDimensions:s},D={getMediaDimensions:(e,t)=>({width:1.15*e,height:1.15*t})},O={getMediaDimensions:(e,t)=>({width:e,height:1.5*t})},P={getMediaDimensions:(e,t,i)=>({width:e,height:i})}},16956(e,t,i){function r(e,t,i,r,a){return(a-e)*(r-i)/(t-e)+i}function a(e,t){let[i,r]=e,[a,s]=t;return Math.sqrt((a-i)**2+(s-r)**2)}function s(e){return e*Math.PI/180}function n(e,t,i){return void 0===e&&(e=[0,0]),void 0===t&&(t=[0,0]),void 0===i&&(i=0),(360+i+180*Math.atan2(t[1]-e[1],t[0]-e[0])/Math.PI)%360}i.d(t,{Io:()=>a,Rb:()=>n,_b:()=>r,kU:()=>s})},91534(e,t,i){i.d(t,{g:()=>b});var r=i(26350);let a={columnCount:1,columns:1,fontWeight:1,lineHeight:1,opacity:1,zIndex:1,zoom:1},s=(e,t)=>(Array.isArray(t)?t:[t]).reduce((t,i)=>{let r=e[i];return void 0!==r?Object.assign(t,{[i]:r}):t},{}),n=(e,t)=>e&&t&&Object.keys(t).forEach(i=>{let r=t[i];if(void 0!==r)e.style[i]="number"!=typeof r||a[i]?r.toString():`${r}px`;else e.style.removeProperty(i)}),o=e=>e.endsWith("/")?e:`${e}/`,l=(e,t,i)=>{if(!e.targetWidth||!e.targetHeight||!e.imageData.uri)return{uri:"",css:{},transformed:!1};let{imageData:a}=e,n=e.displayMode||r.fittingTypes.SCALE_TO_FILL,l=Object.assign(s(a,["upscaleMethod"]),s(e,["filters","encoding","allowFullGIFTransformation","allowWebpAvifTransforms"]),e.quality||a.quality,{hasAnimation:e?.hasAnimation||a?.hasAnimation}),h=c(e.imageData.devicePixelRatio||t.devicePixelRatio),u=Object.assign(s(a,["width","height","crop","name","focalPoint"]),{id:a.uri}),g={width:e.targetWidth,height:e.targetHeight,htmlTag:i||"img",pixelAspectRatio:h,alignment:e.alignType||r.alignTypes.CENTER},m=(0,r.getData)(n,u,g,l),f=a.userDomainMediaURL?a.userDomainMediaURL:(({uri:e,envConsts:t})=>{let{externalBaseUrl:i,userDomainMediaPrefixes:r=[],staticMediaUrl:a}=t;return r.some(t=>e.startsWith(`${t}_`))&&i?`${o(i)}_media/`:o(a)})({uri:a.uri,envConsts:t});return m.uri=d(m.uri,f,t.mediaRootUrl),m},d=(e,t,i)=>{if(/(^https?)|(^data)|(^blob)|(^\/\/)/.test(e))return e;let r=o(t);return e&&(/^micons\//.test(e)?r=o(i):/[^.]+$/.exec(e)?.[0]==="ico"&&(r=r.replace("media","ficons"))),r+e},c=e=>{let t=window.location.search.split("&").map(e=>e.split("=")).find(e=>e[0]?.toLowerCase().includes("devicepixelratio"));return(t?.[1]?Number(t[1]):null)||e||1},h=function(e,t,i,{containerElm:r,bgEffect:a="none",sourceSets:s},n){var o,l;let d,c=i.image,h=i[e],u=n.getScreenHeightOverride?.()||document.documentElement.clientHeight||window.innerHeight||0,g=r?.dataset.mediaHeightOverrideType,m=a&&"none"!==a||s&&s.some(e=>e.scrollEffect),f=r&&m?r:h,b=window.getComputedStyle(h).getPropertyValue("--bg-scrub-effect"),{width:p,height:v}=n.getMediaDimensionsByEffect?.(b||a,f.offsetWidth,f.offsetHeight,u)||{width:h.offsetWidth,height:h.offsetHeight};if(s&&(o=f.offsetWidth,l=f.offsetHeight,d={},s.forEach(({mediaQuery:e,scrollEffect:t})=>{d[e]=n.getMediaDimensionsByEffect?.(t,o,l,u).height||l}),t.sourceSetsTargetHeights=d),!c)return;let w=c.getAttribute("src");b&&(t.top=.5*(h.offsetHeight-v),t.left=.5*(h.offsetWidth-p)),t.width=p,t.height="fixed"===g||"viewport"===g?document.documentElement.clientHeight+80:v,t.screenHeight=u,t.imgSrc=w,t.boundingRect=h.getBoundingClientRect(),t.mediaHeightOverrideType=g,t.srcset=c.srcset},u=function(e,t,i,a,s,o,d,c,h,u){if(!Object.keys(t).length)return;let{imageData:g}=a,m=i[e],f=i.image;h&&(g.devicePixelRatio=1);let b=a.targetScale||1,p=s.isExperimentOpen?.("specs.thunderbolt.allowFullGIFTransformation"),v=s.isExperimentOpen?.("specs.thunderbolt.allowWebpAvifTransforms"),w={...a,...!a.skipMeasure&&{targetWidth:(t.width||0)*b,targetHeight:(t.height||0)*b},displayMode:g.displayMode,allowFullGIFTransformation:p,allowWebpAvifTransforms:v},M=l(w,o,"img"),y=M?.css?.img||{};n(f,function(e,t,i,r,a){let s=function(e,t=1){return 1!==t?{...e,width:"100%",height:"100%"}:e}(t,r);if(a&&(delete s.height,s.width="100%"),!e)return s;let n={...s};return"fill"===i?(n.position="absolute",n.top="0"):"fit"===i&&(n.height="100%"),"fixed"===e&&(n["will-change"]="transform"),n.objectPosition&&(n.objectPosition=t.objectPosition.replace(/(center|bottom)$/,"top")),n}(t.mediaHeightOverrideType,y,g.displayMode,b,c)),(t.top||t.left)&&n(m,{top:`${t.top}px`,left:`${t.left}px`});let I=M?.uri||"",x=g?.hasAnimation||a?.hasAnimation,L=function(e,t,i){let{sourceSets:r}=t;if(!r||!r.length)return;let a={};return r.forEach(({mediaQuery:r,crop:s,focalPoint:n})=>{let o=l({...t,targetHeight:(e.sourceSetsTargetHeights||{})[r]||0,imageData:{...t.imageData,crop:s,focalPoint:n}},i,"img");a[r]=o.uri||""}),a}(t,w,o);if(u&&(f.dataset.ssrSrcDone="true"),!a.isLQIP||!a.lqipTransition||"transitioned"in m.dataset||(m.dataset.transitioned="",f.complete?f.onload=function(){f.dataset.loadDone=""}:f.onload=function(){f.complete?f.dataset.loadDone="":f.onload=function(){f.dataset.loadDone=""}}),d){let e;(e=g.uri,(0,r.getFileExtension)(e)===r.fileType.GIF||(0,r.getFileExtension)(e)===r.fileType.WEBP&&x)?(f.setAttribute("fetchpriority","low"),f.setAttribute("loading","lazy"),f.setAttribute("decoding","async")):f.setAttribute("fetchpriority","high"),f.currentSrc!==I&&f.setAttribute("src",I),t.srcset&&!t.srcset.split(", ").some(e=>e.split(" ")[0]===I)&&f.setAttribute("srcset",I),i.picture&&w.sourceSets&&Array.from(i.picture.querySelectorAll("source")).forEach(e=>{let t=e.media||"",i=L?.[t];e.srcset!==i&&e.setAttribute("srcset",i||"")})}},g={parallax:"ImageParallax",fixed:"ImageReveal"};var m=i(17709),f=i.n(m);function b(e={},t=null,i={}){if("undefined"==typeof window)return;let a={staticMediaUrl:r.STATIC_MEDIA_URL,mediaRootUrl:r.MEDIA_ROOT_URL,experiments:{},devicePixelRatio:/iemobile/i.test(navigator.userAgent)?Math.round(window.screen.availWidth/(window.screen.width||window.document.documentElement.clientWidth)):window.devicePixelRatio,disableImagesLazyLoading:(()=>{try{return"true"===new URL(window.location.href).searchParams.get("disableLazyLoading")}catch{return!1}})(),...i},s=function(e,t){let i="wow-image";if(void 0===(e=e||window).customElements.get(i)){let r,a;return e.ResizeObserver&&(r=new e.ResizeObserver(e=>e.map(e=>e.target.reLayout()))),e.IntersectionObserver&&(a=new IntersectionObserver(e=>e.map(e=>{if(e.isIntersecting){let t=e.target;t.unobserveIntersect(),t.observeResize()}return e}),{rootMargin:"150% 100%"})),function(s){var n,o;let l=(n={resizeService:r,intersectionService:a,mutationService:f(),...t},o=e,class extends o.HTMLElement{constructor(){super(),this.childListObserver=null,this.timeoutId=null}attributeChangedCallback(e,t){t&&this.reLayout()}connectedCallback(){s.disableImagesLazyLoading?this.reLayout():this.observeIntersect()}disconnectedCallback(){this.unobserveResize(),this.unobserveIntersect(),this.unobserveChildren()}static get observedAttributes(){return["data-image-info"]}reLayout(){let e={},t={},i=this.getAttribute("id"),r=JSON.parse(this.dataset.imageInfo||""),a="true"===this.dataset.isResponsive,{bgEffectName:l}=this.dataset,{scrollEffect:d}=r.imageData,{sourceSets:c}=r,m=l||d&&g[d];c&&c.length&&c.forEach(e=>{e.scrollEffect&&(e.scrollEffect=g[e.scrollEffect])}),e[i]=this,r.containerId&&(e[r.containerId]=o.document.getElementById(`${r.containerId}`));let f=r.containerId?e[r.containerId]:void 0;if(e.image=this.querySelector("img"),e.picture=this.querySelector("picture"),!e.image)return void this.observeChildren(this);this.unobserveChildren(),this.observeChildren(this),n.mutationService.measure(()=>{h(i,t,e,{containerElm:f,bgEffect:m,sourceSets:c},n)});let b=(o,l)=>{n.mutationService.mutate(()=>{u(i,t,e,r,n,s,o,a,m,l)})},p=e.image,v=this.dataset.hasSsrSrc&&!p.dataset.ssrSrcDone;!p.getAttribute("src")||v?b(!0,!0):this.debounceImageLoad(b)}debounceImageLoad(e){clearTimeout(this.timeoutId),this.timeoutId=o.setTimeout(()=>{e(!0)},250),e(!1)}observeResize(){n.resizeService?.observe(this)}unobserveResize(){n.resizeService?.unobserve(this)}observeIntersect(){n.intersectionService?.observe(this)}unobserveIntersect(){n.intersectionService?.unobserve(this)}observeChildren(e){this.childListObserver||(this.childListObserver=new o.MutationObserver(()=>{this.reLayout()})),this.childListObserver.observe(e,{childList:!0})}unobserveChildren(){this.childListObserver&&(this.childListObserver.disconnect(),this.childListObserver=null)}});e.customElements.define(i,l)}}}(t,e);s&&s(a)}},76526(e,t,i){i.d(t,{isExperimentOpen:()=>s});var r=i(7073);let a=[],s=(e,t)=>a.includes(t)||(0,r.kg)(e,t)},7073(e,t,i){i.d(t,{kg:()=>a});var r=["true","b","c","new","enabled"];function a(e,t){let i=e[t];return!0===i||"string"==typeof i&&r.includes(i.toLowerCase())}}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=46418)}),e.O()}]); | |
| 2460 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/initCustomElements.inline.51cbd1b6.bundle.min.js.map</script> | |
| 2461 | + | |
| 2462 | + | |
| 2463 | +<!-- preloading pre-scripts --> | |
| 2464 | + | |
| 2465 | + | |
| 2466 | + <link href="https://siteassets.parastorage.com/pages/pages/thunderbolt?appDefinitionIdToSiteRevision=%7B%2227fcc256-f3f8-47df-a66a-8f8176cc7f99%22%3A%2245%22%2C%22a5dd7ce8-07c2-4251-8d58-9657c1a43163%22%3A%22219%22%2C%2214271d6f-ba62-d045-549b-ab972ae1f70e%22%3A%2225%22%2C%2214bcded7-0066-7c35-14d7-466cb3f09103%22%3A%221335%22%2C%227479d596-137c-4fa3-89cd-d7091042ba61%22%3A%22132%22%2C%2275d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3%22%3A%22305%22%2C%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%3A%226855%22%2C%22b976560c-3122-4351-878f-453f337b7245%22%3A%221358%22%2C%2213d21c63-b5ec-5912-8397-c3a5ddb27a97%22%3A%22440%22%7D&appDefinitionIdsWithCustomCss=%5B%22a0c68605-c2e7-4c8d-9ea1-767f9770e087%22%5D&beckyExperiments=.DatePickerPortal%2C.DisableDocumentScrollWhenLightBoxOpen%2C.EnableCustomCSSVarsForLoginSocialBar%2C.FreemiumBannerOdeditor%2C.LoginBarEnableLoggingInStateInSSR%2C.TextInputAutoFillFix%2C.UseLoginSocialBarCustomMenu%2C.UseNestedLoginSocialBarMenuItems%2C.UseNewLoginBarDropdownMenuAlignment%2C.UseNewLoginSocialBarElementStructure%2C.UseNewLoginSocialBarMemberInitialsAvatar%2C.WixFreeSiteBannerDesktop%2C.WixFreeSiteBannerMobile%2C.a11yContrast%2C.addIdAsClassName%2C.allowWebpAvifTransforms%2C.builderBoxSizingBorderBox%2C.buttonUdp%2C.calculateCollapsibleTextLineHeightByFont%2C.dom_store%2C.dontApplyDacOverridesOnBoBApps%2C.dynamicPageLinkTarget%2C.dynamicSlots%2C.fiveGridLineStudioSkins%2C.fixFirefoxLinkBarIntrinsicSizing%2C.fixRemappedFullNameCompType%2C.imageEncodingAVIF%2C.isClassNameToRootEnabled%2C.motionTimeAnimationsCSS%2C.plainClassSelectors%2C.responsiveContainerRoleGroup%2C.sectionA11yProps%2C.shouldIgnoreWidgetsPageData%2C.shouldUseResponsiveImages%2C.splitSlotSelectors%2C.svgResolver_2%2C.updateRichTextSemanticClassNamesOnCorvid%2C.useClassnameInResponsiveAppWidget%2C.useFragmentHrefForTopBottomAnchor%2C.useImageAvifFormatInNativeProGallery%2C.useResponsiveImgClassicFixed%2C.useSvgLoaderFeature%2C.useSvgLoaderFeatureOnBuilderComps%2C.useWowImageInFastGallery&blocksBuilderManifestGeneratorVersion=1.129.0&commonConfig=%7B%22siteRevision%22%3A%224%22%2C%22branchId%22%3A%22f815f8fb-8f6e-40d3-b375-054107669a53%22%7D&contentType=application%2Fjson&deviceType=Desktop&dfCk=6&dfVersion=1.5507.0&disableStaticPagesUrlHierarchy=false&editorName=Studio&experiments=dm_bgScrubToMotionFixer%2Cdm_masterPageVariablesQueryFixer%2Cdm_migrateOldHoverBoxToNewFixer&externalBaseUrl=https%3A%2F%2Fwww.leshabitationssf.com&fileId=d1e4c663.bundle.min&formFactor=desktop&hasTPAWorkerOnSite=false&hasUserDomainMedia=false&isBuilderComponentModel=false&isClientSdkOnSite=true&isHttps=true&isInSeo=false&isMultilingualEnabled=true&isPremiumDomain=true&isResponsive=true&isTrackClicksAnalyticsEnabled=false&isUrlMigrated=true&isWixCodeOnPage=false&isWixCodeOnSite=true&language=fr&languageResolutionMethod=QueryParam&metaSiteId=39b9882f-9e71-4f93-bb6d-a87166c85cda&module=thunderbolt-features&originalLanguage=fr&pageId=5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json&pilerExperiments=specs.piler.useEditorReactComponents&quickActionsMenuEnabled=false®istryLibrariesTopology=%5B%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22wixui%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%2C%7B%22artifactId%22%3A%22editor-elements%22%2C%22namespace%22%3A%22dsgnsys%22%2C%22url%22%3A%22https%3A%2F%2Fstatic.parastorage.com%2Fservices%2Feditor-elements%2F1.15400.0%22%7D%5D&remoteWidgetStructureBuilderVersion=1.251.0&siteId=452071c1-a99b-44c2-b686-dd15b11264a3&siteRevision=4&staticHTMLComponentUrl=https%3A%2F%2Fwww-leshabitationssf-com.filesusr.com%2F&useSandboxInHTMLComp=false&viewMode=desktop" id="features_masterPage" as="fetch" position="post-scripts" rel="prefetch" crossorigin="anonymous"></link> | |
| 2467 | + | |
| 2468 | + | |
| 2469 | + | |
| 2470 | + | |
| 2471 | + | |
| 2472 | + <!-- sentryOnLoad Setup Script --> | |
| 2473 | + <script id="sentryOnLoadSetup"> | |
| 2474 | + function _extends(){_extends=Object.assign||function(target){for(var i=1;i<arguments.length;i++){var source=arguments[i];for(var key in source){if(Object.prototype.hasOwnProperty.call(source,key)){target[key]=source[key]}}}return target};return _extends.apply(this,arguments)}(function(){var SENTRY_REROUTED_MARK_KEY="_REROUTED";var SENTRY_IS_NON_WIX_TPA_MARK_KEY="_isTPA";var SENTRY_REROUTE_DATA_KEY="_ROUTE_TO";var addRerouteDataToSentryEvent=function(event){var _event_extra,_event_exception_values__stacktrace,_event_exception_values,_event_exception;if(event==null?void 0:(_event_extra=event.extra)==null?void 0:_event_extra[SENTRY_REROUTE_DATA_KEY]){return}if(event==null?void 0:(_event_exception=event.exception)==null?void 0:(_event_exception_values=_event_exception.values)==null?void 0:(_event_exception_values__stacktrace=_event_exception_values[0].stacktrace)==null?void 0:_event_exception_values__stacktrace.frames){var frames=event.exception.values[0].stacktrace.frames;var framesModuleMetadata=frames.filter(function(frame){return frame.module_metadata&&frame.module_metadata.appId}).map(function(v){return{appId:v.module_metadata.appId,release:v.module_metadata.release,dsn:v.module_metadata.dsn}});var routeTo=framesModuleMetadata.slice(-1);if(routeTo.length){var _window_wixEmbedsAPI,_app_monitoringComponent_monitoring,_app_monitoringComponent;var appId=routeTo[0].appId;var app=(_window_wixEmbedsAPI=window.wixEmbedsAPI)==null?void 0:_window_wixEmbedsAPI.getMonitoringConfig(appId);if((app==null?void 0:(_app_monitoringComponent=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring=_app_monitoringComponent.monitoring)==null?void 0:_app_monitoringComponent_monitoring.type)==="SENTRY"){var _app_monitoringComponent_monitoring_sentryOptions,_app_monitoringComponent_monitoring1,_app_monitoringComponent1;var dsn=app==null?void 0:(_app_monitoringComponent1=app.monitoringComponent)==null?void 0:(_app_monitoringComponent_monitoring1=_app_monitoringComponent1.monitoring)==null?void 0:(_app_monitoringComponent_monitoring_sentryOptions=_app_monitoringComponent_monitoring1.sentryOptions)==null?void 0:_app_monitoringComponent_monitoring_sentryOptions.dsn;if(dsn){if(!routeTo[0].dsn&&dsn){routeTo[0].dsn=dsn}}}if(app){var _obj;event.extra=_extends({},event.extra,(_obj={},_obj[SENTRY_IS_NON_WIX_TPA_MARK_KEY]=!app.isWixTPA,_obj))}var _obj1;event.extra=_extends({},event.extra,(_obj1={},_obj1[SENTRY_REROUTE_DATA_KEY]=routeTo,_obj1[SENTRY_REROUTED_MARK_KEY]=true,_obj1))}}};function overrideSentryInitOptions(){var Sentry=window.Sentry;var makeMultiplexedTransport=Sentry.makeMultiplexedTransport,makeFetchTransport=Sentry.makeFetchTransport;var transport=makeMultiplexedTransport?makeMultiplexedTransport(makeFetchTransport,function(args){var event=args.getEvent();if(event&&event.extra&&event.extra[SENTRY_REROUTE_DATA_KEY]&&Array.isArray(event.extra[SENTRY_REROUTE_DATA_KEY])){return event.extra[SENTRY_REROUTE_DATA_KEY]}return[]}):makeFetchTransport;Sentry.init({transport:transport,integrations:[Sentry.browserTracingIntegration({instrumentNavigation:false,instrumentPageLoad:false})],tracePropagationTargets:[/^https:\/\/[a-zA-Z0-9-]+\.wix-app\.run\/.*/],attachStacktrace:true,beforeSend:function(event,hint){var customEvent=new CustomEvent("sentry-error",{cancelable:true,detail:{sentryEvent:event,sentryHint:hint}});var dispatchEventRes=window.dispatchEvent(customEvent);if(!dispatchEventRes){return null}if(event.extra){if(event.extra[SENTRY_REROUTED_MARK_KEY]){delete event.extra[SENTRY_REROUTED_MARK_KEY]}if(event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]){delete event.extra[SENTRY_IS_NON_WIX_TPA_MARK_KEY]}}return event}});if(Sentry.moduleMetadataIntegration){Sentry.addIntegration(Sentry.moduleMetadataIntegration());Sentry.addGlobalEventProcessor(function(event){addRerouteDataToSentryEvent(event);return event})}}window.sentryOnLoad=overrideSentryInitOptions})(); | |
| 2475 | + </script> | |
| 2476 | + <!-- Sentry Loader Script --> | |
| 2477 | + <script id="sentry"> | |
| 2478 | + !function(n,e,r,t,o,i,a,c,s){for(var u=s,f=0;f<document.scripts.length;f++)if(document.scripts[f].src.indexOf(i)>-1){u&&"no"===document.scripts[f].getAttribute("data-lazy")&&(u=!1);break}var p=[];function l(n){return"e"in n}function d(n){return"p"in n}function _(n){return"f"in n}var v=[];function y(n){u&&(l(n)||d(n)||_(n)&&n.f.indexOf("capture")>-1||_(n)&&n.f.indexOf("showReportDialog")>-1)&&L(),v.push(n)}function h(){y({e:[].slice.call(arguments)})}function g(n){y({p:n})}function E(){try{n.SENTRY_SDK_SOURCE="loader";var e=n[o],i=e.init;e.init=function(o){n.removeEventListener(r,h),n.removeEventListener(t,g);var a=c;for(var s in o)Object.prototype.hasOwnProperty.call(o,s)&&(a[s]=o[s]);!function(n,e){var r=n.integrations||[];if(!Array.isArray(r))return;var t=r.map((function(n){return n.name}));n.tracesSampleRate&&-1===t.indexOf("BrowserTracing")&&(e.browserTracingIntegration?r.push(e.browserTracingIntegration({enableInp:!0})):e.BrowserTracing&&r.push(new e.BrowserTracing));(n.replaysSessionSampleRate||n.replaysOnErrorSampleRate)&&-1===t.indexOf("Replay")&&(e.replayIntegration?r.push(e.replayIntegration()):e.Replay&&r.push(new e.Replay));n.integrations=r}(a,e),i(a)},setTimeout((function(){return function(e){try{"function"==typeof n.sentryOnLoad&&(n.sentryOnLoad(),n.sentryOnLoad=void 0)}catch(n){console.error("Error while calling `sentryOnLoad` handler:"),console.error(n)}try{for(var r=0;r<p.length;r++)"function"==typeof p[r]&&p[r]();p.splice(0);for(r=0;r<v.length;r++){_(i=v[r])&&"init"===i.f&&e.init.apply(e,i.a)}m()||e.init();var t=n.onerror,o=n.onunhandledrejection;for(r=0;r<v.length;r++){var i;if(_(i=v[r])){if("init"===i.f)continue;e[i.f].apply(e,i.a)}else l(i)&&t?t.apply(n,i.e):d(i)&&o&&o.apply(n,[i.p])}}catch(n){console.error(n)}}(e)}))}catch(n){console.error(n)}}var O=!1;function L(){if(!O){O=!0;var n=e.scripts[0],r=e.createElement("script");r.src=a,r.crossOrigin="anonymous",r.addEventListener("load",E,{once:!0,passive:!0}),n.parentNode.insertBefore(r,n)}}function m(){var e=n.__SENTRY__,r=void 0!==e&&e.version;return r?!!e[r]:!(void 0===e||!e.hub||!e.hub.getClient())}n[o]=n[o]||{},n[o].onLoad=function(n){m()?n():p.push(n)},n[o].forceLoad=function(){setTimeout((function(){L()}))},["init","addBreadcrumb","captureMessage","captureException","captureEvent","configureScope","withScope","showReportDialog"].forEach((function(e){n[o][e]=function(){y({f:e,a:arguments})}})),n.addEventListener(r,h),n.addEventListener(t,g),u||setTimeout((function(){L()}))}(window,document,"error","unhandledrejection","Sentry",'605a7baede844d278b89dc95ae0a9123','https://browser.sentry-cdn.com/7.120.3/bundle.tracing.es5.min.js',{"dsn":"https://605a7baede844d278b89dc95ae0a9123@sentry-next.wixpress.com/68","tracesSampleRate":1},true); | |
| 2479 | + </script> | |
| 2480 | + <!-- Sentry's makeMultiplexedTransport --> | |
| 2481 | + <script> | |
| 2482 | + !function(n){var r={},t=function(){return t=Object.assign||function(n){for(var r,t=1,e=arguments.length;t<e;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o]);return n},t.apply(this,arguments)};function e(n,r,t,e){return new(t||(t=Promise))((function(o,i){function u(n){try{f(e.next(n))}catch(n){i(n)}}function c(n){try{f(e.throw(n))}catch(n){i(n)}}function f(n){var r;n.done?o(n.value):(r=n.value,r instanceof t?r:new t((function(n){n(r)}))).then(u,c)}f((e=e.apply(n,r||[])).next())}))}function o(n,r){var t,e,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(c){return function(f){return function(c){if(t)throw new TypeError("Generator is already executing.");for(;i&&(i=0,c[0]&&(u=0)),u;)try{if(t=1,e&&(o=2&c[0]?e.return:c[0]?e.throw||((o=e.return)&&o.call(e),0):e.next)&&!(o=o.call(e,c[1])).done)return o;switch(e=0,o&&(c=[2&c[0],o.value]),c[0]){case 0:case 1:o=c;break;case 4:return u.label++,{value:c[1],done:!1};case 5:u.label++,e=c[1],c=[0];continue;case 7:c=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==c[0]&&2!==c[0])){u=0;continue}if(3===c[0]&&(!o||c[1]>o[0]&&c[1]<o[3])){u.label=c[1];break}if(6===c[0]&&u.label<o[1]){u.label=o[1],o=c;break}if(o&&u.label<o[2]){u.label=o[2],u.ops.push(c);break}o[2]&&u.ops.pop(),u.trys.pop();continue}c=r.call(n,u)}catch(n){c=[6,n],e=0}finally{t=o=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,f])}}}function i(n){var r="function"==typeof Symbol&&Symbol.iterator,t=r&&n[r],e=0;if(t)return t.call(n);if(n&&"number"==typeof n.length)return{next:function(){return n&&e>=n.length&&(n=void 0),{value:n&&n[e++],done:!n}}};throw new TypeError(r?"Object is not iterable.":"Symbol.iterator is not defined.")}function u(n,r){var t="function"==typeof Symbol&&n[Symbol.iterator];if(!t)return n;var e,o,i=t.call(n),u=[];try{for(;(void 0===r||r-- >0)&&!(e=i.next()).done;)u.push(e.value)}catch(n){o={error:n}}finally{try{e&&!e.done&&(t=i.return)&&t.call(i)}finally{if(o)throw o.error}}return u}function c(n){return n&&n.Math==Math?n:void 0}var f="object"==typeof globalThis&&c(globalThis)||"object"==typeof window&&c(window)||"object"==typeof self&&c(self)||"object"==typeof global&&c(global)||function(){return this}()||{},a={};var s=/^(?:(\w+):)\/\/(?:(\w+)(?::(\w+)?)?@)([\w.-]+)(?::(\d+))?\/(.+)/;function v(n){var r=s.exec(n);if(r){var t,e=u(r.slice(1),6),o=e[0],i=e[1],c=e[2],v=void 0===c?"":c,l=e[3],y=e[4],d=void 0===y?"":y,p="",h=e[5],b=h.split("/");if(b.length>1&&(p=b.slice(0,-1).join("/"),h=b.pop()),h){var w=h.match(/^\d+/);w&&(h=w[0])}return{protocol:(t={host:l,pass:v,path:p,projectId:h,port:d,protocol:o,publicKey:i}).protocol,publicKey:t.publicKey||"",pass:t.pass||"",host:t.host,port:t.port||"",path:t.path||"",projectId:t.projectId}}!function(n){if(!("console"in f))return n();var r=f.console,t={},e=Object.keys(a);e.forEach((function(n){var e=a[n];t[n]=r[n],r[n]=e}));try{n()}finally{e.forEach((function(n){r[n]=t[n]}))}}((function(){console.error("Invalid Sentry Dsn: ".concat(n))}))}function l(n,r){return e=t({sentry_key:n.publicKey,sentry_version:"7"},r&&{sentry_client:"".concat(r.name,"/").concat(r.version)}),Object.keys(e).map((function(n){return"".concat(encodeURIComponent(n),"=").concat(encodeURIComponent(e[n]))})).join("&");var e}function y(n,r){var t;return function(n,r){var t,e,o=n[1];try{for(var u=i(o),c=u.next();!c.done;c=u.next()){var f=c.value;if(r(f,f[0].type))return!0}}catch(n){t={error:n}}finally{try{c&&!c.done&&(e=u.return)&&e.call(u)}finally{if(t)throw t.error}}}(n,(function(n,e){return r.includes(e)&&(t=Array.isArray(n)?n[1]:void 0),!!t})),t}for(var d in r.makeMultiplexedTransport=function(n,r){return function(c){var f=n(c),a=new Map;function s(r,i){var u=i?"".concat(r,":").concat(i):r,f=a.get(u);if(!f){var s=v(r);if(!s)return;var d=function(n,r){void 0===r&&(r={});var t="string"==typeof r?r:r.tunnel,e="string"!=typeof r&&r.t?r.t.sdk:void 0;return t||"".concat(function(n){return"".concat(function(n){var r=n.protocol?"".concat(n.protocol,":"):"",t=n.port?":".concat(n.port):"";return"".concat(r,"//").concat(n.host).concat(t).concat(n.path?"/".concat(n.path):"","/api/")}(n)).concat(n.projectId,"/envelope/")}(n),"?").concat(l(n,e))}(s,c.tunnel);f=i?function(n,r){var i=this;return function(u){var c=n(u);return t(t({},c),{send:function(n){return e(i,void 0,void 0,(function(){var t;return o(this,(function(e){return(t=y(n,["event","transaction","profile","replay_event"]))&&(t.release=r),[2,c.send(n)]}))}))}})}}(n,i)(t(t({},c),{url:d})):n(t(t({},c),{url:d})),a.set(u,f)}return[r,f]}return{send:function(n){return e(this,void 0,void 0,(function(){function e(r){var t=r&&r.length?r:["event"];return y(n,t)}var i;return o(this,(function(o){switch(o.label){case 0:return 0===(i=r({envelope:n,getEvent:e}).map((function(n){return"string"==typeof n?s(n,void 0):s(n.dsn,n.release)})).filter((function(n){return!!n}))).length&&i.push(["",f]),[4,Promise.all(i.map((function(r){var e=u(r,2),o=e[0];return e[1].send(function(n,r){return e=r?t(t({},n[0]),{dsn:r}):n[0],void 0===(o=n[1])&&(o=[]),[e,o];var e,o}(n,o))})))];case 1:return[2,o.sent()[0]]}}))}))},flush:function(n){return e(this,void 0,void 0,(function(){var r,t,e,c,s,v,l,y,d,p;return o(this,(function(o){switch(o.label){case 0:return[4,f.flush(n)];case 1:r=[o.sent()],o.label=2;case 2:o.trys.push([2,7,8,9]),t=i(a),e=t.next(),o.label=3;case 3:return e.done?[3,6]:(c=u(e.value,2),s=c[1],l=(v=r).push,[4,s.flush(n)]);case 4:l.apply(v,[o.sent()]),o.label=5;case 5:return e=t.next(),[3,3];case 6:return[3,9];case 7:return y=o.sent(),d={error:y},[3,9];case 8:try{e&&!e.done&&(p=t.return)&&p.call(t)}finally{if(d)throw d.error}return[7];case 9:return[2,r.every((function(n){return n}))]}}))}))}}}},n.Sentry=n.Sentry||{},n.Sentry.Integrations=n.Sentry.Integrations||{},r)Object.prototype.hasOwnProperty.call(r,d)&&(n.Sentry.Integrations[d]=r[d],n.Sentry[d]=r[d])}(window); | |
| 2483 | + </script> | |
| 2484 | + <!-- Sentry's moduleMetadataIntegration --> | |
| 2485 | + <script src="https://browser.sentry-cdn.com/7.120.3/modulemetadata.es5.min.js" crossorigin="anonymous" async></script> | |
| 2486 | + | |
| 2487 | + | |
| 2488 | +<script> | |
| 2489 | + window.resolveExternalsRegistryPromise = null | |
| 2490 | + const externalRegistryPromise = new Promise((r) => window.resolveExternalsRegistryPromise = r) | |
| 2491 | + window.resolveExternalsRegistryModule = (name) => externalRegistryPromise.then(() => window.externalsRegistry[name].onload()) | |
| 2492 | +</script> | |
| 2493 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js">(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["7101"],{78635(){window.__imageClientApi__=window.__imageClientApi__||{sdk:{}};let{lodash:e,react:o,reactDOM:n,imageClientApi:d,clientSdk:a}=window.externalsRegistry={lodash:{},react:{},reactDOM:{},imageClientApi:{},clientSdk:{}};d.loaded=new Promise(e=>{d.onload=e}),e.loaded=new Promise(o=>{e.onload=o}),a.loaded=new Promise(e=>{a.onload=e}),window.ReactDOM||(window.reactDOMReference=window.ReactDOM={loading:!0}),n.loaded=new Promise(e=>{n.onload=()=>{Object.assign(window.reactDOMReference||{},window.ReactDOM,{loading:!1}),e()}}),window.React||(window.reactReference=window.React={loading:!0}),o.loaded=new Promise(e=>{o.onload=()=>{Object.assign(window.reactReference||{},window.React,{loading:!1}),e()}}),window.reactAndReactDOMLoaded=Promise.all([o.loaded,n.loaded]),window.resolveExternalsRegistryPromise()}},function(e){e(e.s=78635)}]); | |
| 2494 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/externals-registry.inline.c335b0f1.bundle.min.js.map</script> | |
| 2495 | + | |
| 2496 | +<!-- Add the rest of the ViewerModel --> | |
| 2497 | +<script type="application/json" id="wix-viewer-model">{"siteFeaturesConfigs":{"accessibilityBrowserZoom":{"isBuilder":false,"isStudio":true},"appMonitoring":{"appsWithMonitoring":[{"appId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"panoramaConfigByArtifactId":{"abandoned-carts-bm":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"abandoned-carts-bm","fingerprint":"909b259b270821e3e228d7e504707c813c4cc1c542858c1ae0eee6fa"}}}},"externalIdByComponentId":{}},{"appId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"panoramaConfigByArtifactId":{"cms-compliance-dashboard-extensions":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress.enterprise","artifactId":"cms-compliance-dashboard-extensions","fingerprint":"fb913d07fb59da98a926b87b601559c4583d26e52971900b1a808f84"}}}},"externalIdByComponentId":{}},{"appId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"monitoringComponent":{"monitoring":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"panoramaConfigByArtifactId":{"site-search-builder":{"type":"PANORAMA","panoramaOptions":{"project":{"groupId":"com.wixpress","artifactId":"site-search-builder","fingerprint":"54c27bc95c64b4cd10c8c9c684b2f008546faa5186ba7413bf89fb79"}}}},"externalIdByComponentId":{"8244af1e-c249-4dd6-9308-e59e9d03556d":"site-search-builder"}}]},"assetsLoader":{"isStylableComponentInStructure":true,"hasBuilderComponents":false},"businessLoggerService":{},"businessLogger":{"isBuilderComponentModel":false},"clientSdk":{"appDefinitionIds":["27fcc256-f3f8-47df-a66a-8f8176cc7f99"]},"componentsRegistry":{"librariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}]},"consentPolicy":{"isWixSite":false,"isBuilderComponentModel":false},"cookiesManager":{"cookieSitePath":"\/","cookieSiteDomain":"www.leshabitationssf.com"},"customCss":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","appsWithCustomCss":{"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"gridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","filePath":"styles\/widget.css"}},"baseUrl":"https:\/\/www.leshabitationssf.com"},"cyclicTabbing":{"isBuilderComponentModel":false},"dataWixCodeSdk":{"gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","environment":"LIVE","cloudDataUrlWithExternalBase":"https:\/\/www.leshabitationssf.com\/_api\/cloud-data"},"dynamicPages":{"prefixToRouterFetchData":{"location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"id":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5"}},"routerPrefix":"\/location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true},"pageRole":"02f40a08-ae1a-41b9-9ce4-a486105584ec","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"},"copy-of-location":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/dynamic-pages-router\/v1","queryParams":"gridAppId=00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85&viewMode=site","fetchUsingGet":true,"compressPayload":true,"appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","encodeURI":false},"optionsData":{"bodyData":{"pageRoles":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"id":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1"}},"routerPrefix":"\/copy-of-location","config":{"patterns":{"\/{title}":{"seoMetaTags":{"description":"{_id}","robots":"index","keywords":"{title}","og:image":"{imagePrinciple}"},"config":{"collection":"Location","lowercase":true,"pageSize":1,"seoV2":true,"sort":[{"disponibilite":"desc"}]},"pageRole":"c8c6f29b-49c3-4685-b0e5-7f8174f91b94","title":"{title}"}}},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb","x-wix-grid-app-id":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","Authorization":"L2C6TtE1IZ6866L3zSLF_aLF-kGSq9uIyMyY7oa_HBM.eyJpbnN0YW5jZUlkIjoiYTFmNDUyMzQtODUwYS00YTc0LWE1M2QtNTY4MzQ0YTM0ODQ4IiwiYXBwRGVmSWQiOiJlNTkzYjBiZC1iNzgzLTQ1YjgtOTdjMi04NzNkNDJhYWNhZjQiLCJtZXRhU2l0ZUlkIjoiMzliOTg4MmYtOWU3MS00ZjkzLWJiNmQtYTg3MTY2Yzg1Y2RhIiwic2lnbkRhdGUiOiIyMDI2LTA4LTA5VDA2OjM0OjI2Ljc2N1oiLCJkZW1vTW9kZSI6ZmFsc2UsImJpVG9rZW4iOiI5ODRkZGExYi0xYjdiLTA1ZTctMWU1MC1mZWYyMjI2YjE0OTIiLCJzaXRlT3duZXJJZCI6IjVhZTE3MDI5LWIyN2YtNDJmNi04YmMwLTVjYWZiZjYzYTIzNSIsImNhY2hlIjp0cnVlLCJzY2QiOiIyMDI0LTEwLTMxVDIzOjU4OjAwLjk5N1oifQ"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"routerPagesSeoToIdMap":{"blank-5":"x1rjp","category-page":"lbsg6","blank-5-1":"ebqqm"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticRoutedPageId":""},"editorWixCodeSdk":{"isBuilderComponentModel":false},"elementorySupportWixCodeSdk":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview","relativePath":"\/\/_api\/wix-code-public-dispatcher-ng\/siteview","gridAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85","viewMode":"site","siteRevision":4},"environmentWixCodeSdk":{},"environment":{"editorType":"","domain":"leshabitationssf.com","previewMode":false,"isBuilderComponentModel":false},"fedopsWixCodeSdk":{"isWixSite":false,"shouldReportFedops":false},"lightbox":{"prefixToRouterFetchData":{"category":{"urlData":{"basePath":"https:\/\/www.leshabitationssf.com\/_api\/wixstores-tpa-router","queryParams":"viewMode=site","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","fetchUsingGet":true,"compressPayload":true,"encodeURI":true},"optionsData":{"bodyData":{"pageRoles":{"category":{"id":"lbsg6","title":"Category Page","pageUriSEO":"category-page"}},"routerPrefix":"\/category","config":{},"roleVariations":{}},"headers":{"Content-Type":"application\/json","X-XSRF-TOKEN":"1786257261|eMUCwICxgYpb"}},"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762"}},"pageIdToPrefix":{"lbsg6":"category"},"isBuilderComponentModel":false},"locationWixCodeSdk":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"urlMappings":null},"mpaNavigation":{"forceMpaNavigation":false,"isRunningInDifferentSiteContext":false},"multilingual":{"originalLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"isOriginalLanguage":true,"currentLanguage":{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true},"siteLanguages":[{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"hasLanguageSelector":true,"isEnabled":true,"baseUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","isPremiumDomain":true,"flagsUrl":"https:\/\/static.parastorage.com\/services\/linguist-flags\/1.1005.0"},"ooiTpaSharedConfig":{"imageSpriteUrl":"https:\/\/static.parastorage.com\/services\/santa-resources\/resources\/viewer\/editorUI\/fonts.v19.png","wixStaticFontsLinks":["https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/fonts.hz267ac7fkkfb3a18o8z.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/wixMadefor.j95mkaziqjnrn77aekr8.css","https:\/\/static.parastorage.com\/services\/fonts-data\/dist\/google.i6q038anl30o3b4lfbu6.css"]},"ooi":{"ooiComponentsData":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14666402-0bc7-b763-e875-e99840d131bd":{"sentryDsn":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","widgetId":"14666402-0bc7-b763-e875-e99840d131bd","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"13afb094-84f9-739f-44fd-78d036adb028":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"244576c9-d856-49b9-af14-216071924e3b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"sentryDsn":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"sentryDsn":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"sentryDsn":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"04462ba4-2137-41bd-9460-0814554aae07":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"sentryDsn":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"sentryDsn":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"sentryDsn":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"sentryDsn":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"sentryDsn":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d","noCssComponentUrl":"","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"211b5287-14e2-4690-bb71-525908938c81":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","widgetId":"211b5287-14e2-4690-bb71-525908938c81","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":true,"isServerBundled":false,"loadStaticCssWithLink":true,"isModuleFederated":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"sentryDsn":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"sentryDsn":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","componentUrl":"https:\/\/empty","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","noCssComponentUrl":"","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","isLoadable":false,"isServerBundled":false,"loadStaticCssWithLink":false,"isModuleFederated":false}},"viewMode":"Site","formFactor":"Desktop","blogMobileComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/feed-page-mobile-viewer.bundle.min.js","userDomainMedia":{"baseUrl":"","prefixes":[]}},"pagesService":{"pages":{},"currentPageId":"","mainPageId":"xbscd"},"protectedPages":{"passwordProtected":{},"publicPageIds":["nd5z8","xbscd","ir3c1","tbw7n","x1rjp","fcpv5","digmz","c1dmp","ebqqm","og9af","ee5l4","p8nxp","ycxvu","mwate","zoy0o","tjnio","lbsg6","o2kzs","wdvyd","quqwi","jlcw6","ua72s","yg0c4","xsdnd","msjef"],"pageUriSeoToRouterPrefix":{"blank-5":"location","category-page":"category","blank-5-1":"copy-of-location"}},"renderer":{"disabledComponents":{},"isBuilderComponentModel":false},"reporter":{"userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremium":true,"isFBServerEventsAppProvisioned":true,"dynamicPagesIds":["x1rjp","lbsg6","ebqqm"]},"routerFetch":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","viewMode":"desktop"},"router":{"baseUrl":"https:\/\/www.leshabitationssf.com","mainPageId":"xbscd","pagesMap":{"nd5z8":{"pageId":"nd5z8","title":"Gestion AIR BNB","pageUriSEO":"gestion-courte-duree","pageJsonFileName":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658"},"xbscd":{"pageId":"xbscd","title":"Accueil","pageUriSEO":"accueil","pageJsonFileName":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658"},"ir3c1":{"pageId":"ir3c1","title":"CHOIX DE SERVICE","pageUriSEO":"popup-xxnez-evf5t-1-1-1-1","pageJsonFileName":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658"},"tbw7n":{"pageId":"tbw7n","title":"Gestion de copropriété","pageUriSEO":"gestion-de-copropriete","pageJsonFileName":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658"},"x1rjp":{"pageId":"x1rjp","title":"Location (Item)","pageUriSEO":"blank-5","pageJsonFileName":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658"},"dkrww":{"pageId":"dkrww","title":"Test","pageUriSEO":"blank"},"fcpv5":{"pageId":"fcpv5","title":"Bienvenue","pageUriSEO":"blank-1","pageJsonFileName":"5ae170_bfa3a744011b18064588457b988e1a12_658"},"digmz":{"pageId":"digmz","title":"Blog","pageUriSEO":"blog","pageJsonFileName":"5ae170_8753b09b9c3e820a689be83f44036cce_658"},"c1dmp":{"pageId":"c1dmp","title":"Accueil-Old","pageUriSEO":"home","pageJsonFileName":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658"},"ebqqm":{"pageId":"ebqqm","title":"Copy of Location (Item)","pageUriSEO":"blank-5-1","pageJsonFileName":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658"},"og9af":{"pageId":"og9af","title":"Side Cart","pageUriSEO":"popup-og9af","pageJsonFileName":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658"},"ee5l4":{"pageId":"ee5l4","title":"Post","pageUriSEO":"post","pageJsonFileName":"5ae170_797441264f67257d2b398b280f9566f8_658"},"p8nxp":{"pageId":"p8nxp","title":"Member Page","pageUriSEO":"members-area","pageJsonFileName":"5ae170_0e06c7b14722b1df76d73a702836cd87_658"},"ycxvu":{"pageId":"ycxvu","title":"Gestion d'immeubles à revenus","pageUriSEO":"forfaits","pageJsonFileName":"5ae170_6ef9978913518d22e3ff9884b42e9766_658"},"mwate":{"pageId":"mwate","title":"Thank You Page","pageUriSEO":"thank-you-page","pageJsonFileName":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658"},"zoy0o":{"pageId":"zoy0o","title":"Product Page","pageUriSEO":"product-page","pageJsonFileName":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658"},"tjnio":{"pageId":"tjnio","title":"Checkout","pageUriSEO":"checkout","pageJsonFileName":"5ae170_b758cd293bd2e09407018e3925e51e65_658"},"lbsg6":{"pageId":"lbsg6","title":"Category Page","pageUriSEO":"category-page","pageJsonFileName":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658"},"o2kzs":{"pageId":"o2kzs","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658"},"wdvyd":{"pageId":"wdvyd","title":"Mise en marché d'un logement","pageUriSEO":"particulier","pageJsonFileName":"5ae170_b86b7b332566ae1077a701be4c21b168_658"},"quqwi":{"pageId":"quqwi","title":"Cart Page","pageUriSEO":"cart-page","pageJsonFileName":"5ae170_adf9bd4deafc8141e4494d55c958864f_658"},"jlcw6":{"pageId":"jlcw6","title":"Obtenir un devis","pageUriSEO":"devis","pageJsonFileName":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658"},"ua72s":{"pageId":"ua72s","title":"Gestion Résidentielle & Commerciale","pageUriSEO":"gestion-residentielle-commerciale","pageJsonFileName":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658"},"yg0c4":{"pageId":"yg0c4","title":"Search Results","pageUriSEO":"search","pageJsonFileName":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658"},"xsdnd":{"pageId":"xsdnd","title":"Mise en Marché - Formulaire","pageUriSEO":"formulaire-mise-en-marché","pageJsonFileName":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658"},"msjef":{"pageId":"msjef","title":"À Propos","pageUriSEO":"entreprise","pageJsonFileName":"5ae170_a275d88f982fef975679f7c85059c3df_658"}},"disableStaticPagesUrlHierarchy":false,"routes":{".\/gestion-courte-duree":{"type":"Static","pageId":"nd5z8"},".\/accueil":{"type":"Static","pageId":"xbscd"},".\/popup-xxnez-evf5t-1-1-1-1":{"type":"Static","pageId":"ir3c1"},".\/gestion-de-copropriete":{"type":"Static","pageId":"tbw7n"},".\/blank":{"type":"Static","pageId":"dkrww"},".\/blank-1":{"type":"Static","pageId":"fcpv5"},".\/blog":{"type":"Static","pageId":"digmz"},".\/home":{"type":"Static","pageId":"c1dmp"},".\/popup-og9af":{"type":"Static","pageId":"og9af"},".\/post":{"type":"Static","pageId":"ee5l4"},".\/members-area":{"type":"Static","pageId":"p8nxp"},".\/forfaits":{"type":"Static","pageId":"ycxvu"},".\/thank-you-page":{"type":"Static","pageId":"mwate"},".\/product-page":{"type":"Static","pageId":"zoy0o"},".\/checkout":{"type":"Static","pageId":"tjnio"},".\/fullscreen-page":{"type":"Static","pageId":"o2kzs"},".\/particulier":{"type":"Static","pageId":"wdvyd"},".\/cart-page":{"type":"Static","pageId":"quqwi"},".\/devis":{"type":"Static","pageId":"jlcw6"},".\/gestion-residentielle-commerciale":{"type":"Static","pageId":"ua72s"},".\/search":{"type":"Static","pageId":"yg0c4"},".\/formulaire-mise-en-marché":{"type":"Static","pageId":"xsdnd"},".\/entreprise":{"type":"Static","pageId":"msjef"},".\/location":{"type":"Dynamic","pageIds":["x1rjp"]},".\/category":{"type":"Dynamic","pageIds":["lbsg6"]},".\/copy-of-location":{"type":"Dynamic","pageIds":["ebqqm"]},".\/":{"type":"Static","pageId":"xbscd"}},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"isWixSite":false,"isBuilderComponentModel":false,"partialRouteMatchingAllowed":false},"searchWixCodeSdk":{"language":"fr"},"seo":{"context":{"siteName":"SF Habitations","siteUrl":"https:\/\/www.leshabitationssf.com","domain":"leshabitationssf.com","indexSite":true,"defaultUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","currLangIsOriginal":true,"siteOgImage":"https:\/\/static.wixstatic.com\/media\/5ae170_6fb7dcec7ab646f983b75f6ccc999a44%7Emv2.jpg","homePageTitle":"Accueil","businessName":"Les Habitations SF","businesDescription":"Gestion locative, entretien, réparations, relation locataires : un service complet pour alléger votre charge et garantir un suivi de qualité.","businesLocale":"fr-ca","businesLogo":"https:\/\/static.wixstatic.com\/media\/836e14_d7dc6e8ff93643cbad486bb4e6ff054a.svg","businessLocationCountry":"CA","businessLocationFormatted":"Joliette, QC, Canada","businesLocationsState":"QC","businessLocationCity":"Joliette","businessLocationCoordinates":{"latitude":46.0232315,"longitude":-73.442545},"businessSchedule":{},"currency":"CAD","experiments":{"specs.seo.EnableFaqSD":"false","specs.seo.enableLangCheck":"true","specs.seo.useChunkedSiteStructureForMembersArea":"true"},"platformAppsExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"meetings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"true","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}},"siteLanguages":[{"languageCode":"x-default","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"en","locale":"en-us","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/en\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"English","seoLang":"en-us","localizedName":"English","isPrimaryLanguage":false,"status":"Active"},{"languageCode":"fr","locale":"fr-ca","countryCode":"CAN","resolutionMethod":"Subdirectory","url":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","name":"French","seoLang":"fr-ca","localizedName":"Français","isPrimaryLanguage":true,"status":"Active"}],"currLangCode":"fr","seoLang":"fr-ca","currLangResolutionMethod":"Subdirectory"},"userPatterns":[{"patternType":"BLOG_POST","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"ai-generation-disabled\"}}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-ebqqm","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"index\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"},{"patternType":"WIX_DATA_PAGE_ITEM-x1rjp","content":"{\"tags\":[{\"type\":\"meta\",\"props\":{\"name\":\"description\",\"content\":\"{{wix-data-page-item.Location._id}}\"}},{\"type\":\"meta\",\"props\":{\"name\":\"robots\",\"content\":\"noarchive, nofollow, noindex, nosnippet\"}},{\"type\":\"meta\",\"props\":{\"content\":\"{{wix-data-page-item.Location.imagePrinciple}}\",\"property\":\"og:image\"}},{\"type\":\"title\",\"children\":\"{{wix-data-page-item.Location.title}}\"}]}"}],"metaTags":[{"name":"fb_admins_meta_tag","value":"","property":false},{"name":"google-site-verification","value":"10CuKbVwy7H0QdS5FdxO2lRT63Cq4ZhVR_lr0WZPAtM","property":false}],"customHeadTags":"","isInSEO":false,"hasBlogAmp":false,"mainPageId":"xbscd","listPageIds":[]},"serviceRegistrar":{},"sessionManager":{"isRunningInDifferentSiteContext":false,"expiryTimeoutOverride":0,"appsInstances":{},"sessionModel":{}},"siteMembersWixCodeSdk":{"isPreviewMode":false,"isEditMode":false,"smToken":"","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e"},"siteMembers":{"collectionExposure":"Public","smcollectionId":"7ad5e65d-bee1-46eb-a1ef-561edbff520e","smToken":"","protectedHomepage":false,"isTemplate":false,"loginSocialBarOnSite":true,"routerPrefix":"","isCommunityInstalled":false,"baseUrl":"https:\/\/www.leshabitationssf.com","memberInfoAppId":17345},"siteScrollBlocker":{"isBuilderComponentModel":false},"siteWixCodeSdk":{"fontFaceServerUrl":"https:\/\/serverless.parastorage.com\/_serverless\/site-sdk-server\/v1\/style","siteDisplayName":"SF Habitations","siteRevision":4,"regionalSettings":"fr-ca","language":"fr","currency":"CAD","mainPageId":"xbscd","pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"routerPrefixes":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":{"name":"location","prefix":"\/location","type":"dynamicPages"},"category":{"name":"category","prefix":"\/category","type":"dynamicPages"},"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":{"name":"copy-of-location","prefix":"\/copy-of-location","type":"dynamicPages"}},"timezone":"America\/Toronto","pageIdToTitle":{"nd5z8":"Gestion AIR BNB","xbscd":"Accueil","ir3c1":"CHOIX DE SERVICE","tbw7n":"Gestion de copropriété","x1rjp":"Location (Item)","dkrww":"Test","fcpv5":"Bienvenue","digmz":"Blog","c1dmp":"Accueil-Old","ebqqm":"Copy of Location (Item)","og9af":"Side Cart","ee5l4":"Post","p8nxp":"Member Page","ycxvu":"Gestion d'immeubles à revenus","mwate":"Thank You Page","zoy0o":"Product Page","tjnio":"Checkout","lbsg6":"Category Page","o2kzs":"Fullscreen Page","wdvyd":"Mise en marché d'un logement","quqwi":"Cart Page","jlcw6":"Obtenir un devis","ua72s":"Gestion Résidentielle & Commerciale","yg0c4":"Search Results","xsdnd":"Mise en Marché - Formulaire","msjef":"À Propos"},"urlMappings":null,"viewMode":"Site"},"speculationRules":{"currentPagePath":"\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer"},"ssrCache":{},"tpaCommons":{"widgetsClientSpecMapData":{"141995eb-c700-8487-6366-a482f7432e2b":{"widgetUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","mobileUrl":"https:\/\/so-feed.codev.wixapps.net\/widget","tpaWidgetId":"shoutout_feed","appPage":{},"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appDefinitionId":"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e","isWixTPA":true,"allowScrolling":false},"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-product-page\/1.4388.0\/ProductPage","appPage":{"id":"product_page","name":"product_page","defaultPage":"","hidden":true,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SideCart","tpaWidgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","appPage":{"id":"Side Cart","name":"Side Cart","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/add-to-cart","tpaWidgetId":"add_to_cart_button","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/Wishlist","appPage":{"id":"wishlist","name":"My Wishlist","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":7,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","tpaWidgetId":"grid_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopup","tpaWidgetId":"","appPage":{"id":"Success Popup","name":"Success Popup","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-cart-ooi\/1.6303.0\/cart","appPage":{"id":"shopping_cart","name":"Cart Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/SliderGallery","tpaWidgetId":"slider_gallery","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPage","appPage":{"id":"thank_you_page","name":"Thank You Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/order-history","appPage":{"id":"order_history","name":"My Orders","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/GridGallery","appPage":{"id":"product_gallery","name":"Shop","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/cartwidget","tpaWidgetId":"shopping_cart_icon","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"244576c9-d856-49b9-af14-216071924e3b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchModalGallery","tpaWidgetId":"244576c9-d856-49b9-af14-216071924e3b","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.4501.0\/SearchResultsPageGallery","tpaWidgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetUrl":"\/","tpaWidgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","appPage":{"id":"Payment Request Page","name":"Payment Request Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/wixstores-client-gallery\/1.6016.0\/CategoryPage","tpaWidgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","appPage":{"id":"Category Page","name":"Category Page","defaultPage":"","hidden":false,"multiInstanceEnabled":true,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","mobileUrl":"https:\/\/ecom.wixapps.net\/storefront\/checkout","appPage":{"id":"checkout","name":"Checkout","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":false,"fullPage":false,"landingPageInMobile":true,"hideFromMenu":true},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":true},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","mobileUrl":"https:\/\/ecom.wix.com\/storefront\/product-widget-view","tpaWidgetId":"product_widget","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/ecom-platform-checkout\/1.0.0\/BundleBundle","tpaWidgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"widgetUrl":"\/","appPage":{},"applicationId":41,"appDefinitionName":"Checkout & Orders","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","isWixTPA":true,"allowScrolling":false},"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"widgetUrl":"\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","isWixTPA":false,"allowScrolling":false},"499ca64c-5f50-4223-bb91-6d101eaaddae":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"widgetUrl":"\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":45,"appDefinitionName":"Instagram Feed Social","appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","isWixTPA":false,"allowScrolling":false},"3f1cd43a-87ec-4b1f-b07f-8a443a683fbd":{"widgetUrl":"\/","appPage":{},"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appDefinitionId":"cf06bdf3-5bab-4f20-b165-97fb723dac6a","isWixTPA":true,"allowScrolling":false},"8039fd6a-054b-4289-8bd3-36035c51ecad":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"55adbbae-6799-44b3-98e4-ad5b2667a85b":{"widgetUrl":"\/","appPage":{},"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appDefinitionId":"dad178e5-571d-45bf-89a0-c1f97242199f","isWixTPA":false,"allowScrolling":false},"2421f8bc-e686-4c32-8ab6-bc8e0d8b7455":{"widgetUrl":"\/","appPage":{},"applicationId":61,"appDefinitionName":"Wix CMS","appDefinitionId":"e593b0bd-b783-45b8-97c2-873d42aacaf4","isWixTPA":true,"allowScrolling":false},"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/form-app\/1.2898.0\/Form","tpaWidgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","appPage":{},"applicationId":1934,"appDefinitionName":"Wix Forms","appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","isWixTPA":true,"allowScrolling":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetUrl":"https:\/\/progallery.wixapps.net\/gallery.html","mobileUrl":"https:\/\/progallery.wixapps.net\/gallery.html","tpaWidgetId":"pro-gallery","appPage":{},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":false},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetUrl":"https:\/\/progallery.wixapps.net\/fullscreen","mobileUrl":"https:\/\/progallery.wixapps.net\/fullscreen","appPage":{"id":"fullscreen_page","name":"Fullscreen Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":true,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","isWixTPA":true,"allowScrolling":true},"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-comments-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-comments-page","appPage":{"id":"member-comments-page","name":"Blog Comments ","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","mobileUrl":"https:\/\/social-blog.wix.com\/recent-posts-widget","tpaWidgetId":"recent-posts-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Blog","appPage":{"id":"blog","name":"Blog","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5fdc6c03-080d-4872-b567-24146c82fae5":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RelatedPosts","tpaWidgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/CategoryMenu","tpaWidgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5940091f-797c-4e86-9c57-73fcfd87425f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5520a99-1725-4b88-a85f-c439916890c8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"68a2d745-328b-475d-9e36-661f678daa31":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/TagCloud","tpaWidgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-likes-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-likes-page","appPage":{"id":"member-likes-page","name":"Blog Likes","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":4,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","mobileUrl":"https:\/\/social-blog.wix.com\/custom-feed-widget","tpaWidgetId":"custom-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"26858b64-aad8-42ab-8c63-f19009198c7b":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"d134b0c9-8085-415a-9479-b555374ba958":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/RssButton","tpaWidgetId":"rss-feed-widget","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Archive","tpaWidgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"211b5287-14e2-4690-bb71-525908938c81":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/Post","appPage":{"id":"post","name":"Post","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":6,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostTitle","tpaWidgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/PostList","tpaWidgetId":"813eb645-c6bd-4870-906d-694f30869fd9","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"bc7fa914-015b-4c32-a323-e5472563a798":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"7466726a-84cf-41c8-be6b-1694445dc539":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-drafts-page","appPage":{"id":"member-drafts-page","name":"My Drafts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/communities-blog-ooi\/1.3271.0\/MyPosts","tpaWidgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","appPage":{"id":"My Posts","name":"My Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetUrl":"https:\/\/social-blog.wix.com\/member-posts-page","mobileUrl":"https:\/\/social-blog.wix.com\/member-posts-page","appPage":{"id":"member-posts-page","name":"Blog Posts","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":5,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"applicationId":4774,"appDefinitionName":"Wix Blog","appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","isWixTPA":true,"allowScrolling":false},"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"widgetUrl":"\/","appPage":{},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/search-app\/1.3989.0\/SearchResults","appPage":{"id":"search_results","name":"Search Results","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":5582,"appDefinitionName":"Wix Site Search","appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","isWixTPA":true,"allowScrolling":false},"97466558-6e7b-43e6-9734-82123ef4c3f3":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":6471,"appDefinitionName":"Category Header","appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","isWixTPA":true,"allowScrolling":false},"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/faq-ooi\/1.648.0\/FaqOoi","tpaWidgetId":"faq_widget","appPage":{},"applicationId":8517,"appDefinitionName":"Wix FAQ","appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","isWixTPA":true,"allowScrolling":false},"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"widgetUrl":"\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":10725,"appDefinitionName":"TikTok Feed","appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","isWixTPA":false,"allowScrolling":false},"137d8ff3-4c89-dc2e-68f2-82c77743cee5":{"widgetUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","mobileUrl":"https:\/\/www.powr.io\/plugins\/twitter-feed\/wix_cached_view","tpaWidgetId":"powr_twitter_feed","appPage":{},"applicationId":12583,"appDefinitionName":"Social Media Feed","appDefinitionId":"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f","isWixTPA":false,"allowScrolling":false},"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidget","tpaWidgetId":"54fb025c-61dc-4286-87c7-0ac416c58744","appPage":{},"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","isWixTPA":true,"allowScrolling":false},"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payment-methods-banner-ooi\/1.2031.0\/PaymentMethodsBannerWidget","tpaWidgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","appPage":{},"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","isWixTPA":true,"allowScrolling":false},"33159c18-8226-4068-91e8-216f5f2c75f8":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6e0d0836-6240-4688-b4c2-00095de015d9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"60039b18-5d94-45b7-bd03-b7008213f906":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"widgetUrl":"\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"9fa041da-f429-4a24-8579-46c57a985b33":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"17315fb1-7be4-4492-a196-c1abb2817309":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"f67f8f07-eac7-470e-99f5-213f121b5655":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"db646d31-6817-4184-87df-c5496c9da6b9":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":15442,"appDefinitionName":"Product Page Blocks","appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","isWixTPA":true,"allowScrolling":false},"5956d247-32d0-43af-9a49-7d1090c1e666":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetUrl":"\/","tpaWidgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b","appPage":{"id":"member_settings_page","name":"member_settings_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetUrl":"\/","tpaWidgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","appPage":{"id":"member_page","name":"member_page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"596a6688-3ad7-46f7-bb9c-00023225876d":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":17071,"appDefinitionName":"Members Area","appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","isWixTPA":true,"allowScrolling":false},"151290e1-62a2-0775-6fbc-02182fad5dec":{"widgetUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","mobileUrl":"https:\/\/addresses.wixapps.net\/addresses\/address-book","appPage":{"id":"my_addresses","name":"My Addresses","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17128,"appDefinitionName":"My Addresses","appDefinitionId":"1505b775-e885-eb1b-b665-1e485d9bf90e","isWixTPA":true,"allowScrolling":false},"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/my-account-ooi\/1.2846.0\/MyAccount","appPage":{"id":"member_info","name":"My Account","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17345,"appDefinitionName":"Member Account Info","appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/payments-my-wallet\/1.1283.0\/MyWallet","appPage":{"id":"my_wallet","name":"My Wallet","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":17947,"appDefinitionName":"My Wallet","appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","isWixTPA":true,"allowScrolling":false},"04462ba4-2137-41bd-9460-0814554aae07":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.63.0\/PreferencesOoi","tpaWidgetId":"04462ba4-2137-41bd-9460-0814554aae07","appPage":{"id":"Settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications-preferences\/1.68.0\/PreferencesOoi","appPage":{"id":"settings","name":"Settings","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/OoiNotifications","appPage":{"id":"notifications_app","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-area-notifications\/1.7.0\/Notifications","tpaWidgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7","appPage":{"id":"Notifications","name":"Notifications","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","isWixTPA":true,"allowScrolling":false},"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/members-about-ooi\/1.2699.0\/Profile","appPage":{"id":"about","name":"Profile","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":1,"indexable":false,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":18469,"appDefinitionName":"Members About","appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","isWixTPA":true,"allowScrolling":false},"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/profile-card-tpa-ooi\/1.2954.0\/ProfileCard","tpaWidgetId":"profile","appPage":{},"applicationId":18823,"appDefinitionName":"Profile Card","appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","isWixTPA":true,"allowScrolling":false},"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"169204d8-21be-4b45-b263-a997d31723dc":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-details-widget\/1.3526.0\/BookingServicePage","appPage":{"id":"Booking Service Page","name":"Service Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetable","tpaWidgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.673.0\/MyBookings","appPage":{"id":"bookings_member_area","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/DailyAgenda","tpaWidgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/BookOnline","appPage":{"id":"bookings_list","name":"Book Online","defaultPage":"","hidden":false,"multiInstanceEnabled":false,"order":4,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-service-list-widget\/1.2265.0\/ServiceListWidget","tpaWidgetId":"service_list_widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidget","tpaWidgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetUrl":"https:\/\/editor.wix.com\/","tpaWidgetId":"bookings_timetable_daily","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-form-widget\/1.2485.0\/BookingsForm","tpaWidgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","appPage":{"id":"Booking Form","name":"Booking Form","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-daily-agenda-widget\/1.664.0\/DailyAgenda","tpaWidgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"widgetUrl":"https:\/\/editor.wix.com\/","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-my-bookings-widget\/1.580.0\/MyBookings","tpaWidgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","appPage":{"id":"My Bookings","name":"My Bookings","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","mobileUrl":"https:\/\/bookings.wixapps.net\/_api\/bookings-viewer\/widget\/index","tpaWidgetId":"widget","appPage":{},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","mobileUrl":"https:\/\/editor.wixapps.net\/render\/prod\/editor\/bookings-calendar-widget\/1.3599.0\/BookingCalendar","tpaWidgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","appPage":{"id":"Booking Calendar","name":"Booking Calendar","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":false},"applicationId":19310,"appDefinitionName":"Wix Bookings","appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","isWixTPA":true,"allowScrolling":false},"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetUrl":"https:\/\/engage.wixapps.net\/chat-widget-server\/renderChatWidget\/index","tpaWidgetId":"wix_visitors","appPage":{},"applicationId":20574,"appDefinitionName":"Wix Chat","appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","isWixTPA":true,"allowScrolling":false}},"appsClientSpecMapData":{"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":{"applicationId":23,"appDefinitionName":"ShoutOut (Legacy)","appFields":{"premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.3913.0","hipaaCompliant":true},"isWixTPA":true},"1380b703-ce81-ff05-f115-39571d94dfcd":{"applicationId":41,"appDefinitionName":"Checkout & Orders","appFields":{"platform":{"routerHttpMethod":"GET","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/editor.bundle.min.js","routerServiceUrl":"\/_api\/wixstores-tpa-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","errorReporting":{},"platformOnly":true,"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:serverless.wixstores-tpa-site-structure-service"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6749.0","hipaaCompliant":true},"isWixTPA":true},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"applicationId":44,"appDefinitionName":"TikTok Videos & Profile Embed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^2.20.0","installedVersion":"^2.0.0"},"isWixTPA":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"applicationId":45,"appDefinitionName":"Instagram Feed Social","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.6.0","installedVersion":"^5.0.0"},"isWixTPA":false},"cf06bdf3-5bab-4f20-b165-97fb723dac6a":{"applicationId":55,"appDefinitionName":"Facebook Server Side Events","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.13.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"dad178e5-571d-45bf-89a0-c1f97242199f":{"applicationId":58,"appDefinitionName":"Twipla Session Recordings","appFields":{"permissionsEnforced":true,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^1.6.0","installedVersion":"^1.0.0"},"isWixTPA":false},"e593b0bd-b783-45b8-97c2-873d42aacaf4":{"applicationId":61,"appDefinitionName":"Wix CMS","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-data-client-app\/1.29.0\/webworker\/wixDataEditor.umd.min.js","editorScriptUrlTemplate":"<%= serviceUrl('wix-data-client-app', 'webworker\/wixDataEditor.umd.min.js') %>"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^2.103.0","hipaaCompliant":true},"isWixTPA":true},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"applicationId":1934,"appDefinitionName":"Wix Forms","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"},"viewer":{"errorReporting":{"url":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615"}},"ooiInEditor":true},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.1326.0","hipaaCompliant":true},"isWixTPA":true},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"applicationId":3946,"appDefinitionName":"Wix Pro Gallery","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"cloneAppDataUrl":"https:\/\/progallery.wixapps.net\/_api\/gallery\/clone","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"},"width":{"desktop":{},"tablet":{},"mobile":{}},"shouldCloneDataPerComponent":true,"viewer":{"errorReporting":{"url":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427"}},"studio":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.979.0","hipaaCompliant":true},"isWixTPA":true},"14bcded7-0066-7c35-14d7-466cb3f09103":{"applicationId":4774,"appDefinitionName":"Wix Blog","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/editorScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"migratedToNewPlatformApi":true,"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.2252.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{"url":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643"}},"studio":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.npm.communities-blog-node-api"}},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.5447.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"1484cb44-49cd-5b39-9681-75188ab429de":{"applicationId":5582,"appDefinitionName":"Wix Site Search","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/editorScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"baseUrlsTemplate":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorTranslationUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3605.0\/assets\/locales\/messages_%7B%7Blng%7D%7D.json","docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.454.0","hipaaCompliant":true},"isWixTPA":true},"7479d596-137c-4fa3-89cd-d7091042ba61":{"applicationId":6471,"appDefinitionName":"Category Header","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"migratedToNewPlatformApi":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('blog-category-header-widget', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","errorReporting":{},"viewer":{"errorReporting":{}},"studio":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^5.194.0","hipaaCompliant":true},"isWixTPA":true},"14c92d28-031e-7910-c9a8-a670011e062d":{"applicationId":8517,"appDefinitionName":"Wix FAQ","appFields":{"platform":{"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js"},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^5.341.0","hipaaCompliant":true,"installedVersion":"^5.0.0"},"isWixTPA":true},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"applicationId":10725,"appDefinitionName":"TikTok Feed","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"permissionsEnforced":true,"editorScriptUrl":"{urlTemplate:{universalEditorApp:*}}","viewerScriptUrl":"{urlTemplate:{appStudioBundler:*}}","studio":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4"}},"permissionsEnforced":true,"blocksPermissionsEnforced":true,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^3.12.0","installedVersion":"^3.0.0"},"isWixTPA":false},"137d8fdd-cbed-2d8f-7a72-5d13eb1a6b1f":{"applicationId":12583,"appDefinitionName":"Social Media Feed","appFields":{"featuresForNewPackagePicker":[],"packagePickerV2":[{"model":{"features":[{"description":"Remove the POWr logo from the bottom of your Twitter Feed.","name":"No POWr Logo","id":"3656b178-e0c5-4b22-8c35-462d7f0f6311"},{"description":"The amount of time before your Twitter Feed is updated with new posts.","name":"Content Refresh Rate","id":"5d8f487a-5aa6-4574-93af-361c7cb5890a"},{"description":"The maximum number of tweets you can display in your feed.","name":"Number of Tweets","id":"d528cf92-5b75-47fb-ae3d-9753eaf5beff"},{"description":"The number of handles and\/or hashtags you can follow in one feed.","name":"Number of @Handles & #Hashtags","id":"86bb2ab2-35c0-4c59-9696-3be86a69ea77"},{"description":"Let visitors retweet or favorite posts from your Twitter Feed.","name":"Retweet\/Favorite Posts","id":"b11b6830-91bd-48c4-b4f1-93823f444870"},{"description":"Add custom CSS or JavaScript in advanced settings for further customization.","name":"Custom CSS & JavaScript","id":"d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57"}],"isExternalPricing":false,"languageCode":"en","isInAppPurchase":false,"freeTrialDays":0,"plans":[{"name":"Starter","vendorId":"premium","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"12 Hours","3656b178-e0c5-4b22-8c35-462d7f0f6311":"","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"5","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"2"},"id":"3e64f4a2-4a40-4e68-97a2-e8a6d14c94e8","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":3.9900000095367,"yearlyPrice":3.3099999427795}},{"name":"Pro","vendorId":"Pro","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"3 Hours","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"5","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"15","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"612c4229-6909-4b67-a7b3-d55295452319","mostPopular":true,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":30,"monthlyPrice":7.9899997711182,"yearlyPrice":5.5900001525879}},{"name":"Business","vendorId":"business","featureList":{"5d8f487a-5aa6-4574-93af-361c7cb5890a":"20 Minutes","d9d4ef44-4c07-4dbd-99a8-8e6fd64eda57":"","b11b6830-91bd-48c4-b4f1-93823f444870":"","86bb2ab2-35c0-4c59-9696-3be86a69ea77":"10","d528cf92-5b75-47fb-ae3d-9753eaf5beff":"50","3656b178-e0c5-4b22-8c35-462d7f0f6311":""},"id":"121a889c-1d4e-445b-be2b-90febcc8dbd7","mostPopular":false,"billing":{"oneTimePrice":0,"yearlyDiscountPercent":17,"monthlyPrice":11.989999771118,"yearlyPrice":9.9499998092651}}],"businessModel":"FREEMIUM"},"appId":"a365d579-778c-4392-ba12-f5ed64901e1a","languageCode":"en"}],"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^3.28.0","installedVersion":"^3.0.0"},"isWixTPA":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"applicationId":15064,"appDefinitionName":"Express Checkout Widget OOI","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('express-checkout-widget-ooi', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"df892fe9-626f-44c9-a328-e29f93880b38":{"applicationId":15169,"appDefinitionName":"payment-methods-banner-ooi","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"excludeFromAutoRevoke":true,"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js"},"excludeFromAutoRevoke":true,"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.6.0","hipaaCompliant":true},"isWixTPA":true},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"applicationId":15442,"appDefinitionName":"Product Page Blocks","appFields":{"platform":{"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"},"width":{"desktop":{},"tablet":{},"mobile":{}},"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"viewer":{"errorReporting":{"url":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813"}},"studio":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^27.174.0","hipaaCompliant":true},"isWixTPA":true},"b976560c-3122-4351-878f-453f337b7245":{"applicationId":17071,"appDefinitionName":"Members Area","appFields":{"platform":{"baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"},"editorScriptUrlTemplate":"<%= serviceUrl('profile-page-bob', 'editorScript.bundle.min.js') %>","viewer":{"errorReporting":{"url":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935"}},"studio":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.members.members-area-site-structure-api"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"newEditorSchemaVersion":"externalUnifiedComponents","isStandalone":true,"semanticVersion":"^12.453.0","hipaaCompliant":true},"isWixTPA":true},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"applicationId":17128,"appDefinitionName":"My Addresses","appFields":{"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.0.0"},"isWixTPA":true},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"applicationId":17345,"appDefinitionName":"Member Account Info","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/editorScript.bundle.min.js","docking":{"desktop":{},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.265.0","hipaaCompliant":true},"isWixTPA":true},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"applicationId":17947,"appDefinitionName":"My Wallet","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/editorScript.bundle.min.js","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"},"viewer":{"errorReporting":{"url":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.80.0","hipaaCompliant":true},"isWixTPA":true},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"applicationId":18034,"appDefinitionName":"Members Notifications Settings","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications-preferences', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"},"viewer":{"errorReporting":{"url":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.23.0","hipaaCompliant":true},"isWixTPA":true},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"applicationId":18197,"appDefinitionName":"Wix Members Area Notifications","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/editorScript.bundle.min.js","viewerScriptUrlTemplate":"<%= serviceUrl('members-area-notifications', 'viewerScript.bundle.min.js') %>","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"},"viewer":{"errorReporting":{"url":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803"}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.45.0","hipaaCompliant":true},"isWixTPA":true},"14dbef06-cc42-5583-32a7-3abd44da4908":{"applicationId":18469,"appDefinitionName":"Members About","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.223.0","hipaaCompliant":true},"isWixTPA":true},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"applicationId":18823,"appDefinitionName":"Profile Card","appFields":{"platform":{"baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/editorScript.bundle.min.js","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.300.0","hipaaCompliant":true},"isWixTPA":true},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"applicationId":19310,"appDefinitionName":"Wix Bookings","appFields":{"platform":{"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","editorScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"margins":{"desktop":{"top":{"type":"PX","value":0},"right":{"type":"PX","value":0},"bottom":{"type":"PX","value":0},"left":{"type":"PX","value":0}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"routerServiceUrl":"\/_serverless\/bookings-viewer-router","docking":{"desktop":{"horizontal":"HCENTER","vertical":"TOP_DOCKING"},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"appConfig":{"siteConfig":{"siteStructureApi":"wixArtifactId:com.wixpress.bookings.services-2"}},"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.10281.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"applicationId":20574,"appDefinitionName":"Wix Chat","appFields":{"platform":{"optionalApplication":true,"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","margins":{"desktop":{"top":{},"right":{},"bottom":{},"left":{}},"tablet":{"top":{},"right":{},"bottom":{},"left":{}},"mobile":{"top":{},"right":{},"bottom":{},"left":{}}},"height":{"desktop":{},"tablet":{},"mobile":{}},"editorScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/editor-script.bundle.min.js","isStretched":{},"docking":{"desktop":{},"tablet":{},"mobile":{}},"errorReporting":{},"width":{"desktop":{},"tablet":{},"mobile":{}},"viewer":{"errorReporting":{}}},"mostPopularPackage":"Sales","premiumBundle":{"parentAppSlug":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9","parentAppId":"ee21fe60-48c5-45e9-95f4-6ca8f9b1c9d9"},"featuresForNewPackagePicker":[{"forPackages":[{"value":"50","packageId":"Professional"},{"value":"150","packageId":"Sales"},{"value":"Unlimited","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Professional"},{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Sales"},{"value":"true","packageId":"Teams"}]},{"forPackages":[{"value":"true","packageId":"Teams"}]}],"permissionsEnforced":false,"blocksPermissionsEnforced":false,"isStandalone":true,"semanticVersion":"^0.190.0","hipaaCompliant":true,"installedVersion":"^0.0.0"},"isWixTPA":true}},"previewMode":false,"siteRevision":4,"viewMode":"site","editorOrSite":"site","userFileDomainUrl":"filesusr.com","metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","isPremiumDomain":true,"routersConfig":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}},"routerByPrefix":{"location":"routers-m338s9i0","category":"routers-m6saa70b","copy-of-location":"routers-m8omcibz"},"pageIdToPrefix":{"x1rjp":"location","lbsg6":"category","ebqqm":"copy-of-location"},"externalBaseUrl":"https:\/\/www.leshabitationssf.com","tpaModalConfig":{"wixTPAs":{"139ef4fa-c108-8f9a-c7be-d5f492a2c939":true,"7efa9936-86f7-44c6-880b-7bae4e044a3d":true,"13ee94c1-b635-8505-3391-97919052c16f":true,"55cd9036-36bb-480b-8ddc-afda3cb2eb8d":true,"35aec784-bbec-4e6e-abcb-d3d724af52cf":true,"8ea9df15-9ff6-4acf-bbb8-8d3a69ae5841":true,"14ce1214-b278-a7e4-1373-00cebd1bef7c":true,"135c3d92-0fea-1f9d-2ba5-2a1dfb04297e":true,"141fbfae-511e-6817-c9f0-48993a7547d1":true,"d70b68e2-8d77-4e0c-9c00-c292d6e0025e":true,"146c0d71-352e-4464-9a03-2e868aabe7b9":true,"307ba931-689c-4b55-bb1d-6a382bad9222":true,"14b89688-9b25-5214-d1cb-a3fb9683618b":true,"ea2821fc-7d97-40a9-9f75-772f29178430":true,"9bead16f-1c73-4cda-b6c4-28cff46988db":true,"1480c568-5cbd-9392-5604-1148f5faffa0":true,"94bc563b-675f-41ad-a2a6-5494f211c47b":true,"14e12b04-943e-fd32-456d-70b1820a2ff2":true,"14bca956-e09f-f4d6-14d7-466cb3f09103":true,"150ae7ee-c74a-eecd-d3d7-2112895b988a":true,"f123e8f1-4350-4c9b-b269-04adfadda977":true,"4b10fcce-732d-4be3-9d46-801d271acda9":true,"9050a8e8-0fd3-4936-af2a-5ae4f84c41b8":true,"1973457f-c021-4da5-941f-58444ff761d4":true,"1380b703-ce81-ff05-f115-39571d94dfcd":true,"e4b5f1bc-c77a-4319-a60d-a46acb17f6fc":true,"14d7032a-0a65-5270-cca7-30f599708fed":true,"6580b7e9-4031-4a62-a0a5-8e2fa92e8e18":true,"7516f85b-0868-4c23-9fcb-cea7784243df":true,"57d13128-4a4c-494b-80b3-a6fb2e28018d":true,"45c44b27-ca7b-4891-8c0d-1747d588b835":true,"fc9314bc-a317-4a2b-a9d4-5ad21cc57856":true,"50d8c12f-715e-41ad-be25-d0f61375dbee":true,"f4d83b06-b408-4f3b-afd4-de8db311d7d8":true,"cf06bdf3-5bab-4f20-b165-97fb723dac6a":true,"e81d3ca5-7ca5-4188-bfac-f4997a34065e":true,"399a2612-a042-4fb7-aeff-ed331c7d1c39":true,"2f70e2b4-ff36-472e-bdb9-ce393b13669e":true,"e593b0bd-b783-45b8-97c2-873d42aacaf4":true,"225dd912-7dea-4738-8688-4b8c6955ffc2":true,"14271d6f-ba62-d045-549b-ab972ae1f70e":true,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":true,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":true,"215238eb-22a5-4c36-9e7b-e7c08025e04e":true,"47e245ca-1a42-4d6a-a69a-c125bc839b40":true,"df892fe9-626f-44c9-a328-e29f93880b38":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":true,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":true,"b976560c-3122-4351-878f-453f337b7245":true,"1505b775-e885-eb1b-b665-1e485d9bf90e":true,"14cffd81-5215-0a7f-22f8-074b0e2401fb":true,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":true,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":true,"14f25924-5664-31b2-9568-f9c5ed98c9b1":true,"14dbef06-cc42-5583-32a7-3abd44da4908":true,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":true,"14517e1a-3ff0-af98-408e-2bd6953c36a2":true,"14d84998-ae09-1abf-c6fc-3f3cace5bf19":true}},"appSectionParams":{},"requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","isMobileView":false,"isMobileDevice":false,"deviceType":"desktop","extras":{"currency":"CAD"},"tpaDebugParams":{"debugApp":null,"petri_ovr":null},"locale":"fr","timeZone":"America\/Toronto","shouldRenderTPAsIframe":true,"debug":false,"regionalLanguage":"fr","isBuilderComponentModel":false,"fragmentInstanceToPageId":{}},"widgetWixCodeSdk":{"isBuilderComponentModel":false},"windowWixCodeSdk":{"locale":"fr-ca","isMobileFriendly":true,"formFactor":"Desktop","pageIdToRouterAppDefinitionId":{"x1rjp":"dataBinding","lbsg6":"1380b703-ce81-ff05-f115-39571d94dfcd","ebqqm":"dataBinding"}},"wixCustomElementComponent":{"shouldLoadAllExternalScripts":true,"widgetsToRenderOnFreeSites":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":true,"8039fd6a-054b-4289-8bd3-36035c51ecad":true,"55adbbae-6799-44b3-98e4-ad5b2667a85b":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-ljbqi":true,"27fcc256-f3f8-47df-a66a-8f8176cc7f99-fz6ni":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rluvr":true,"a5dd7ce8-07c2-4251-8d58-9657c1a43163-rmno8":true,"14bcded7-0066-7c35-14d7-466cb3f09103-sw47o":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ak2wd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-q8dzf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u5w25":true,"14bcded7-0066-7c35-14d7-466cb3f09103-hoxv1":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pit6d":true,"14bcded7-0066-7c35-14d7-466cb3f09103-prihd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-dqjva":true,"14bcded7-0066-7c35-14d7-466cb3f09103-nz8hi":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e9hqn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e3jvn":true,"14bcded7-0066-7c35-14d7-466cb3f09103-gcv5t":true,"14bcded7-0066-7c35-14d7-466cb3f09103-ghrxf":true,"14bcded7-0066-7c35-14d7-466cb3f09103-liy9s":true,"14bcded7-0066-7c35-14d7-466cb3f09103-eii64":true,"14bcded7-0066-7c35-14d7-466cb3f09103-u61rq":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pzdqd":true,"14bcded7-0066-7c35-14d7-466cb3f09103-yrjyo":true,"14bcded7-0066-7c35-14d7-466cb3f09103-wzdp6":true,"14bcded7-0066-7c35-14d7-466cb3f09103-y3apm":true,"14bcded7-0066-7c35-14d7-466cb3f09103-bu1xw":true,"14bcded7-0066-7c35-14d7-466cb3f09103-pz2i2":true,"14bcded7-0066-7c35-14d7-466cb3f09103-e25z0":true,"14bcded7-0066-7c35-14d7-466cb3f09103-b0z74":true,"14bcded7-0066-7c35-14d7-466cb3f09103-h77jn":true,"7479d596-137c-4fa3-89cd-d7091042ba61-ruxce":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-rmno8":true,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3-x5kmw":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-vh9q1":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-wubn4":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x7lat":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bkcdi":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-bqb3v":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-x4vxv":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-y4976":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-b4kha":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-h9lrc":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-hxdg5":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-z50e2":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-yl1zs":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-v8gqn":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-r7gvz":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-ish0i":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-uu804":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mp016":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-fgl5b":true,"a0c68605-c2e7-4c8d-9ea1-767f9770e087-mt2f0":true,"b976560c-3122-4351-878f-453f337b7245-aehnv":true,"b976560c-3122-4351-878f-453f337b7245-uuc0d":true,"b976560c-3122-4351-878f-453f337b7245-zuaoa":true,"b976560c-3122-4351-878f-453f337b7245-ng58u":true,"b976560c-3122-4351-878f-453f337b7245-a1ugz":true,"b976560c-3122-4351-878f-453f337b7245-xhv4l":true,"b976560c-3122-4351-878f-453f337b7245-mty3l":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-flb7a":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cv54f":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-drzkv":true,"13d21c63-b5ec-5912-8397-c3a5ddb27a97-cyng5":true},"wixCodeBundlersUrlData":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","appDefIdToWixCodeBundlerUrlData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/a9a3d486-0959-4998-8101-804533f57449\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_a9a3d486-0959-4998-8101-804533f57449\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9ebcb758-3944-4933-bba8-ff8a92a98050\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9ebcb758-3944-4933-bba8-ff8a92a98050\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/71869e96-79b7-49b9-b6f9-e32bcf00ac52\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_71869e96-79b7-49b9-b6f9-e32bcf00ac52\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/21056c2c-144a-488f-912d-5fb0e1262beb\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_21056c2c-144a-488f-912d-5fb0e1262beb\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/9cd056c2-0ac6-492c-a87e-9077d75d5345\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_9cd056c2-0ac6-492c-a87e-9077d75d5345\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/4741eabd-b87f-4c4a-8280-f696c07fc433\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_4741eabd-b87f-4c4a-8280-f696c07fc433\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/1f3cdaf3-1ef1-491b-8743-1894bb51257c\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_1f3cdaf3-1ef1-491b-8743-1894bb51257c\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"b976560c-3122-4351-878f-453f337b7245":{"url":"https:\/\/bundler.wix-code.com\/39b9882f-9e71-4f93-bb6d-a87166c85cda\/a1f45234-850a-4a74-a53d-568344a34848\/5d5e1403-dffe-4565-948c-03a8e2f4251e\/","parastorageUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_5d5e1403-dffe-4565-948c-03a8e2f4251e\/filePath_\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_","queryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"}}},"customElementWidgets":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99-03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"scriptUrl":"https:\/\/hfkynx-feb58f81261918cf-certifiedcode.wix-host.com\/_wix_126f0f6e-custom-elements\/03721c8b-93e9-4a80-a4e5-88c51e3a2634-u95sDHB4.js","tagName":"tiktok-embed","scriptType":"ES_MODULE"}}},"wixEmbedsApi":{"isAdminPage":false},"platform":{"sdksStaticPaths":{"mainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/mainSdks.4ad69533.chunk.min.js","nonMainSdks":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/nonMainSdks.785ca7c9.chunk.min.js"},"clientWorkerUrl":"https:\/\/static.parastorage.com\/services\/wix-thunderbolt\/dist\/clientWorker.1179f420.bundle.min.js","bootstrapData":{"isMobileView":false,"isMobileAppBuilder":false,"appsSpecData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefinitionId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","type":"public","instanceId":"664e3b24-55d5-4370-992a-906c83427cd5","appDefinitionName":"Old Wix Forms and Payments","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","type":"siteextension","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","isIdentityTokenAppSpec":false,"isModuleFederated":false},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","type":"public","instanceId":"b743bf2f-48be-4b91-bc2d-cae97bd2ebdb","appDefinitionName":"Checkout & Orders","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefinitionId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","type":"public","instanceId":"c182465f-40e5-45a3-8fe7-d4ed22dc4e25","appDefinitionName":"TikTok Videos & Profile Embed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefinitionId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","type":"public","instanceId":"aa397d12-cbcc-4918-9926-e9879ef7bc6e","appDefinitionName":"Instagram Feed Social","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefinitionId":"225dd912-7dea-4738-8688-4b8c6955ffc2","type":"public","instanceId":"511414b8-bd16-4b71-90f1-9ee07097cddb","appDefinitionName":"Wix Forms","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","type":"public","instanceId":"ea2e7592-fb1b-4285-8b45-6b6f7338002d","appDefinitionName":"Wix Pro Gallery","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefinitionId":"14bcded7-0066-7c35-14d7-466cb3f09103","type":"public","instanceId":"8415270e-dd8b-4544-aa96-8bca40689dc9","appDefinitionName":"Wix Blog","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefinitionId":"1484cb44-49cd-5b39-9681-75188ab429de","type":"public","instanceId":"a68016c7-acaf-416c-86c2-82631aea2a69","appDefinitionName":"Wix Site Search","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefinitionId":"7479d596-137c-4fa3-89cd-d7091042ba61","type":"public","instanceId":"ad56a9d7-29a5-415f-a257-ce34d1fe5c74","appDefinitionName":"Category Header","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefinitionId":"14c92d28-031e-7910-c9a8-a670011e062d","type":"public","instanceId":"09069977-8940-4543-97e9-68546fad2a50","appDefinitionName":"Wix FAQ","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefinitionId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","type":"public","instanceId":"f556be82-4770-42a8-ad1e-82c9933fd877","appDefinitionName":"TikTok Feed","isWixTPA":false,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefinitionId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","type":"public","instanceId":"b0d1b4e0-5f76-4ddf-9654-45abb578c2f4","appDefinitionName":"Wix Stores","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefinitionId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","type":"public","instanceId":"d37f86b4-371b-4434-a667-fbfc23f03483","appDefinitionName":"Express Checkout Widget OOI","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefinitionId":"df892fe9-626f-44c9-a328-e29f93880b38","type":"public","instanceId":"2b3d7f83-14f9-44e1-a1d5-c4f0be5dbfbe","appDefinitionName":"payment-methods-banner-ooi","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefinitionId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","type":"public","instanceId":"535d4bff-e6c4-4eaa-a555-298288a6ba25","appDefinitionName":"Product Page Blocks","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefinitionId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","type":"public","instanceId":"84def387-15a6-4e37-b80b-fc3b83890bc8","appDefinitionName":"Wix Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"b976560c-3122-4351-878f-453f337b7245":{"appDefinitionId":"b976560c-3122-4351-878f-453f337b7245","type":"public","instanceId":"eff1dc0f-a6b0-4a73-bb81-c85fe49c84dc","appDefinitionName":"Members Area","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefinitionId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","type":"public","instanceId":"fe4e40e2-d8ce-4715-b242-b30ca7e90de9","appDefinitionName":"Member Account Info","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefinitionId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","type":"public","instanceId":"d9f00b70-8471-4f01-a4cd-27e9747c31c4","appDefinitionName":"My Wallet","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","type":"public","instanceId":"f29e5990-ce72-4f78-81d3-2406ad116dea","appDefinitionName":"Members Notifications Settings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefinitionId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","type":"public","instanceId":"d8f1700d-8126-4081-9f7f-77394d926ed5","appDefinitionName":"Wix Members Area Notifications","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefinitionId":"14dbef06-cc42-5583-32a7-3abd44da4908","type":"public","instanceId":"b99f6262-6691-4942-9425-3bb22ef14b19","appDefinitionName":"Members About","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefinitionId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","type":"public","instanceId":"7314d009-0de2-4512-a7b8-fd99f85f3ddf","appDefinitionName":"Profile Card","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefinitionId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","type":"public","instanceId":"59320de1-6ceb-4eb6-a60b-43de000c7f21","appDefinitionName":"Wix Bookings","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefinitionId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","type":"public","instanceId":"29aace14-1ee3-46e9-ba9c-34223d769672","appDefinitionName":"Wix Chat","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false},"dataBinding":{"appDefinitionId":"dataBinding","type":"application","instanceId":"a1f45234-850a-4a74-a53d-568344a34848","appDefinitionName":"Data Binding","isWixTPA":true,"isIdentityTokenAppSpec":false,"isModuleFederated":false}},"appsUrlData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"appDefId":"14ce1214-b278-a7e4-1373-00cebd1bef7c","appDefName":"Old Wix Forms and Payments","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/forms-viewer\/1.883.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"1380b703-ce81-ff05-f115-39571d94dfcd":{"appDefId":"1380b703-ce81-ff05-f115-39571d94dfcd","appDefName":"Checkout & Orders","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-viewer-script\/1.119.0\/webworker\/ecom-platform-viewer-script.umd.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/","addToCartBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/","cartIconBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-icon\/1.2290.0\/","productWidgetBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/","galleryBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/","wishlistBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-wishlist\/1.2322.0\/","productPageBaseUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/"},"widgets":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page\/1.4388.0\/ProductPageViewerWidgetNoCss.bundle.min.js","widgetId":"13a94f09-2766-3c40-4a32-8edb5acdd8bc","cssPerBreakpoint":true},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SideCartViewerWidgetNoCss.bundle.min.js","widgetId":"49dbb2d9-d9e5-4605-a147-e926605bf164","cssPerBreakpoint":true},"14666402-0bc7-b763-e875-e99840d131bd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCart.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-add-to-cart\/1.1500.0\/addToCartNoCss.bundle.min.js","errorReportingUrl":"https:\/\/8c4075d5481d476e945486754f783364@sentry.io\/1865790","widgetId":"14666402-0bc7-b763-e875-e99840d131bd"},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/WishlistViewerWidgetNoCss.bundle.min.js","widgetId":"a63a5215-8aa6-42af-96b1-583bfd74cff5","cssPerBreakpoint":true},"13afb094-84f9-739f-44fd-78d036adb028":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"13afb094-84f9-739f-44fd-78d036adb028","cssPerBreakpoint":true},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/SuccessPopupViewerWidgetNoCss.bundle.min.js","widgetId":"bb5ba6e9-272d-4a4d-a8dd-5e349744b539","cssPerBreakpoint":true},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-cart-ooi\/1.6303.0\/cartViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbab-4da3-36b0-efb4-2e0599971d14"},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SliderGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82","cssPerBreakpoint":true},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-thank-you-page-ooi\/1.3514.0\/thankYouPageViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbb4-8df0-fd38-a235-88821cf3f8a4"},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb"},"1380bba0-253e-a800-a235-88821cf3f8a4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/GridGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"1380bba0-253e-a800-a235-88821cf3f8a4","cssPerBreakpoint":true},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-cart-icon\/1.2361.0\/CartIconViewerWidgetNoCss.bundle.min.js","widgetId":"1380bbc4-1485-9d44-4616-92e36b1ead6b","cssPerBreakpoint":true},"244576c9-d856-49b9-af14-216071924e3b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchModalGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"244576c9-d856-49b9-af14-216071924e3b","cssPerBreakpoint":true},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/SearchResultsPageGalleryViewerWidgetNoCss.bundle.min.js","widgetId":"abcd87fe-c51f-4538-848d-2902a2f50d2d","cssPerBreakpoint":true},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/PaymentRequestViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"4425f8e8-51fb-457b-9123-fdb7b1cef94a"},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-gallery\/1.6016.0\/CategoryPageViewerWidgetNoCss.bundle.min.js","widgetId":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","cssPerBreakpoint":true},"14fd5970-8072-c276-1246-058b79e70c1a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/CheckoutViewerWidgetNoCss.bundle.min.js","widgetId":"14fd5970-8072-c276-1246-058b79e70c1a"},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-widget\/1.2057.0\/productWidgetNoCss.bundle.min.js","widgetId":"13ec3e79-e668-cc0c-2d48-e99d53a213dd"},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/ecom-platform-checkout\/1.7195.0\/BundleBundleViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"deaaaab0-f5bd-4b7a-a652-3845efcb546a"},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"215f8ab7-97c3-4838-a6d0-ad4a61747158"}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"appDefId":"225dd912-7dea-4738-8688-4b8c6955ffc2","appDefName":"Wix Forms","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0"},"errorReportingUrl":"https:\/\/5d1795a2db124a268f1e1bd88f503500@sentry.wixpress.com\/4615","widgets":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/form-app\/1.2898.0\/FormViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/18d2f96d279149989b95faf0a4b41882@sentry-next.wixpress.com\/1784","widgetId":"371ee199-389c-4a93-849e-e35b8a15b7ca","cssPerBreakpoint":true}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"appDefId":"1484cb44-49cd-5b39-9681-75188ab429de","appDefName":"Wix Site Search","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/"},"widgets":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"4a60a434-d08a-4bd4-a323-4c2479db87ea"},"44c66af6-4d25-485a-ad9d-385f5460deef":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/search-app\/1.3989.0\/SearchResultsViewerWidgetNoCss.bundle.min.js","widgetId":"44c66af6-4d25-485a-ad9d-385f5460deef","cssPerBreakpoint":true}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"appDefId":"14c92d28-031e-7910-c9a8-a670011e062d","appDefName":"Wix FAQ","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/faq-ooi\/1.648.0\/FaqOoiViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/79baaa8e09c746d2b7401643b99792e0@sentry.wixpress.com\/6001","widgetId":"14c92de1-0e02-cbe5-98e9-c3de44d63a55","cssPerBreakpoint":true}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"appDefId":"215238eb-22a5-4c36-9e7b-e7c08025e04e","appDefName":"Wix Stores","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-worker\/1.4813.0\/storesViewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"appDefId":"47e245ca-1a42-4d6a-a69a-c125bc839b40","appDefName":"Express Checkout Widget OOI","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0"},"widgets":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/express-checkout-widget-ooi\/1.168.0\/ExpressCheckoutWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"54fb025c-61dc-4286-87c7-0ac416c58744"}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"appDefId":"df892fe9-626f-44c9-a328-e29f93880b38","appDefName":"payment-methods-banner-ooi","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2031.0"},"widgets":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payment-methods-banner-ooi\/1.2140.0\/PaymentMethodsBannerWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"","widgetId":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4"}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"appDefId":"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9","appDefName":"Wix Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/santa-members-viewer-app\/1.2869.0\/viewerScript.bundle.min.js","baseUrls":{},"widgets":{}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"appDefId":"14cffd81-5215-0a7f-22f8-074b0e2401fb","appDefName":"Member Account Info","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0"},"widgets":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/my-account-ooi\/1.2846.0\/MyAccountViewerWidgetNoCss.bundle.min.js","widgetId":"14dd1af6-3e02-63db-0ef2-72fbc7cc3136","cssPerBreakpoint":true}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"appDefId":"4aebd0cb-fbdb-4da7-b5d1-d05660a30172","appDefName":"My Wallet","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0"},"errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgets":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/payments-my-wallet\/1.1283.0\/MyWalletViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/9a65e97ebe8141fca0c4fd686f70996b@sentry.wixpress.com\/5894","widgetId":"6467c15e-af3c-4e8d-b167-41bfb8efc32a","cssPerBreakpoint":true}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"appDefId":"14f25dc5-6af3-5420-9568-f9c5ed98c9b1","appDefName":"Members Notifications Settings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0"},"errorReportingUrl":"https:\/\/271e9fa3230b4eec94b02bf95780f5f2@sentry.wixpress.com\/6097","widgets":{"04462ba4-2137-41bd-9460-0814554aae07":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.63.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"04462ba4-2137-41bd-9460-0814554aae07","cssPerBreakpoint":false},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications-preferences\/1.68.0\/PreferencesOoiViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/ed436f5053144538958ad06a5005e99a@sentry.wixpress.com\/6142","widgetId":"14f25dd2-f9b0-edc2-f38e-eded5da094aa","cssPerBreakpoint":false}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"appDefId":"14f25924-5664-31b2-9568-f9c5ed98c9b1","appDefName":"Wix Members Area Notifications","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0"},"errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgets":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/OoiNotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"14f2595a-a352-3ff1-9b3c-4d21861fe58f"},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-area-notifications\/1.7.0\/NotificationsViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/460ff4620fa44cba8df530afde949785@sentry.wixpress.com\/5803","widgetId":"6ca9273a-a775-407c-87e1-9685588c9aa7"}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"appDefId":"14dbef06-cc42-5583-32a7-3abd44da4908","appDefName":"Members About","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0"},"widgets":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/members-about-ooi\/1.2699.0\/ProfileViewerWidgetNoCss.bundle.min.js","widgetId":"14dbefb9-3b7b-c4e9-53e8-766defd30587","cssPerBreakpoint":true}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"appDefId":"14ce28f7-7eb0-3745-22f8-074b0e2401fb","appDefName":"Profile Card","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/viewerScript.bundle.min.js","baseUrls":{"staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0"},"widgets":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/profile-card-tpa-ooi\/1.2954.0\/ProfileCardViewerWidgetNoCss.bundle.min.js","widgetId":"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd","cssPerBreakpoint":true}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"appDefId":"13d21c63-b5ec-5912-8397-c3a5ddb27a97","appDefName":"Wix Bookings","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsViewerScript.bundle.min.js","baseUrls":{"siteHeaderUrl":"7f734527084d412f3491e0aceb1d2265_r3.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/","platformAppsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-app-builder-controllers\/1.1970.0\/","serverBaseUrl":"https:\/\/bookings.wixapps.net\/","siteAssets":"{urlTemplate: {siteAssets}}?siteId=dbf7e8f2-9695-4f3f-b258-5282eeff4580&metaSiteId=8b2114a9-339e-4562-bdc4-01621e2f84cb&siteRevision=440}","serviceListStaticsBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget\/1.5494.0\/","staticEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1748.0\/","staticBaseUrl":"https:\/\/static.parastorage.com\/services\/bookings-viewer-script\/1.4026.0\/bookingsEditorScript.bundle.min.js"},"widgets":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"c7fddce1-ebf5-46b0-a309-7865384ba63f"},"169204d8-21be-4b45-b263-a997d31723dc":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"169204d8-21be-4b45-b263-a997d31723dc"},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-details-widget\/1.3526.0\/BookingServicePageViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/dd0a55ccb8124b9c9d938e3acf41f8aa@sentry.wixpress.com\/514","widgetId":"a91a0543-d4bd-4e6b-b315-9410aa27bcde","cssPerBreakpoint":true},"3c675d25-41c7-437e-b13d-d0f99328e347":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/WeeklyTimetableViewerWidgetNoCss.bundle.min.js","widgetId":"3c675d25-41c7-437e-b13d-d0f99328e347","cssPerBreakpoint":true},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"14edb332-fdb9-2fe6-0fd1-e6293322b83b","cssPerBreakpoint":true},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"e86ab26e-a14f-46d1-9d74-7243b686923b","cssPerBreakpoint":true},"621bc837-5943-4c76-a7ce-a0e38185301f":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/BookOnlineViewerWidgetNoCss.bundle.min.js","widgetId":"621bc837-5943-4c76-a7ce-a0e38185301f","cssPerBreakpoint":true},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-service-list-widget\/1.2265.0\/ServiceListWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"cc882051-73c9-41a6-8f90-f6ebc9f10fe1","cssPerBreakpoint":true},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarWidgetViewerWidgetNoCss.bundle.min.js","widgetId":"0eadb76d-b167-4f19-88d1-496a8207e92b","cssPerBreakpoint":true},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"89c4023a-027e-4d2a-b6b7-0b9d345b508d"},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-form-widget\/1.2485.0\/BookingsFormViewerWidgetNoCss.bundle.min.js","widgetId":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","cssPerBreakpoint":true},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-daily-agenda-widget\/1.664.0\/DailyAgendaViewerWidgetNoCss.bundle.min.js","widgetId":"2f22f475-3ed1-41fd-90b7-221e92134f3c","cssPerBreakpoint":true},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"3dc66bc5-5354-4ce6-a436-bd8394c09b0e"},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-my-bookings-widget\/1.673.0\/MyBookingsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/c183baa23371454f99f417f6616b724d@sentry.wixpress.com\/5557","widgetId":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","cssPerBreakpoint":true},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-widget-viewer\/1.1786.0\/component.bundle.min.js","noCssComponentUrl":"","widgetId":"14756c3d-f10a-45fc-4df1-808f22aabe80"},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/bookings-calendar-widget\/1.3599.0\/BookingCalendarViewerWidgetNoCss.bundle.min.js","widgetId":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","cssPerBreakpoint":true}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"appDefId":"14517e1a-3ff0-af98-408e-2bd6953c36a2","appDefName":"Wix Chat","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/chat-worker\/1.1239.0\/viewer-script.bundle.min.js","baseUrls":{},"widgets":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"14517f3f-ffc5-eced-f592-980aaa0bbb5c"}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"appDefId":"27fcc256-f3f8-47df-a66a-8f8176cc7f99","appDefName":"TikTok Videos & Profile Embed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=21942d93-1066-4312-9c58-cfce596ef443&metaSiteId=373f77d8-b143-4002-a2ce-f13109049706&siteRevision=45","blocks_devSiteUrl":"https:\/\/certifiedcode.editorx.io\/697yw77hn9dc1q41sn64","blocks_widgetManifestsUrl":"\/manifests\/27fcc256-f3f8-47df-a66a-8f8176cc7f99\/45\/manifests.json"},"widgets":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"03721c8b-93e9-4a80-a4e5-88c51e3a2634"},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"dfa30e37-50c9-45a6-92a9-1ca066308259"},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"0c2fe29b-9577-40e9-8944-8b4f27ae8ead"}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163","appDefName":"Instagram Feed Social","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=f31b045f-9b0e-4aa1-956e-cdacc5f4447f&metaSiteId=7ebe7690-2d89-4591-97f9-8c4716927d7d&siteRevision=219","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd8-1","blocks_widgetManifestsUrl":"\/manifests\/a5dd7ce8-07c2-4251-8d58-9657c1a43163\/219\/manifests.json"},"widgets":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"499ca64c-5f50-4223-bb91-6d101eaaddae"},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"1eb642dd-23c7-4aac-86ab-af33ba891b2a"},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94"},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"9b3f6bc6-0638-45bb-a924-9e62664f7de0"}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"appDefId":"14271d6f-ba62-d045-549b-ab972ae1f70e","appDefName":"Wix Pro Gallery","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=ce7fd828-85c4-4b73-a390-d293eae32cec&metaSiteId=5af77ffc-cae0-4550-8a1e-4a85ff049a48&siteRevision=25","blocks_widgetManifestsUrl":"\/manifests\/14271d6f-ba62-d045-549b-ab972ae1f70e\/25\/manifests.json","santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/"},"errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgets":{"142bb34d-3439-576a-7118-683e690a1e0d":{"controllerUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryController.bundle.min.js","componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-tpa\/1.1531.0\/WixProGalleryViewerWidget.bundle.min.js","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d"},"144f04b9-aab4-fde7-179b-780c11da4f46":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/8eb368c655b84e029ed79ad7a5c1718e@sentry.wixpress.com\/3427","widgetId":"144f04b9-aab4-fde7-179b-780c11da4f46"}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"appDefId":"14bcded7-0066-7c35-14d7-466cb3f09103","appDefName":"Wix Blog","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/viewerScript.bundle.min.js","baseUrls":{"mediaImageHost":"static.wixstatic.com","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/","duplexerUrl":"duplexer.wix.com","apiBaseUrlClient":"\/_api\/communities-blog-node-api","translationsBaseUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-translations\/1.4450.0\/","siteAssets":"{urlTemplate: {siteAssets}?siteId=f2343010-d1f3-4080-a98e-3d82976a671d&metaSiteId=2b9fa616-1dde-46d3-a1a3-d715ebc1d57d&siteRevision=1335","apiPlatformizedBaseUrl":"https:\/\/www.wix.com\/_api\/communities-blog-api-web","mediaVideoHost":"video.wixstatic.com","apiPlatformizedBaseUrlClient":"\/_api\/communities-blog-api-web","apiBaseUrl":"https:\/\/apps.wix.com\/_api\/communities-blog-node-api","apiExperimentsBaseUrlClient":"\/_api\/wix-laboratory-server","blocks_devSiteUrl":"https:\/\/zanass1.editorx.io\/2w5loeiwuf2frneevn6m","blocks_widgetManifestsUrl":"\/manifests\/14bcded7-0066-7c35-14d7-466cb3f09103\/1335\/manifests.json","useArchiveWidgetAdapter":"false","disableDuplexerForInstanceIds":"671e6bcb-a0a9-4ae0-98f2-f81a607bf167","provisioningModalUrl":"https:\/\/www.wix.com\/_partials\/communities-blog-provisioning-modal\/1.1107.0\/modal.html","apiAggregatorBaseUrl":"\/blog-frontend-adapter-public","apiPaywallBaseUrl":"\/_api\/paywall-server","categoryLabel":"false"},"errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgets":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ea40bb32-ddfc-4f68-a163-477bd0e97c8e"},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260f9-c2eb-50e8-9b3c-4d21861fe58f"},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6"},"14e5b36b-e545-88a0-1475-2487df7e9206":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b36b-e545-88a0-1475-2487df7e9206"},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/BlogViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14c1462a-97f2-9f6a-7bb7-f5541f23caa6"},"5fdc6c03-080d-4872-b567-24146c82fae5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5fdc6c03-080d-4872-b567-24146c82fae5"},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa"},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03"},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2d4ed2d3-75f8-4942-9787-71e3d182e256"},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RelatedPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9"},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/CategoryMenuViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","cssPerBreakpoint":true},"5940091f-797c-4e86-9c57-73fcfd87425f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5940091f-797c-4e86-9c57-73fcfd87425f"},"e5520a99-1725-4b88-a85f-c439916890c8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5520a99-1725-4b88-a85f-c439916890c8"},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1b5b448c-a39f-4515-9445-c6b4ceace1c2"},"68a2d745-328b-475d-9e36-661f678daa31":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"68a2d745-328b-475d-9e36-661f678daa31"},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"5e123a45-f3aa-4157-a47a-e58d8cb246eb"},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/TagCloudViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"c0a125b8-2311-451e-99c5-89b6bba02b22","cssPerBreakpoint":true},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"b27ea74b-1c6f-4bdb-bda7-8242323ba20b"},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"25ab36f9-f8bd-4799-a887-f10b6822fc2e"},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26109-514f-f9a8-9b3c-4d21861fe58f"},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"76359954-edd4-4c46-ad14-a7c5e65cc30c"},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14e5b39b-6d47-99c3-3ee5-cee1c2574c89"},"26858b64-aad8-42ab-8c63-f19009198c7b":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"26858b64-aad8-42ab-8c63-f19009198c7b"},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"129259f6-06e4-42a3-9877-81a1fa9de95c"},"d134b0c9-8085-415a-9479-b555374ba958":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"d134b0c9-8085-415a-9479-b555374ba958"},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/RssButtonViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"1515a9e7-b579-fbbb-43fc-0e3051c14803","cssPerBreakpoint":true},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/ArchiveViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","cssPerBreakpoint":true},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd"},"211b5287-14e2-4690-bb71-525908938c81":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"211b5287-14e2-4690-bb71-525908938c81","cssPerBreakpoint":true},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostTitleViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"478911c3-de0c-469e-90e3-304f2f8cd6a7"},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7"},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"ce8e832b-c34f-4b80-b2a6-6cfd6d573751"},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a"},"813eb645-c6bd-4870-906d-694f30869fd9":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/PostListViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"813eb645-c6bd-4870-906d-694f30869fd9"},"bc7fa914-015b-4c32-a323-e5472563a798":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"bc7fa914-015b-4c32-a323-e5472563a798"},"7466726a-84cf-41c8-be6b-1694445dc539":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"7466726a-84cf-41c8-be6b-1694445dc539"},"14f260e4-ea13-f861-b0ba-4577df99b961":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f260e4-ea13-f861-b0ba-4577df99b961"},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"091d05b7-f44d-4a76-9163-0c7ed5312769"},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"763aa9a8-0531-426f-a4b1-61a7291ce292"},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"controllerUrl":"","componentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidget.bundle.min.js","noCssComponentUrl":"https:\/\/static.parastorage.com\/services\/communities-blog-ooi\/1.3271.0\/MyPostsViewerWidgetNoCss.bundle.min.js","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046"},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/2062d0a4929b45348643784b5cb39c36@sentry.wixpress.com\/1643","widgetId":"14f26118-b65b-b1c1-b6db-34d5da9dd623"}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"appDefId":"7479d596-137c-4fa3-89cd-d7091042ba61","appDefName":"Category Header","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=40409312-1151-4ed0-8a9f-f062a56f6b7d&metaSiteId=b746a535-5011-4a95-87e4-c230005eae45&siteRevision=132","blocks_devSiteUrl":"https:\/\/jurijm.editorx.io\/site-heyaey4jx1ucay8","blocks_widgetManifestsUrl":"\/manifests\/7479d596-137c-4fa3-89cd-d7091042ba61\/132\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/blog-category-header-widget\/1.240.0"},"widgets":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"97466558-6e7b-43e6-9734-82123ef4c3f3"}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3","appDefName":"TikTok Feed","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/blocks-client-viewer-app\/1.2572.0\/viewerApp.umd.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=35bbc60f-7333-456c-8d12-465f7f6a8352&metaSiteId=cb51255d-85e6-46d5-b822-fda4e8b8da0e&siteRevision=305","blocks_devSiteUrl":"https:\/\/s21797.editorx.io\/nsg1jn8ehqqg3j6cd827","blocks_widgetManifestsUrl":"\/manifests\/75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3\/305\/manifests.json"},"widgets":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"6aaf0b7d-32c6-4384-b128-d47e22ba1087"},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"f4877f7b-3730-4bf6-ab04-f8a2b47fe642"},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","widgetId":"b07b31e4-3a98-4859-abca-0854eef13bc9"}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"appDefId":"a0c68605-c2e7-4c8d-9ea1-767f9770e087","appDefName":"Product Page Blocks","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wixstores-client-product-page-blocks\/1.2509.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=2540ca8b-1c17-46aa-9e3b-2811df6cd9f6&metaSiteId=58466935-39b8-4cf3-b984-c1e6016a01fb&siteRevision=6855","blocks_devSiteUrl":"https:\/\/ecom19.wixstudio.com\/myapp-1-1-1","blocks_widgetManifestsUrl":"\/manifests\/a0c68605-c2e7-4c8d-9ea1-767f9770e087\/6855\/manifests.json"},"errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgets":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"33159c18-8226-4068-91e8-216f5f2c75f8"},"6e0d0836-6240-4688-b4c2-00095de015d9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6e0d0836-6240-4688-b4c2-00095de015d9"},"60039b18-5d94-45b7-bd03-b7008213f906":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"60039b18-5d94-45b7-bd03-b7008213f906"},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"72c071a7-3808-4b0d-94ae-cc49bc51e0fe"},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45"},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ba708a2c-287b-4bfa-9daf-d04168e13e1f"},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5"},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2fb559c9-2297-43cc-9f28-aaf3e988063d"},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"ddea5ffa-c473-4655-8c8f-241e10f9bd67"},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"cbd0cea6-4c0d-4199-b241-1254d1f02377"},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"56b08f4f-d99b-4da2-a049-ca218b626be2"},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"e3eb5d42-170a-41ad-a344-8489e54828ad"},"9fa041da-f429-4a24-8579-46c57a985b33":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"9fa041da-f429-4a24-8579-46c57a985b33"},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"6a25b678-53ec-4b37-a190-65fcd1ca1a63"},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"a7a7c443-9ebe-442f-9339-b28804f8869e"},"17315fb1-7be4-4492-a196-c1abb2817309":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"17315fb1-7be4-4492-a196-c1abb2817309"},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1"},"f67f8f07-eac7-470e-99f5-213f121b5655":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"f67f8f07-eac7-470e-99f5-213f121b5655"},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"edb17e71-9a93-428e-87d8-26c07fb4cd3c"},"db646d31-6817-4184-87df-c5496c9da6b9":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/0fd2930120484402ac9adfb9e05cacd5@o37417.ingest.sentry.io\/6003813","widgetId":"db646d31-6817-4184-87df-c5496c9da6b9"}}},"b976560c-3122-4351-878f-453f337b7245":{"appDefId":"b976560c-3122-4351-878f-453f337b7245","appDefName":"Members Area","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0\/viewerScript.bundle.min.js","baseUrls":{"siteAssets":"{urlTemplate: {siteAssets}?siteId=27e854ac-99e9-4626-b905-ff10071df796&metaSiteId=4a8777cf-00e8-44ee-95cd-d6abc09dc8e4&siteRevision=1358","blocks_devSiteUrl":"https:\/\/mnmteam.editorx.io\/vxgooi3j6xm5ykyver02","blocks_widgetManifestsUrl":"\/manifests\/b976560c-3122-4351-878f-453f337b7245\/1358\/manifests.json","staticsBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0","staticsEditorBaseUrl":"https:\/\/static.parastorage.com\/services\/profile-page-bob\/1.2525.0"},"errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgets":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5956d247-32d0-43af-9a49-7d1090c1e666"},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"2f6c5608-393f-4b15-bfd8-d4e15396787a"},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5ab312ae-0cf7-4093-bbf5-5e4d3690151c"},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"31aadcb0-9add-42cb-9b21-72f41e91389b"},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"controllerUrl":"","componentUrl":"https:\/\/empty","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b"},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"25d08a82-0ea5-40f4-8047-07aee3e73e40"},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"009081ab-9c3d-41d5-8b90-41af0e84c159"},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"a26fd26a-3dd9-42ca-b381-326a9c143e38"},"596a6688-3ad7-46f7-bb9c-00023225876d":{"controllerUrl":"","componentUrl":"","noCssComponentUrl":"","errorReportingUrl":"https:\/\/78f7996315bc402f9dcb8a2f974b82d1@sentry.wixpress.com\/3935","widgetId":"596a6688-3ad7-46f7-bb9c-00023225876d"}}},"dataBinding":{"appDefId":"dataBinding","appDefName":"Data Binding","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0\/app.js","baseUrls":{},"widgets":{}},"675bbcef-18d8-41f5-800e-131ec9e08762":{"appDefId":"675bbcef-18d8-41f5-800e-131ec9e08762","viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/wix-code-viewer-app\/1.1479.751\/app.js","baseUrls":{},"widgets":{}}},"builderComponentsImportMapSdkUrls":{},"builderComponentsCompTypeSdkUrls":{},"builderPublicPackagesUrls":{"esm":{},"umd":{}},"blocksBootstrapData":{"blocksAppsData":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"siteHeaderUrl":"56cd9dac672d7ce337b3207daff4d42e_r3.json","wixCodeGridId":"a9a3d486-0959-4998-8101-804533f57449","wixCodeInstanceId":"065fa722-44be-4dd9-95f6-3fe9912703c6"},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"siteHeaderUrl":"591b11f2a073c5bca85e182137eaece3_r3.json","wixCodeGridId":"9ebcb758-3944-4933-bba8-ff8a92a98050","wixCodeInstanceId":"91400723-cd68-45fb-8bbf-77e3594054f2","packageImportName":"@s21797\/instagram-display-feed"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"siteHeaderUrl":"a7dbf879980a8e90e03d649b6f48fac4_r3.json","wixCodeGridId":"71869e96-79b7-49b9-b6f9-e32bcf00ac52","wixCodeInstanceId":"4655355b-4814-4846-b82a-e057f0df94a3"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"siteHeaderUrl":"ae7beb322e32912fccc688a488a3de89_r3.json","wixCodeGridId":"21056c2c-144a-488f-912d-5fb0e1262beb","wixCodeInstanceId":"c520f32b-7cd2-44bd-a087-e5c72fd7af4c"},"7479d596-137c-4fa3-89cd-d7091042ba61":{"siteHeaderUrl":"75c7edf189bcc09f580e85623d67c932_r3.json","wixCodeGridId":"9cd056c2-0ac6-492c-a87e-9077d75d5345","wixCodeInstanceId":"3880b106-aff4-48e9-ab49-36deb1115cc7"},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"siteHeaderUrl":"ca5e43f993b33af9783152c9ed36babf_r3.json","wixCodeGridId":"4741eabd-b87f-4c4a-8280-f696c07fc433","wixCodeInstanceId":"d1f2fb12-462c-4b8a-8b12-1cc4637960c4","packageImportName":"@s21797\/tiktok-feed"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"siteHeaderUrl":"f9b33bc0e6f5ee678a3ba5176fd5d709_r3.json","wixCodeGridId":"1f3cdaf3-1ef1-491b-8743-1894bb51257c","wixCodeInstanceId":"48957064-b9fc-473d-a9e4-9a4ca03778e1"},"b976560c-3122-4351-878f-453f337b7245":{"siteHeaderUrl":"c4c8f1550a798808028d301cbb3b47a1_r3.json","wixCodeGridId":"5d5e1403-dffe-4565-948c-03a8e2f4251e","wixCodeInstanceId":"9a9eaf1c-6655-4e0c-9789-ee2c43dd1920"}},"elevatedBlocksAppsOnReactNative":[],"experiments":{"specs.blocks-client.alwaysUseTokenInfoForDecode":"true"},"experimentsQueryParams":"init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","widgetBundleUrls":{},"isVeloBundlerParastorageUrlEnabled":true,"parastorageTemplateUrl":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_\/gridAppId_\/filePath_\/fileType_js\/compression_gzip\/depToken_3938\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_"},"window":{"csrfToken":"1786257261|eMUCwICxgYpb"},"location":{"externalBaseUrl":"https:\/\/www.leshabitationssf.com","isPremiumDomain":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userFileDomainUrl":"filesusr.com"},"bi":{"ownerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","isMobileFriendly":true,"isPreview":false,"requestId":"1786257266.6934118815261376"},"platformAPIData":{"routersConfigMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"wixCodeBootstrapData":{"wixCodeAppDefinitionId":"675bbcef-18d8-41f5-800e-131ec9e08762","wixCodeInstanceId":"a1f45234-850a-4a74-a53d-568344a34848","wixCloudBaseDomain":"wix-code.com","dbsmViewerApp":"https:\/\/static.parastorage.com\/services\/dbsm-viewer-app\/1.9038.0","wixCodePlatformBaseUrl":"https:\/\/static.parastorage.com\/services\/wix-code-platform\/1.1097.93","wixCodeModel":{"appData":{"codeAppId":"00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85"},"signedAppRenderInfo":"27820e49c51d66661ff77c2b39a3706474ccb3c0.eyJncmlkQXBwSWQiOiIwMGRmYmM4Yy1iN2YzLTRkYzEtOTg5Yy1mNmEzYjI3OTFhODUiLCJodG1sU2l0ZUlkIjoiNDUyMDcxYzEtYTk5Yi00NGMyLWI2ODYtZGQxNWIxMTI2NGEzIiwiZGVtb0lkIjpudWxsLCJzaWduRGF0ZSI6MTc4NjI1NzI2NjgyMn0="},"wixCodePageIds":{"ebqqm":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ebqqm.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","ycxvu":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_ycxvu.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false","wdvyd":"https:\/\/bundler-velo.parastorage.com\/v_metaSiteId_39b9882f-9e71-4f93-bb6d-a87166c85cda\/gridAppId_00dfbc8c-b7f3-4dc1-989c-f6a3b2791a85\/filePath_public_delimiter_pages_delimiter_wdvyd.js\/fileType_js\/compression_gzip\/depToken_\/bundlerRuntimeExperiments_bundlerTrafficToAws-typescriptListExportedFunctions\/additionalOptions_?init-platform-api-provider=true&get-app-def-id-from-package-name=false&disable-yarn-pnp-mode=false"},"elementorySupport":{"baseUrl":"https:\/\/www.leshabitationssf.com\/_api\/wix-code-public-dispatcher-ng\/siteview"},"codePackagesData":[{"importName":"@s21797\/instagram-display-feed","gridAppId":"343ea3d2-8481-44a4-9766-e5cdf26a75ef","appDefId":"a5dd7ce8-07c2-4251-8d58-9657c1a43163"},{"importName":"@s21797\/tiktok-feed","gridAppId":"35b7ef5e-d3c5-4bb7-a9f5-c6f4f25a9423","appDefId":"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3"}]},"autoFrontendModulesBaseUrl":"https:\/\/static.parastorage.com\/services\/auto-frontend-modules\/1.6238.0","disabledPlatformApps":{},"widgetsClientSpecMapData":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":{},"675bbcef-18d8-41f5-800e-131ec9e08762":{},"1380b703-ce81-ff05-f115-39571d94dfcd":{"13a94f09-2766-3c40-4a32-8edb5acdd8bc":{"widgetName":"product_page","componentFields":{}},"49dbb2d9-d9e5-4605-a147-e926605bf164":{"widgetName":"49dbb2d9-d9e5-4605-a147-e926605bf164","componentFields":{}},"14666402-0bc7-b763-e875-e99840d131bd":{"widgetName":"add_to_cart_button","componentFields":{}},"a63a5215-8aa6-42af-96b1-583bfd74cff5":{"widgetName":"wishlist","componentFields":{}},"13afb094-84f9-739f-44fd-78d036adb028":{"widgetName":"grid_gallery","componentFields":{}},"bb5ba6e9-272d-4a4d-a8dd-5e349744b539":{"widgetName":"Success Popup","componentFields":{}},"1380bbab-4da3-36b0-efb4-2e0599971d14":{"widgetName":"shopping_cart","componentFields":{}},"139a41fd-0b1d-975f-6f67-e8cbdf8ccc82":{"widgetName":"slider_gallery","componentFields":{}},"1380bbb4-8df0-fd38-a235-88821cf3f8a4":{"widgetName":"thank_you_page","componentFields":{}},"14e121c8-00a3-f7cc-6156-2c82a2ba8fcb":{"widgetName":"order_history","componentFields":{}},"1380bba0-253e-a800-a235-88821cf3f8a4":{"widgetName":"product_gallery","componentFields":{}},"1380bbc4-1485-9d44-4616-92e36b1ead6b":{"widgetName":"shopping_cart_icon","componentFields":{}},"244576c9-d856-49b9-af14-216071924e3b":{"widgetName":"244576c9-d856-49b9-af14-216071924e3b","componentFields":{}},"abcd87fe-c51f-4538-848d-2902a2f50d2d":{"widgetName":"abcd87fe-c51f-4538-848d-2902a2f50d2d","componentFields":{}},"4425f8e8-51fb-457b-9123-fdb7b1cef94a":{"widgetName":"4425f8e8-51fb-457b-9123-fdb7b1cef94a","componentFields":{}},"bda15dc1-816d-4ff3-8dcb-1172d5343cce":{"widgetName":"bda15dc1-816d-4ff3-8dcb-1172d5343cce","componentFields":{}},"14fd5970-8072-c276-1246-058b79e70c1a":{"widgetName":"checkout","componentFields":{}},"13ec3e79-e668-cc0c-2d48-e99d53a213dd":{"widgetName":"product_widget","componentFields":{}},"deaaaab0-f5bd-4b7a-a652-3845efcb546a":{"widgetName":"deaaaab0-f5bd-4b7a-a652-3845efcb546a","componentFields":{}},"215f8ab7-97c3-4838-a6d0-ad4a61747158":{"componentFields":{}}},"27fcc256-f3f8-47df-a66a-8f8176cc7f99":{"03721c8b-93e9-4a80-a4e5-88c51e3a2634":{"componentFields":{}},"dfa30e37-50c9-45a6-92a9-1ca066308259":{"componentFields":{}},"0c2fe29b-9577-40e9-8944-8b4f27ae8ead":{"componentFields":{}}},"a5dd7ce8-07c2-4251-8d58-9657c1a43163":{"499ca64c-5f50-4223-bb91-6d101eaaddae":{"componentFields":{}},"1eb642dd-23c7-4aac-86ab-af33ba891b2a":{"componentFields":{}},"7dfd67a4-7dad-4cbd-a5e2-6b03202acb94":{"componentFields":{}},"9b3f6bc6-0638-45bb-a924-9e62664f7de0":{"componentFields":{}}},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"371ee199-389c-4a93-849e-e35b8a15b7ca":{"widgetName":"371ee199-389c-4a93-849e-e35b8a15b7ca","componentFields":{}}},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetName":"pro-gallery","componentFields":{}},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetName":"fullscreen_page","componentFields":{}}},"14bcded7-0066-7c35-14d7-466cb3f09103":{"ea40bb32-ddfc-4f68-a163-477bd0e97c8e":{"componentFields":{}},"14f260f9-c2eb-50e8-9b3c-4d21861fe58f":{"widgetName":"member-comments-page","componentFields":{}},"6e2b3a80-dc83-4ce3-adc2-82ce48ff2ed6":{"componentFields":{}},"14e5b36b-e545-88a0-1475-2487df7e9206":{"widgetName":"recent-posts-widget","componentFields":{}},"14c1462a-97f2-9f6a-7bb7-f5541f23caa6":{"widgetName":"blog","componentFields":{}},"5fdc6c03-080d-4872-b567-24146c82fae5":{"componentFields":{}},"7183995a-bf0b-4a2f-a9b4-a1b7ef96b6fa":{"componentFields":{}},"ff5bffc0-5d09-4b31-b140-be6d8ffa2c03":{"componentFields":{}},"2d4ed2d3-75f8-4942-9787-71e3d182e256":{"componentFields":{}},"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9":{"widgetName":"46a9e991-c1cc-47c9-b19a-e99d3be1e2c9","componentFields":{}},"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f":{"widgetName":"a0d7808c-0d7d-4a40-8cf0-911a9f0de96f","componentFields":{}},"5940091f-797c-4e86-9c57-73fcfd87425f":{"componentFields":{}},"e5520a99-1725-4b88-a85f-c439916890c8":{"componentFields":{}},"1b5b448c-a39f-4515-9445-c6b4ceace1c2":{"componentFields":{}},"68a2d745-328b-475d-9e36-661f678daa31":{"componentFields":{}},"5e123a45-f3aa-4157-a47a-e58d8cb246eb":{"componentFields":{}},"c0a125b8-2311-451e-99c5-89b6bba02b22":{"widgetName":"c0a125b8-2311-451e-99c5-89b6bba02b22","componentFields":{}},"b27ea74b-1c6f-4bdb-bda7-8242323ba20b":{"componentFields":{}},"25ab36f9-f8bd-4799-a887-f10b6822fc2e":{"componentFields":{}},"14f26109-514f-f9a8-9b3c-4d21861fe58f":{"widgetName":"member-likes-page","componentFields":{}},"76359954-edd4-4c46-ad14-a7c5e65cc30c":{"componentFields":{}},"14e5b39b-6d47-99c3-3ee5-cee1c2574c89":{"widgetName":"custom-feed-widget","componentFields":{}},"26858b64-aad8-42ab-8c63-f19009198c7b":{"componentFields":{}},"129259f6-06e4-42a3-9877-81a1fa9de95c":{"componentFields":{}},"d134b0c9-8085-415a-9479-b555374ba958":{"componentFields":{}},"1515a9e7-b579-fbbb-43fc-0e3051c14803":{"widgetName":"rss-feed-widget","componentFields":{}},"2f3d2c69-2bc4-4519-bd72-0a63dd92577f":{"widgetName":"2f3d2c69-2bc4-4519-bd72-0a63dd92577f","componentFields":{}},"75eefde7-6159-4e4c-aafd-2aaf5a27ebbd":{"componentFields":{}},"211b5287-14e2-4690-bb71-525908938c81":{"widgetName":"post","componentFields":{}},"478911c3-de0c-469e-90e3-304f2f8cd6a7":{"widgetName":"478911c3-de0c-469e-90e3-304f2f8cd6a7","componentFields":{}},"f43a5e97-d70d-4906-a56e-45fdfc0f5bb7":{"componentFields":{}},"ce8e832b-c34f-4b80-b2a6-6cfd6d573751":{"componentFields":{}},"0cc51cdc-4a4f-4054-9284-6cfb0dc5a22a":{"componentFields":{}},"813eb645-c6bd-4870-906d-694f30869fd9":{"widgetName":"813eb645-c6bd-4870-906d-694f30869fd9","componentFields":{}},"bc7fa914-015b-4c32-a323-e5472563a798":{"componentFields":{}},"7466726a-84cf-41c8-be6b-1694445dc539":{"componentFields":{}},"14f260e4-ea13-f861-b0ba-4577df99b961":{"widgetName":"member-drafts-page","componentFields":{}},"091d05b7-f44d-4a76-9163-0c7ed5312769":{"componentFields":{}},"763aa9a8-0531-426f-a4b1-61a7291ce292":{"componentFields":{}},"e5a2773b-0e6b-4cbb-a012-3b4a69e92046":{"widgetName":"e5a2773b-0e6b-4cbb-a012-3b4a69e92046","componentFields":{}},"14f26118-b65b-b1c1-b6db-34d5da9dd623":{"widgetName":"member-posts-page","componentFields":{}}},"1484cb44-49cd-5b39-9681-75188ab429de":{"4a60a434-d08a-4bd4-a323-4c2479db87ea":{"componentFields":{}},"44c66af6-4d25-485a-ad9d-385f5460deef":{"widgetName":"search_results","componentFields":{}}},"7479d596-137c-4fa3-89cd-d7091042ba61":{"97466558-6e7b-43e6-9734-82123ef4c3f3":{"componentFields":{}}},"14c92d28-031e-7910-c9a8-a670011e062d":{"14c92de1-0e02-cbe5-98e9-c3de44d63a55":{"widgetName":"faq_widget","componentFields":{}}},"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":{"6aaf0b7d-32c6-4384-b128-d47e22ba1087":{"componentFields":{}},"f4877f7b-3730-4bf6-ab04-f8a2b47fe642":{"componentFields":{}},"b07b31e4-3a98-4859-abca-0854eef13bc9":{"componentFields":{}}},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{},"47e245ca-1a42-4d6a-a69a-c125bc839b40":{"54fb025c-61dc-4286-87c7-0ac416c58744":{"widgetName":"54fb025c-61dc-4286-87c7-0ac416c58744","componentFields":{}}},"df892fe9-626f-44c9-a328-e29f93880b38":{"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4":{"widgetName":"f6aa0c93-74ae-415c-a5e3-1bfc7c747bf4","componentFields":{}}},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"33159c18-8226-4068-91e8-216f5f2c75f8":{"componentFields":{}},"6e0d0836-6240-4688-b4c2-00095de015d9":{"componentFields":{}},"60039b18-5d94-45b7-bd03-b7008213f906":{"componentFields":{}},"72c071a7-3808-4b0d-94ae-cc49bc51e0fe":{"componentFields":{}},"11d2e86b-7f3b-445e-9cc5-b25dd9de8f45":{"componentFields":{}},"ba708a2c-287b-4bfa-9daf-d04168e13e1f":{"componentFields":{}},"5cfa0563-7bfc-4b61-9dbb-04677d1b9ea5":{"componentFields":{}},"2fb559c9-2297-43cc-9f28-aaf3e988063d":{"componentFields":{}},"ddea5ffa-c473-4655-8c8f-241e10f9bd67":{"componentFields":{}},"cbd0cea6-4c0d-4199-b241-1254d1f02377":{"componentFields":{}},"56b08f4f-d99b-4da2-a049-ca218b626be2":{"componentFields":{}},"e3eb5d42-170a-41ad-a344-8489e54828ad":{"componentFields":{}},"9fa041da-f429-4a24-8579-46c57a985b33":{"componentFields":{}},"6a25b678-53ec-4b37-a190-65fcd1ca1a63":{"componentFields":{}},"a7a7c443-9ebe-442f-9339-b28804f8869e":{"componentFields":{}},"17315fb1-7be4-4492-a196-c1abb2817309":{"componentFields":{}},"2790ca6c-a264-4ecd-8f5a-030ebce5d0b1":{"componentFields":{}},"f67f8f07-eac7-470e-99f5-213f121b5655":{"componentFields":{}},"edb17e71-9a93-428e-87d8-26c07fb4cd3c":{"componentFields":{}},"db646d31-6817-4184-87df-c5496c9da6b9":{"componentFields":{}}},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{},"b976560c-3122-4351-878f-453f337b7245":{"5956d247-32d0-43af-9a49-7d1090c1e666":{"componentFields":{}},"2f6c5608-393f-4b15-bfd8-d4e15396787a":{"componentFields":{}},"5ab312ae-0cf7-4093-bbf5-5e4d3690151c":{"componentFields":{}},"31aadcb0-9add-42cb-9b21-72f41e91389b":{"widgetName":"31aadcb0-9add-42cb-9b21-72f41e91389b","componentFields":{}},"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b":{"widgetName":"5a4d1a4f-58c5-4389-8a03-5cbabe4a9f3b","componentFields":{}},"25d08a82-0ea5-40f4-8047-07aee3e73e40":{"componentFields":{}},"009081ab-9c3d-41d5-8b90-41af0e84c159":{"componentFields":{}},"a26fd26a-3dd9-42ca-b381-326a9c143e38":{"componentFields":{}},"596a6688-3ad7-46f7-bb9c-00023225876d":{"componentFields":{}}},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"14dd1af6-3e02-63db-0ef2-72fbc7cc3136":{"widgetName":"member_info","componentFields":{}}},"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":{"6467c15e-af3c-4e8d-b167-41bfb8efc32a":{"widgetName":"my_wallet","componentFields":{}}},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"04462ba4-2137-41bd-9460-0814554aae07":{"widgetName":"04462ba4-2137-41bd-9460-0814554aae07","componentFields":{}},"14f25dd2-f9b0-edc2-f38e-eded5da094aa":{"widgetName":"settings","componentFields":{}}},"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"14f2595a-a352-3ff1-9b3c-4d21861fe58f":{"widgetName":"notifications_app","componentFields":{}},"6ca9273a-a775-407c-87e1-9685588c9aa7":{"widgetName":"6ca9273a-a775-407c-87e1-9685588c9aa7","componentFields":{}}},"14dbef06-cc42-5583-32a7-3abd44da4908":{"14dbefb9-3b7b-c4e9-53e8-766defd30587":{"widgetName":"about","componentFields":{}}},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"14cefc05-d163-dbb7-e4ec-cd4f2c4d6ddd":{"widgetName":"profile","componentFields":{}}},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"c7fddce1-ebf5-46b0-a309-7865384ba63f":{"componentFields":{}},"169204d8-21be-4b45-b263-a997d31723dc":{"componentFields":{}},"a91a0543-d4bd-4e6b-b315-9410aa27bcde":{"widgetName":"Booking Service Page","componentFields":{}},"3c675d25-41c7-437e-b13d-d0f99328e347":{"widgetName":"3c675d25-41c7-437e-b13d-d0f99328e347","componentFields":{}},"14edb332-fdb9-2fe6-0fd1-e6293322b83b":{"widgetName":"bookings_member_area","componentFields":{}},"e86ab26e-a14f-46d1-9d74-7243b686923b":{"widgetName":"e86ab26e-a14f-46d1-9d74-7243b686923b","componentFields":{}},"621bc837-5943-4c76-a7ce-a0e38185301f":{"widgetName":"bookings_list","componentFields":{}},"cc882051-73c9-41a6-8f90-f6ebc9f10fe1":{"widgetName":"service_list_widget","componentFields":{}},"0eadb76d-b167-4f19-88d1-496a8207e92b":{"widgetName":"0eadb76d-b167-4f19-88d1-496a8207e92b","componentFields":{}},"89c4023a-027e-4d2a-b6b7-0b9d345b508d":{"widgetName":"bookings_timetable_daily","componentFields":{}},"985e6fc8-ce3f-4cf8-9b85-714c73f48695":{"widgetName":"985e6fc8-ce3f-4cf8-9b85-714c73f48695","componentFields":{}},"2f22f475-3ed1-41fd-90b7-221e92134f3c":{"widgetName":"2f22f475-3ed1-41fd-90b7-221e92134f3c","componentFields":{}},"3dc66bc5-5354-4ce6-a436-bd8394c09b0e":{"componentFields":{}},"e1339b7c-0c95-43fe-89f6-be037ad29ea9":{"widgetName":"e1339b7c-0c95-43fe-89f6-be037ad29ea9","componentFields":{}},"14756c3d-f10a-45fc-4df1-808f22aabe80":{"widgetName":"widget","componentFields":{}},"54d912c5-52cb-4657-b8fa-e1a4cda8ed01":{"widgetName":"54d912c5-52cb-4657-b8fa-e1a4cda8ed01","componentFields":{}}},"14517e1a-3ff0-af98-408e-2bd6953c36a2":{"14517f3f-ffc5-eced-f592-980aaa0bbb5c":{"widgetName":"wix_visitors","componentFields":{}}},"dataBinding":{}},"essentials":{"appsConductedExperiments":{"14f25924-5664-31b2-9568-f9c5ed98c9b1":{"specs.ping.membersAreaNotifications.useIntlInsteadOfMoment":"true","specs.ping.MANotifications.useMAWidgetPluginService":"true"},"225dd912-7dea-4738-8688-4b8c6955ffc2":{"specs.bookings.deprecateConferenceAccountService":"true","specs.forms.LocalPhoneNumbers":"true","specs.forms.DropdownColors":"true","newButtonsDesignPanel":"A","specs.forms.SubmitSuccessNoFocus":"false","specs.bookings.BifOnMeetingsInstallMode":"meetings-modal","specs.forms.MultilineAddressInTemplates":"true","specs.forms.FetchFormsInEditor":"false","specs.forms.FixControllerActions":"true","specs.forms.UseFieldsV2":"true","specs.forms.WdsOpacityColorPicker":"false","specs.forms.EnableHeadingLevels":"true","specs.bookings.BIFInstallOnlyMeetings":"false","specs.form-app.AiFormAssistantV2":"false","specs.forms.ImportFilesToMediaManagerExperiment":"true","specs.forms.EnableNewPhoneFieldValidation":"true","specs.bookings.InstallMeetingsForBIF":"false","specs.forms.EnablePhoneField":"true","specs.services.RemoveBookingsDependency":"true","formsStudio2Thumbnails":"A","specs.forms.ApplyHeadingsStyleParams":"false","initFormControllerWithTimeout":"B","specs.forms.BoxlessTextStyles":"true","specs.forms.EnablePresetTab":"false"},"14271d6f-ba62-d045-549b-ab972ae1f70e":{"specs.pro-gallery.displayPreset14":"true","specs.pro-gallery.removeUseOfCounterApi":"true","specs.pro-gallery.horizontalScrollAnimations":"true","specs.pro-gallery.useImageAvifFormat":"true","specs.pro-gallery.EnableAlbumsStorePremiumValidation":"true","specs.pro-gallery.removePgStoreTab":"true","specs.pro-gallery.backgroundDesignFullscreen":"true","specs.pro-gallery.useMotherSiteAppInstance":"true","specs.pro-gallery.addSEOVideoMetaTags":"false","specs.pro-gallery.enableMainLightroomSettingsButton":"true","specs.pro-gallery.displayPreset17":"false","specs.pro-gallery.slideTransition":"true","specs.proGallery.shouldShowNewPanels":"false","specs.pro-gallery.displayProGalleryPresets":"true","specs.pro-gallery.navigationArrowsDrawer":"true","specs.pro-gallery.horizontalTitlePlacementOptions":"true","specs.pro-gallery.artstoreShowDeprecationMessageInSettings":"false","useProGalleryNewServices":"A","specs.pro-gallery.navArrowsVericalPositionController":"true","specs.pro-gallery.enablePGRenderIndicator":"false","specs.pro-gallery.excludeFromWarmupData":"false","specs.pro-gallery.customNavigationArrows":"true","specs.pro-gallery.fixedGalleryRatio":"true","specs.pro-gallery.displayProGalleryNewPreset":"true","specs.pro-gallery.useReactionService":"true","specs.pro-gallery.textBoxWidthControllers":"true","specs.pro-gallery.allowOverlayGradient":"true","specs.pro-gallery.excludeFromLayoutFixer":"false","specs.pro-gallery.useIsInFirstFold":"false","specs.pro-gallery.dontRenderGalleryBelowFoldOnLoad":"false","specs.pro-gallery.enableLightroomSettingsButton":"true","specs.pro-gallery.displayPreset16":"true","specs.pro-gallery.displayProGallerySEOSettings":"false","specs.pro-gallery.imageEditing":"b","specs.pro-gallery.useWowImageRenderer":"false","specs.pro-gallery.useWarmupData":"true","specs.pro-gallery.enableFullResFeature":"true","specs.pro-gallery.slideAnimationDeck":"true","specs.pro-gallery.useReactPortalInArtStore":"true","specs.pro-gallery.blockOAP":"false","specs.pro-gallery.useServerBlueprints-viewer":"false","specs.pro-gallery.excludeFromThinLinesFix":"false","specs.pro-gallery.excludeFromHlsVideosOnIphone":"true","excludeFromHlsVideosNew":"A","specs.pro-gallery.removeRoleApplication":"true","specs.pro-gallery.tryCentralizedConduction":"false","specs.pro-gallery.organizeMediaMultiTypes":"true","specs.pro-gallery.useServerBlueprints-preview":"false","specs.pro-gallery.displayPreset15":"true","specs.pro-gallery.enableVideoPlaceholder":"true","specs.pro-gallery.organizeMediaAltText":"b","specs.pro-gallery.overlayDesign":"true","specs.pro-gallery.shouldUseVirtualization":"true","specs.pro-gallery.disableImagePreload":"true","specs.pro-gallery.excludeFromPrerenderPerformance":"false","specs.pro-gallery.appSettings":"true"},"b976560c-3122-4351-878f-453f337b7245":{"specs.profilePageBoB.EnablePageLoadErrorState":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.RemoveAdditionOfGlobalControllerInV3":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.membersAreaV2.SyncDataWithMenuItems":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.SplitInstallation":"true","specs.profilePageBoB.EnableCSSIndicators":"true","specs.profilePageBoB.EnableCustomSausageBarConfig":"true","specs.membersArea.AddWidgetsPluginsResilience":"true","specs.membersArea.installedWidgetsFromRoutes":"true","specs.membersAreaV2.UseSyncDeleteActions":"true","specs.profilePageBoB.Enable404SeoStatusCode":"true","specs.membersArea.EnableSausageBar":"true","specs.profilePageBoB.EnableFFLightboxErrorState":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.profilePageBoB.UseNewErrorPageRedirectFlow":"false","specs.membersArea.EnableUnifiedManager":"true","specs.profilePageBoB.VerticalDeletionRemoveRefreshApp":"true","specs.membersAreaV2.fasterMemberFetching":"true","specs.membersArea.OptimizeViewedMemberRolesFetch":"true"},"1505b775-e885-eb1b-b665-1e485d9bf90e":{"specs.stores.UseLatestSubdivisionsClient":"true","specs.addresses.myAddressA11yFix":"true"},"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":{"loginSocialBarBuyAgain":"B","specs.ping.membersAreaUseNotificationsV2Api":"true","specs.membersArea.addStandalonePageRoutesToPublicAppData":"true","specs.membersArea.useScalableDimensionsForLoginBarOnE3":"true","specs.membersArea.addNavigationIntentParams":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.membersArea.enableAppData":"true","specs.membersArea.normalizeMenuItemsLinkMetaData":"true","specs.membersArea.APIRaceConditionHandling":"true"},"14dbef06-cc42-5583-32a7-3abd44da4908":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.ricos.newFormattingToolbar":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersAbout.EnableWDSPanels":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.wixRicos.withWixStyles":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.ricos-server.resolveParentPagePath":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersAbout.UseResponsivePostsCover":"true","specs.membersAbout.UseNewPostsCoverDefaults":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersAbout.EnableAboutContainerStyles":"true","specs.membersAboutOOI.DisableButtonOnPublish":"true","specs.ricos.enablePages":"true","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.ricos.enableSmartBlock":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersAbout.EnableAccessibleRCE":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.membersAbout.EnableAboutMiddleware":"true","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersAbout.EnableCSSIndicators":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersAbout.EnableHtmlTagSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"dataBinding":{"specs.wixDataViewer.NewCoreImageStaticBinding":"false","specs.wixDataViewer.useGetForSchemaBulk":"false","specs.wixDataViewer.fetchOnlyConnectedFields":"true","specs.wixDataViewer.deferredIsDead":"true","specs.wixDataViewer.NewCoreFormatters":"false"},"14cffd81-5215-0a7f-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.ChangeLoginInfo":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.myAccount.EnablePhoneNumberValidation":"true","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.myAccount.EnableCSSIndicators":"true","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.myAccount.EnableDatePickerStyling":"true","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.myAccount.EnableHtmlTagSettings":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.myAccount.EnableMyAccountMiddleware":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.myAccount.EnableUrlEditNote":"true","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.myAccount.ShowButtonTextSetting":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.myAccount.EnableDesignTabResetButtonPerPage":"true","specs.myAccount.EnableLoginAndAddressInTextsTab":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.myAccount.EnableWDSPanels":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.myAccount.EnableAllSubdivisionsInAddressForm":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"215238eb-22a5-4c36-9e7b-e7c08025e04e":{"specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.UseAddToCurrentCart":"true","specs.stores.AddTrackDataOnAddProducts":"true","specs.stores.AwaitTrackAddToCartEvent":"true"},"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":{"specs.ping.errorHandlerInUou":"true","specs.ping.MAPreferences.useMAWidgetPluginService":"true"},"14c92d28-031e-7910-c9a8-a670011e062d":{"migrateThumbnailToWDS":"A"},"14ce1214-b278-a7e4-1373-00cebd1bef7c":{"specs.forms.EnableFormsInBlog":"true"},"14bcded7-0066-7c35-14d7-466cb3f09103":{"specs.wixBlog.ImportFromWordPressInsideMenu":"false","specs.wixBlog.FixMultipleColors":"true","specs.media.MediaManager3":"true","specs.wixBlog.CollectMetrics":"false","specs.ricos.newFormattingToolbar":"true","specs.wixBlog.RemoveBlocksPostPage":"false","specs.wixBlog.UseWarmupStateInOldPostPage":"false","specs.wixBlog.PreInstalledAuthorChanged":"true","specs.wixBlog.UseBlogSettingsAllPostsFeedLabels":"true","specs.wixBlog.BlogSausageMenu":"false","specs.wixBlog.SausageMenuFeed":"false","specs.wixBlog.BMMergePendingReviewTab":"false","specs.wixBlog.ImportUseDraftPostApiProxy":"true","specs.wixBlog.NewBlogPostComment":"false","specs.wixBlog.DontCallDbOnBadSlug":"false","specs.wixRicos.withWixStyles":"true","specs.wixBlog.UseWarmupStateInPostList":"true","specs.wixBlog.UseWarmupStateInNewPostPage":"true","specs.wixBlog.BlockViewCountUpdates":"false","specs.wixBlog.ReturnRichContentInsteadOfDraftJs":"true","draftPostProxyNileRoutingExperiment":"A","specs.ricos-server.resolveParentPagePath":"true","specs.wixBlog.HashtagPageUseFeedPage":"true","specs.wixBlog.PostRatings":"true","specs.wixBlog.DisplayPostComposerError":"false","specs.wixBlog.ScrollPostListToTop":"true","specs.wixBlog.PreInstalledPostSubmittedForReview":"true","specs.ricos.enablePages":"true","specs.wixBlog.UseBlogPermissionCacheService":"true","specs.blogImporter.EnableRollbackOfMigrationsBM":"false","specs.wixBlog.UseWarmupStateInFeed":"true","specs.wixBlog.UseLayoutFixer":"true","specs.forms.EnableFormsInBlog":"true","specs.wixBlog.DisableBlogInjectGenie":"false","specs.wixBlog.UseTranslationCreditsApi":"true","specs.membersArea.BlogCommentsFromCommentsSerivice":"true","specs.wixBlog.LiveSiteEditorDeprication":"true","specs.ricos.enableSmartBlock":"true","specs.wixBlog.UseFilesusrDomain":"false","specs.wixBlog.UsePromptHubForImageGeneration":"true","specs.wixBlog.SettingsFromParastorage":"false","specs.wixBlog.NewBlogPostPublishedAutomation":"true","specs.wixBlog.UseBlogLikeNinjaService":"true","specs.wixBlog.BMManagePendingReviews":"true","specs.wixBlog.PreInstalledPostSubmissionStatus":"true","specs.wixBlog.EnableDiscoveryIngestion":"true","specs.wixBlog.UseAiServiceCreateDraftPost":"true","specs.wixBlog.UseVisitorPrimaryLocale":"true","specs.wixBlog.PreInstalledScheduledPostPublished":"true"},"1484cb44-49cd-5b39-9681-75188ab429de":{"specs.siteSearch.ChangeSelectedTabInEditorOnEdit":"true","specs.siteSearch.UseWarmupData":"true","specs.siteSearch.NewSearchOnClassicEditor":"true","specs.siteSearch.CSSPerBreakpointIndications":"true","specs.siteSearch.ResponsiveSearchBoxSkin":"true","specs.siteSearch.ShowStudioUpdateFlow":"true"},"1380b703-ce81-ff05-f115-39571d94dfcd":{"ecomShowSubdivisionSelectorWithSelectedMethod":"B","specs.stores.MoveCustomUrlApiToSiteStoreConstructor":"true","specs.ecom.SupportManualPaymentsOnPaymentRequest":"false","specs.stores.FixQuickViewNavigationToProductPage":"true","specs.stores.GalleryMigrateRowsToProductsCountViewer":"true","specs.ecom.ShowAdditionalFeesInSideCart":"true","specs.stores.FixVariantIdCalculationInGalleryAddToCartFlow":"true","specs.ecom.ShowMultipleLineItemActions":"true","specs.stores.AddMobileClassesToSliderGalleryRoot":"true","ecomFastFlowRedirectForAllPolicies":"B","ecomNormalizeExpressBillingSubdivision":"B","specs.forms.LocalPhoneNumbers":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.AllowAddToCartButtonOnImageInViewer":"true","fixOosTextLiveUpdateOnStage":"B","specs.ecom.DisplayCheckoutErrorModalsForExpressButtons":"true","specs.stores.FixWishlistControllerConfigType":"true","specs.forms.JapanAutocompleteEnabled":"true","specs.stores.RemoveLoadConfigInProductWidget":"true","ecomCheckoutComposerCartSettingsPanelEntry":"A","specs.stores.ReturnCartIdNullInsteadOfDeprecatedForExpressService":"true","relatedProductsSSRSlugLookup":"B","specs.stores.ShowFromTextOnFullSelectedVariant":"true","specs.stores.EnableDynamicSizeDefaultImage":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.FixNavigationDotsPosition":"true","specs.stores.GalleryFilterChoicesGrouping":"true","specs.stores.ProductPageNewWixCodeApi":"true","specs.stores.ProductPageFixReflowSausageNavigation":"true","specs.stores.ShowAutomaticDiscountDataOnGallery":"true","specs.stores.HideBillingFormForPayPalAndManualNotBrazil":"true","specs.stores.GalleryProductOptionsAndQuantityWidth":"true","specs.stores.ProductPageUpliftProductOptionsViewer":"true","specs.ecom.violationBasedOnDeliveryOption":"true","specs.ecom.FullNameLeafOverrides":"true","specs.ecom.deliveryOptionsSetFirstAsDefault":"true","specs.stores.ShowUserWishlistStateInProductPage":"true","specs.stores.InfoSectionTabsTPAComponent":"true","specs.stores.CombinedListingFetchGroupInfo":"true","specs.stores.ProductPageBreadcrumbsAfterHydration":"true","storesGalleryLoadedPanoramaTransactionSymmetry":"B","specs.ecom.OrdersHideSubscriptionBillingPeriodWhenProductPeriodNotAligned":"true","specs.stores.ZoomableMainMedia":"true","specs.stores.FixQuickViewNavigationToProductPageInPreviewMode":"true","specs.stores.GalleryColorPickerA11yReflowKeyboardFix":"true","fixPPThumbnailSliderNavigation":"B","separateDeliveryComboBox":"B","storesPanoramaTransactionSymmetry":"B","storesAllowExpandFirstInfoSectionsStorefront":"B","ecomHideNonRequiredPrefillBillingFields":"B","fixGalleryVerticalFiltersRoundCorners":"B","specs.ecom.AddSlotToThankYouPage":"true","specs.stores.allowProductPageButtonsOption":"true","specs.stores.TYPUpdateOrderModelWithSubscriptionInfo":"true","specs.stores.FixWishlistPageLiveTextEditing":"true","specs.ecom.separateAdditionalFee":"true","specs.stores.ProductPageMainMediaNavigationArrows":"true","specs.stores.SliderGalleryInfiniteLoopToggleViewer":"true","addProductOptionsToQueryParams":"B","specs.stores.FixProductPageDescriptionReadMore":"true","specs.stores.ProductPageBreadcrumbsDesignViewer":"true","specs.stores.GalleryEditableGridTemplateRepeatOption":"true","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.ecom.EnableBuilderContextProvider":"true","storesFixPricingPrefixLayout":"B","ecomShowEstimateDeliveryOnSubdivisionError":"B","specs.stores.ProductPageRemovePagination":"true","ecomShowTotalSavings":"A","specs.stores.AddHasDiscountToVariantsItemsQueries":"true","specs.stores.FixVerticalThumbnailsPosition":"true","usePickupFormattedAddress":"B","specs.stores.FixCheckoutAddressTemplateMandatoryZipCode":"true","specs.stores.FixVariantIdCalculationInBuyNowFlow":"true","specs.stores.OnlineStoresSessionStorageWithTTL":"true","specs.forms.MultilineAddressInTemplates":"true","specs.stores.FixCartIconOnEditor":"true","storesGalleryEmptyStateForDeletedCollection":"B","specs.stores.ResponsiveGalleryMigration":"true","specs.ecom.ShowCrossedOutPriceOnLineItemLevel":"true","specs.stores.GalleryAllowLinkToProductPageInSSR":"true","specs.ecom.MergeExpressDeliveryRateWithHandlingFee":"false","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","storesFixClassicMobileNavigationVisibility":"B","specs.stores.GalleryFixWarmUpDataCacheKeyWithQueryParams":"true","specs.stores.ShowMultiRibbonsInProductPage":"true","specs.ecom.useLocaleForDeliveryTimeSlot":"true","specs.stores.FixAnnounceNotDefinedBug":"true","ecomClearHiddenFieldsBeforeValidation":"A","specs.stores.ShowErrorHandlingToastsGallery":"true","specs.ecom.ShowAllSubscriptionItemNames":"true","optionalModifiersProductPage":"A","specs.ecom.useSelectedDeliveryOptionFallbackInSlotAPI":"true","specs.stores.RefactorFormServiceToCalcExtendedFields":"true","specs.stores.FixQuickViewForSubscriptionsInWishlist":"true","ecomCheckoutHeaderRenderingRefactor":"B","storesProductPageRemoveOptionPreselection":"B","specs.stores.ShowGiftCardAddToCartSettings":"true","specs.stores.PPAlignFontSizeToModernLayout":"true","ecomCheckoutComposerViewer":"B","ecomSplitSubscriptionCheckboxInCheckout":"A","specs.stores.SideCartElementsVisibilityInCss":"true","specs.stores.ProductPageVideoPosterOptimization":"true","specs.ecom.fixGroupedDeliveryOptionSelection":"false","specs.stores.MainMediaWrapperAsAnchorElement":"true","specs.stores.AllowGalleryProductRoundCornersInViewer":"false","specs.stores.productPageMobileSettings":"true","specs.stores.ResponsiveEditorBreadcrumbsToggle":"true","specs.stores.GalleryFixSideFiltersShrink":"true","specs.stores.SupportFreeTrialTYP":"true","usingStoresViewerScriptAddToCart":"A","specs.stores.FixFilterKeySpecialCharacter":"true","specs.stores.StorefrontLegacyEnablePanoramaIntegration":"true","specs.ecom.RevampDiscountsInCartAndCheckout":"true","specs.stores.ProductNameHtmlTag":"true","specs.stores.UseUndefinedAsDefaultBillingAddressInCheckout":"true","specs.stores.GalleryA11yReflowFilterModalFix":"true","specs.stores.EnableDiscountAndRegularPriceSwapViewer":"true","specs.ecom.CartItemQuantityBadge":"true","specs.stores.ShowWishlistInGallery":"true","ecomShowReducedDiscountAmount":"A","specs.stores.ProductPageDescriptionToggle":"true","specs.ecom.ShowVoidedErrorMessage":"true","ecomUseMembershipOverSelectedMembership":"B","ecomUseFullUrlInCartItemLink":"B","specs.stores.UseOpenSideCartApi":"true","specs.stores.ShowAutomaticDiscountDataOnProductPage":"true","specs.stores.ProductPageWaitForWarmupData":"true","specs.stores.ProductMediaNavigationDots":"false","specs.stores.UseNewSubscriptionView":"true","specs.ecom.FixCheckoutButtonAriaLabel":"true","ecomCheckoutComposerCartIconSettingsPanelEntry":"A","fixAddToCartPanoramaFinishBeforeNavigation":"B","specs.forms.FixControllerActions":"true","specs.stores.UseCartV2ForDirectPurchase":"true","specs.ecom.SupportSkipCheckout":"true","specs.ecom.ImprovePerformanceByParallelPromises":"true","specs.stores.GalleryAddMissingAddProductImpressionEvent":"true","specs.stores.ProductPageUplift":"true","specs.stores.ProductPageUpliftNewFeaturesSF":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageUpliftProductOptions":"true","ecomCartNativeCssVars":"A","specs.stores.SubscriptionPlanNewDesign":"false","specs.stores.AllowGalleryIntervalNavigation":"true","specs.stores.navigateToRelativeUrlWithCustomizedUrl":"true","specs.stores.enableUnitedStatesMilitaryAddresses":"true","ecomAlignLineItemCouponsInExpressCheckout":"B","optionalModifiersGallery":"A","specs.stores.StickyAddToCartMobile":"false","updateDisableContinueButtonSlotAPI":"B","specs.stores.FixProductPageDropdownMobileSsr":"true","specs.ecom.showPriceWithFreeShippingCoupon":"true","ecomPlanAndBookInPurchaseFlow":"A","specs.stores.GalleryStoreExtractSEO":"true","specs.stores.ProductPageWishlistTrackEvent":"true","specs.stores.ProductPageSsrInvalidationTags":"true","specs.ecom.HandleMembershipCalculationError":"true","specs.stores.StorefrontSwatchImages":"true","specs.ecom.CheckoutComposerSideCartSettingsPanelEntry":"false","specs.stores.ConfigureGalleryViewStates":"true","storesShowHiddenVariants":"A","specs.stores.GalleryProductItemCarouselHover":"true","specs.ecom.UpdateCartOnBillingFieldsChange":"true","specs.ecom.FixCartNavigationOnPreview":"false","specs.stores.FixPPTotalSwiperSizeCalc":"true","specs.stores.GalleryWaitForWarmupData":"true","specs.stores.FixMigratedAllProductsInManualCategoryList":"true","specs.stores.FixMultilingualTextInSF":"true","ecomCartValidationsInPurchaseFlow":"B","specs.stores.ShowPromotionsInGallery":"true","specs.stores.Set404ForSeoWhenPageHasNoProducts":"true","specs.stores.SliderGalleryFixSwiperIndex":"true","specs.stores.SupportMitEnabledFieldInCheckoutPage":"true","specs.ecom.CouponAlignmentInCartAndCheckout":"true","specs.stores.ConfigureSlotsInEditorSDK":"true","specs.stores.FixPPAddToCartButtonTextKeyPriority":"true","specs.ecom.useFallbackInPreviewLoader":"true","specs.stores.GalleryProductOptionsLimit":"true","specs.stores.ProductPageSlots":"true","specs.ecom.CheckoutNewPhoneAndFullNameFields":"true","specs.stores.newClearFiltersHoverState":"true","specs.stores.UseGalleryNewApplyFilterQueryParams":"false","specs.ecom.CheckoutComposerSuccessPopupSettingsPanelEntry":"false","specs.stores.tpaRouterShouldQueryProductsV3":"true","ecomShowFreeShippingCouponPlacementInCart":"A","specs.ecom.showDeliveryOptionPreviewError":"true","specs.ecom.AddDiscountDataToTYPOrderQuery":"true","specs.stores.ProductPageConsumePublicDataFromBothScopes":"true","specs.stores.ShowMultiRibbonsInGallery":"true","specs.ecom.OrderPlatformFeesUoU":"true","storesFTGalleryEnableLoadMoreHoverUnderline":"A","specs.forms.EnableNewPhoneFieldValidation":"true","ecomUseCartEstimationIndicators":"A","specs.stores.GallerySeoTags":"true","fixPPUrlDoubleDecoding":"B","storesPreselectSubscriptions":"B","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","ecomFixCartIconHeaderSpacing":"A","specs.stores.AllowStickySidebarInViewer":"true","specs.stores.ProductPageLocationOnChangePathChangeForEditorSausage":"true","ecomExpressCheckoutBreakdownFromDeliverySummaryAndDiscounts":"B","specs.stores.SubscriptionPlansNewDesignViewer":"true","specs.stores.AllowAddToCartButtonContentTypesInViewer":"true","ecomCheckoutWebviewPaymentInCustomTab":"A","specs.ecom.OrdersModifiers":"true","specs.ecom.loadDeliverySectionsDataOnReadOnly":"true","specs.stores.PPNavigationSectionPerBreakpoint":"true","ecomCheckoutBrandStyling":"A","specs.stores.UseStoreLanguageForTranslations":"false","ecomShowCodeSectionWhenApplied":"A","specs.ecom.CallCartV2FromExpressCheckout":"true","specs.stores.EnableOutOfStockAlignment":"true","specs.stores.GalleryStoreExtractBI":"true","specs.forms.EnablePhoneField":"true","specs.stores.UseNewQueriesOnWishlistWithDiscount":"true","specs.stores.UseExperimentsFromPlatformFlowApiLegacyProjects":"true","specs.ecom.ShowMultipleSubscriptions":"true","specs.stores.FixBackInStockButtonValidation":"true","ecomInlineAddressSelectionInCart":"B","specs.stores.FixGalleryNotToShowQueryPageFor1":"true","ecomCartSkeletonColor":"B","ecomCheckoutComposerSettingsPanelEntry":"A","specs.ecom.hideShippingOptionAvailibilityBadgeOnMobile":"true","specs.ecom.OpenSuccessPopup":"true","specs.ecom.HideMissingLineItemImagesInPaymentRequest":"true","specs.stores.FixProductPageMediaCentering":"true","ecomUseLineItemDiscountsInExpressCheckout":"B","specs.stores.GalleryProductOptionsAndQuantityRoundCornersInViewer":"true","specs.stores.GalleryFixOutOfBoundsPageParam":"true","specs.stores.RenderSlotsInGallery":"true","specs.stores.SwitchLocalStorageToSessionStorageInGalleryNavigationToPP":"true","specs.ecom.StopSendingOriginInCheckoutUrl":"true","specs.stores.PriceFilterClientTicksCalculation":"false","chooseSourceCategoryGalleryAction":"B","specs.stores.UseNewQueriesWithProductDiscount":"true","specs.ecom.DontHandleCheckoutNotAllowedInCart":"true","galleryParallelFiltersAndProductsFetch":"B","specs.stores.MobileImageRatio":"false","specs.ecom.TaxExemptionOnTYP":"true","gridGalleryReorderGfpp":"A","specs.stores.CustomTextDesignViewer":"true","specs.stores.ResponsiveTYPCss":"true","specs.stores.UseGetClientConfigFromPublicApi":"true","specs.stores.ShouldSplitBillingInfoPrefill":"true","storesGraphQlSubscriptionDiscount":"B","specs.stores.UseExperimentsFromPlatformFlowApi":"true","specs.ecom.UsePaymentRequestTitleInThankYou":"true","specs.stores.FixPreviewCustomProductUrlSlug":"true","specs.stores.ShouldShowFirstProductOptionInGallery":"true","specs.stores.FixProductPageHydrationError":"true","specs.stores.GalleryColorOptionAlignment":"true","specs.stores.AllowGalleryFreeModeNavigationInViewer":"true","specs.stores.EnableQualityOptionsStylingChanges":"false","specs.stores.AddingOverflowHiddenToFilterTitleMobile":"true","specs.stores.ProductPageSupportGridLayout":"true","specs.stores.UseProductLineItemFromTYP":"true","ecomCartLineItemUpsells":"B","specs.stores.AddSliderGalleryTitleToGlobalPropsContext":"true","specs.stores.AdditionalRibbonsFieldGraphQL":"true","specs.stores.FixPPMainImageOverflow":"true","specs.stores.FixProductPageHistoricalBreadcrumbsStyleParams":"true","specs.ecom.FixCartCountOverlap":"true","ecomExpressCheckoutFromViewerScript":"A","specs.stores.EnableWarmUpDataCaching":"true","storesMobileGalleryFiltersDesignSettings":"B","galleryHideEmptyOptionFilters":"B","specs.stores.FixGalleryRenderingWhenUrlChanges":"false","specs.stores.ExtendPlaceOrderDeadline":"true","specs.stores.CheckoutPagePreviewEnabled":"true","specs.stores.RemoveLoadConfigInAddToCart":"true","ecomSupportNewlineInDeliveryInfo":"B","specs.ecom.useLocaleForDatePicker":"true","specs.ecom.paymentErrorNoCountryHandling":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","storesStickyAddToCart":"B","specs.stores.ProductPageRicoDescription":"true","specs.ecom.FixZoomCheckoutPolicesA11y":"true","specs.stores.CategoryPageFooterDescriptionSF":"true","ecomFixCartIconSpacebarActivation":"B"},"675bbcef-18d8-41f5-800e-131ec9e08762":{"specs.wixCode.LoadWithImportAMDModule":"true","specs.wixCode.LoadNamespacesPerPage":"false","specs.wixcode.ViewerExperimentOwnerScopeTest":"true","specs.wixCode.resolveMissingPlatformNamespaces":"false","specs.wixcode.ViewerExperimentTest":"false"},"14ce28f7-7eb0-3745-22f8-074b0e2401fb":{"specs.UouSubscriptionServiceUseApiGatewayClient":"true","specs.ident.shouldInstallIdentityAuthAppStudio2":"true","specs.membersArea.DoNotWaitInstallNavigation":"true","specs.membersArea.UseMembersNgApiUpdate":"false","specs.members.FollowersAudienceProvider":"false","specs.media.MediaManager3":"true","specs.membersArea.showCascadingIndicators":"true","specs.membersArea.HideMemberSortField":"true","specs.profileCardOOI.MakeProfileCardRemovableInNewMA":"true","specs.membersArea.DisableLivePreviewRefreshes":"true","specs.membersArea.CheckUserContributorPermissions":"true","specs.profileCard.EnableHtmlTagSettings":"true","specs.membersArea.CheckIsAppActiveBeforeInstallV1":"true","specs.membersArea.UseGetMyMemberInMemberHandler":"true","specs.membersArea.EnableMembersAreaContextCheck":"true","specs.profileCardOOI.NewResetSettings":"true","specs.membersArea.AddSuspendedFilter":"true","specs.membersfollow.ActivityCounters":"true","specs.membersArea.ShowPageRedirectNote":"true","specs.membersArea.ExtendedUninstallMASubApps":"true","specs.membersArea.UseViewedMemberBlocked":"true","specs.membersArea.UseFollowersV3":"true","specs.members.enableMuteMembersSkill":"true","specs.myAccount.ShowBlockedMembersModalEmptyState":"true","specs.membersArea.enableTimeoutLogs":"false","specs.membersArea.GetRoutesUseGlobal":"true","specs.membersArea.ShouldOpenPropertyInDevCenter":"false","specs.membersApi.UseProfilesApiForTitleAndCoverWrites":"true","specs.profileCardOOI.UseMiddlewareForGlobalSettingsGetter":"true","specs.membersArea.EnableLoginBarComponentExtension":"true","specs.members.enableUpdateCustomFieldSkill":"true","specs.membersArea.ShowNewFFBorderSettings":"true","specs.membersArea.AddNotificationsIconOnV2":"true","specs.membersArea.AllowInstallingProfileE3":"true","specs.members.enableHideCustomFieldSkill":"true","specs.members.LogUpdateMemberRequest":"false","specs.membersArea.installationSourceOfTruth":"true","specs.membersAreaV2.HidePermissionsPanelOnPrivateMA":"false","specs.responsive-editor.NoMeasureInstall":"true","specs.members.enableDeleteCustomFieldSkill":"true","specs.membersArea.SkipTemplateHandlerForSettings":"false","specs.membersArea.UsePopoverDynamicPositioning":"true","specs.membersArea.MemberHandlerUseMembersNgApi":"true","specs.membersArea.EnableMyAccountParallelInstall":"true","specs.profileCardOOI.UseMiddlewareForMemberGetter":"true","specs.membersArea.UseMembersNgApi":"true","specs.ident.shouldInstallIdentityAuthAppEditor3":"true","specs.membersArea.DoNotCreateTeamMember":"false","specs.membersArea.NotificationsIconFixerOnV2":"true","specs.profileCardOOI.EnableAvifEncoding":"true","specs.membersArea.ConsumeMembersPiiExchangeDomainEvents":"true","specs.membersArea.ShowMoreMembersWithBadge":"false","specs.membersArea.AddRevisionField":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV2MenuItems":"true","specs.membersArea.AddManageMemberAccessAction":"true","specs.membersArea.EnableTpaPageLinksDataFixerForV3MenuItems":"true","specs.membersArea.EnableDependencyInstallationCheck":"true","specs.ident.SiteMembersSocialDisclaimer":"true","specs.ident.shouldInstallIdentityAuthAppV3":"true","migrateDisconnectedLoginBars":"B","specs.profileCardOOI.EnableProfileAlignmentCssVars":"true","specs.membersArea.UseQueryMembersTextSearch":"true","specs.membersAreaV2.EnablePageInfoPanelCustomPage":"false","specs.profileCardOOI.usePlaceholderLoaders":"true","specs.membersArea.SkipRolesSyncOnMemberCreated":"true","specs.profileCardOOI.UseBlockedCheckFollowButton":"true","specs.myAccount.showBlockedMembersModalRedesign":"true","specs.membersArea.MetaSiteSpecialConsumerV2":"true","specs.members.enableUnmuteMembersSkill":"true","specs.membersArea.UseMembersAboutV2":"true","specs.members.enableCreateBadgeSkill":"true","specs.profileCard.HideMessageButtonForNonSocialChatUsers":"false","specs.membersArea.HideSuspendedLabelForNonOwners":"true","enableNewThumbnailSkinsForMembersAreaPanels":"A","specs.membersArea.UseApplyChangeToAllLanguagesForMaV2":"true","specs.membersArea.SortByNumbersInElastic":"true","specs.myAccount.ShowPrivacySettingsMessageForSiteOwners":"true","specs.profileCardOOI.showNewNotificationsContent":"true","specs.membersArea.UninstallMASubApps":"true","specs.membersArea.UseAppDataForRoutes":"true","specs.membersArea.CreateMissingMember":"true","specs.membersArea.EnableMenusDataFixer":"true","specs.members.usePlatformizedServicesForUpdate":"true","specs.badges.shouldUseBadgesV3InEdm":"true","specs.membersArea.HideSuspendedLabelForNonOwnersFFBox":"true","specs.ident.shouldInstallIdentityAuthAppV2":"true","specs.profileCardOOI.EnableCSSIndicators":"true","specs.membersArea.EnableMemberPagePermissions":"false","specs.membersArea.UseIsPermittedOnMediaCredentials":"true","specs.profileCardOOI.UseMiddlewareForRolesMapGetter":"true","specs.membersArea.fixLoginBarResponsiveLayout":"true","specs.membersArea.EnableV2SilentInstall":"true","specs.profileCard.UseMigratedEditor3StylesParams":"true","specs.membersArea.EnableInstallationTimeout":"false","specs.members.enableManageMemberPrivacySkill":"true","specs.membersAreaV3.ReAddPageWorkaround":"true","specs.membersArea.OptimizeVerticalDeletion":"true","specs.membersArea.EnableFollowersAsLightbox":"true","specs.membersArea.UseGetOrCreateMemberV2":"true","specs.members.enableCreateCustomFieldSkill":"true","specs.membersArea.migrateToV2":"false","specs.membersArea.ClearSettings":"true","specs.membersArea.ShowHeadingLevelSettings":"true"},"a0c68605-c2e7-4c8d-9ea1-767f9770e087":{"specs.stores.ProductPageBlocksAddToCartWithSubscription":"true","specs.stores.FixPriceElementsPanelMultilingual":"true","specs.stores.SendSubcategoriesSeoDataSF":"true","specs.stores.ProductPageBlocksUpdateBreadcrumbsAfterHydration":"true","specs.stores.ProductPageBlocksRenderOnDeviceViewChanged":"false","spec.stores.CashierBannerEditorXBugFix":"true","specs.stores.ProductPageBlocksRemoveModifiersFromUserInput":"false","specs.stores.ProductPageBlocksFixMobileInstallation":"false","specs.stores.FetchLocaleFromWixCodeApi":"true","specs.stores.ShouldOpenSideCart":"true","specs.stores.ProductPageBlocksAddToCartByVariantId":"true","specs.stores.ProductPageSlotsAddMoreProps":"true","specs.stores.AddDiscountsToVariantsItemsQueries":"true","specs.stores.ProductPageBlocksFixNegativeInventoryError":"true","specs.stores.ProductPageBlocksNonControlledDropdown":"true","specs.stores.shouldCheckDiscountVariantLevelPPOB":"true","specs.stores.ProductPageBlocksOptionButtonsPanels":"true","specs.stores.ProductPageBlocksOptionButtonsUoU":"true","specs.stores.PPOBCustomTextDebounce":"true","specs.stores.ProductPageBlocksWaitForWarmupData":"true","specs.stores.ProductPageBlocksCtaTrackEvents":"true","specs.stores.ProductPageBlocksNoNavigationDuringInstallation":"true","specs.stores.ProductPageBlocksDefaultInfoSectionBehavior":"true","specs.stores.PPOBUseStoresViewerScriptPublicAPI":"false","specs.stores.ProductPageBlocksBuyNowWithCreateCart":"true","specs.stores.ProductPageBlockMS3":"true","specs.stores.tpaRouterShouldQueryProductsV3":"true","specs.stores.ProductPageBlocksEnablePanoramaIntegration":"true","specs.stores.PPOBCreateCheckoutFromPublicApi":"true","specs.stores.ProductPageBlocksFixAddToCartOnSecondaryLang":"true","specs.stores.ProductPageBlocksEnableRicoForSeoTags":"true","specs.stores.ProductPageBlocksPreloadCarts":"false","specs.stores.UseGetClientConfigFromPublicApiPPOB":"false","specs.stores.ShowAutomatedDiscountOnProductPageBlocks":"true","specs.stores.ProductPageBlocksAddToCartWithTrackData":"true","specs.stores.shouldQueryV3TpaSiteStructure":"true","specs.stores.OnlineStoresCurrencyClientFormatting":"true","optionalModifiersBlocksProductPage":"A"},"13d21c63-b5ec-5912-8397-c3a5ddb27a97":{"respectTimezoneSettingsInDailyAgenda":"B","specs.bookings.PreventDoubleBookingCourse":"true","specs.bookings.WdsMyBookingsSettings":"true","specs.bookings.stripLayoutMultiColumn":"true","specs.bookings.AddBookingMadeEvent":"true","specs.forms.LocalPhoneNumbers":"true","specs.bookings.serviceListMenuLayout":"true","specs.bookings.TimezoneAwareSlotMatching":"true","specs.bookings.paidByClasspassIndication":"true","fixPayNowPriceForUsersWithPlans":"B","specs.bookings.idanExperimentTest":"true","enableStaffMemberNameServiceList":"A","specs.bookings.AlignDateAndTime":"true","specs.bookings.StaffQueryParamInCalendar":"true","specs.bookings.CalendarIntervalsImprovement":"true","specs.bookings.MyBookingsCssPBPIndication":"true","specs.bookings.wdsCalendarWidgetSettings":"true","specs.bookings.msaNotPartOfBlockNavigation":"true","specs.bookings.DeepLinkAddonsUOU":"false","specs.bookings.daily-agenda.staff-image-view":"true","specs.bookings.UoUMultiLocationV1":"true","specs.bookings.members-area-lazy-load":"true","specs.bookings.serviceDetailsWdsMigration":"true","specs.bookings.KibanaInfoLogs":"false","specs.bookings.TimezoneIndicatorImprovementCalendars":"true","specs.bookings.SessionsPaginationServiceDetails":"true","specs.bookings.AddonsAndPlanOnlyUOU":"true","specs.bookings.SitePropertiesFacadeMigration":"true","specs.bookings.filterCalendarStaffByLocation":"true","specs.bookings.consultants.dynamicPricingPerStaff":"true","bookingsCalendarOOIflowDataInUrl":"A","specs.ImagePixelDensityFactorSpecs":"1.5","specs.bookings.EcomRendererHidePriceForMembershipAndFree":"true","specs.bookings.consultants.dynamicPricingCustom":"true","specs.bookings.RemoveViewPricingFromCalendarSettings":"true","specs.bookings.migrateServiceDetailsToStyleParm":"true","bookForSomeoneElseUou":"B","specs.bookings.OutOfModalScrollFix":"true","specs.bookings.ShowUnavailableSlotForm":"true","specs.wossm.EnableMultiLocation":"true","specs.bookings.calendarFixLoadingButtonSize":"true","pricingPlansMultiplePricingVariants":"A","specs.bookings.BookAnotherText":"true","specs.bookings.agendaWarmupDataForServices":"true","specs.bookings.initSlotsToShow":"true","specs.bookings.SubscriptionPricingUoU":"true","specs.bookings.AddPaymentAmountToCashier":"true","bookingsPlanAndBook":"A","specs.bookings.RedesignA1":"true","specs.bookings.AdditionalTimeSlotsInFormPlugin":"true","servicesPreferencesModalAppendToBody":"B","specs.bookings.updateFemToWixFormsPopulation":"false","specs.bookings.ClearButtonAnyStaffMember":"false","specs.bookings.ResetNavigatingStatusOnBack":"true","specs.bookings.FormAddH1HeaderForA11y":"true","specs.bookings.DeprecateCatalogServicesSlotAvailability":"true","specs.bookings.agendaWarmupDataForStaffMembers":"true","specs.bookings.servicesPagesBreadcrumbs":"true","specs.bookings.WixFormsMigration":"true","specs.bookings.timeQueryParamAutoSelect":"true","specs.bookings.supportServicesChoices":"false","specs.bookings.removeReschedulePricingPlanCheck":"true","specs.bookings.Editor3":"true","specs.bookings.DisableOldMembersArea":"true","specs.bookings.UouZoomV2":"true","specs.bookings.ServiceListNumOfSpotLeftFix":"false","specs.bookings.ShowPriceTextInFormIfServiceIsWithPPAndCustomPrice":"true","specs.bookings.addNotificationTogglesToBoxes":"true","specs.bookings.migrateCalendarSettingsToServicesV2":"true","specs.bookings.warnOnShowAllServicesFilterOption":"true","blockBuyPlanWhenNoAvailablePlansUoU":"B","specs.bookings.CalendarAndServiceListShowDiscount":"false","specs.bookings.removeExtraReloadCalendar":"true","specs.bookings.HandleMembershipErrorInCheckoutUoU":"true","specs.bookings.allowDiscountForBookingItems":"true","specs.bookings.TimezoneIndicatorImprovementOfferingPage":"true","specs.DevCenter.IncludeAppointmentWaitlistInSSR":"true","specs.bookings.BookOnBehalf":"false","specs.bookings.warmupDataCachingForCalendar":"true","specs.bookings.showServicesPage":"true","specs.bookings.OnConfirmationPageRemoveScheduleForCourse":"true","specs.forms.FixControllerActions":"true","specs.bookings.removeCategoryQueryParamOnNavigation":"true","relatedProductsOnServices":"A","specs.bookings.servicesPerLoadInServiceListSettings":"true","specs.bookings.ResetNavigatingStatusOnServicePage":"true","specs.bookings.UserTimezoneFirstSlotWithDifferentWeek":"true","specs.bookings.FiveNines":"false","specs.bookings.ShouldDisplayTaxAddressField":"true","specs.ValidateBookingCongratulationsSpecs":"true","specs.bookings.AppBuilderUseServicesV2":"true","specs.bookings.FormEditorKBContent":"false","formBfcacheStatus":"B","specs.bookings.MyBookingsShowFormSubmission":"true","specs.bookings.translatePages":"false","specs.bookings.CalendarFailedErrorMessageUOU":"true","specs.bookings.FixApplyingCouponExperience":"true","specs.bookings.UoUMultiLocationAllLocations":"true","specs.bookings.AccessibilityImprovements":"true","showSlotMoreDetailsOnMobile":"B","specs.bookings.PaymentMethodRadioButtons":"true","specs.bookings.useBookingsViewerCache":"false","specs.bookings.useQueryEventsInServicePage":"true","specs.bookings.FormUseAutomationsForSMS":"true","specs.bookings.UOUIntakeFormsIntegration":"true","specs.bookings.SingleLineItemPreviewPrice":"true","specs.bookings.RescheduleDefaultLocation":"true","specs.bookings.calendar-summary":"true","specs.bookings.ServiceV2ServicePage":"true","specs.bookings.CheckIsMemberAreaInstalledUsingPublicAPI":"true","specs.bookings.fetchOnlyTenStaffMembers":"false","specs.bookings.RemovePPErrorMessageUponLoginInMobile":"true","specs.bookings.BookingsFormWDS":"true","specs.bookings.CancellationFeesUoU":"true","specs.bookings.daily-agenda.display-preferences.categories-filter":"false","dailyAgendaReadMoreLink":"A","specs.bookings.calendarA11YChanges":"true","specs.bookings.BookFlowSettings":"true","specs.bookings.AllDayMultiDayEvents":"true","specs.bookings.daily-agenda.settings-preferences.custom-location-filter":"true","specs.bookings.updateFemToWixForms":"true","specs.bookings.noTpaSettingsProviderInList":"true","collectParticipantFormUou":"A","specs.bookings.AddParticipantShortcut":"true","bookingsUseEcomCartV2":"B","specs.bookings.bookAgainController":"true","specs.bookings.DemoBookingFlow":"false","specs.bookings.CartConflictEnableSlotsTimezoneConversion":"true","spec.bookings.owner-fes.DeprecateCatalogWriter":"false","specs.bookings.agendaServiceFilterByLocationSettings":"true","specs.bookings.bookButtonDestination":"true","specs.bookings.fetchTabsInServiceList":"true","specs.bookings.AnonymousReschedule":"true","specs.bookings.A11YCalendarLabel":"true","specs.bookings.migrateUoUAvailability2":"true","specs.bookings.ServiceListWdsMigration":"true","enableStaffMemberNameInServiceList":"A","specs.bookings.removeSkipPreferencesModalParam":"true","specs.bookings.FormPaymentOptionNewDropdown":"true","specs.bookings.allowRescheduleWithDynamicPricing":"false","specs.bookings.BookOnlyOneSlotUsingPP":"true","specs.bookings.CheckForExistingBooking":"true","specs.bookings.withErrorHandlerCheckout":"true","spec.bookings.owner-fes.RemoveOldEndpoints":"true","specs.bookings.UseQueryBySessionStartForContactBookings":"true","specs.bookings.EnforcePolicyOnCourse":"true","specs.bookings.DynamicPricingResilientUOU":"false","specs.bookings.UseGetAvailabilityForCourse":"true","specs.bookings.RemoveCalendarLinkFromBookingsCheckoutSettingsPanel":"true","specs.bookings.DetachNumberOfParticipantsFieldFromForm":"true","supportDateAndNumOfParticipantsVariantsUoU":"B","specs.bookings.AddonsUOU":"true","specs.bookings.ShowRemainingCourseSessions":"true","specs.bookings.MultiLocationUoU":"true","bookingsUseSkipCheckout":"B","specs.bookings.FormReplaceArray":"true","specs.bookings.ServiceXV3CourseService":"true","specs.bookings.DepositeOrFullAmountUoU":"true","specs.bookings.QueryServicesInBatches":"false","specs.bookings.DatacapsuleMigration":"true","specs.bookings.AlwaysShowComplexPhoneField":"false","specs.bookings.ResilientBusinessInfo":"true","specs.bookings.boMultilocation":"true","specs.wos.KillWixSMS":"false","specs.bookings.fineGrainPermissionsModelWithWOA":"true","specs.bookings.SupportDynamicPricingWithPaymentOptions":"true","specs.bookings.ReportBookingAttemptBlockedAutomationOnly":"true","specs.bookings.AppInstanceOnCashierConfg":"true","specs.bookings.enableCourseDirectNavigationToForm":"true","specs.bookings.FixPricingPlanNavigation":"true","specs.bookings.QueryAvailabilityFromNow":"true","specs.bookings.showWorkingDaysForBookableClass":"true"}}},"forceEmptySdks":false,"appDefIdToIsMigratedToGetPlatformApi":{"14ce1214-b278-a7e4-1373-00cebd1bef7c":false,"675bbcef-18d8-41f5-800e-131ec9e08762":false,"1380b703-ce81-ff05-f115-39571d94dfcd":false,"27fcc256-f3f8-47df-a66a-8f8176cc7f99":false,"a5dd7ce8-07c2-4251-8d58-9657c1a43163":false,"225dd912-7dea-4738-8688-4b8c6955ffc2":false,"14271d6f-ba62-d045-549b-ab972ae1f70e":false,"14bcded7-0066-7c35-14d7-466cb3f09103":true,"1484cb44-49cd-5b39-9681-75188ab429de":false,"7479d596-137c-4fa3-89cd-d7091042ba61":true,"14c92d28-031e-7910-c9a8-a670011e062d":false,"75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":false,"215238eb-22a5-4c36-9e7b-e7c08025e04e":false,"47e245ca-1a42-4d6a-a69a-c125bc839b40":false,"df892fe9-626f-44c9-a328-e29f93880b38":false,"a0c68605-c2e7-4c8d-9ea1-767f9770e087":false,"14cc59bc-f0b7-15b8-e1c7-89ce41d0e0c9":false,"b976560c-3122-4351-878f-453f337b7245":false,"14cffd81-5215-0a7f-22f8-074b0e2401fb":false,"4aebd0cb-fbdb-4da7-b5d1-d05660a30172":false,"14f25dc5-6af3-5420-9568-f9c5ed98c9b1":false,"14f25924-5664-31b2-9568-f9c5ed98c9b1":false,"14dbef06-cc42-5583-32a7-3abd44da4908":false,"14ce28f7-7eb0-3745-22f8-074b0e2401fb":false,"13d21c63-b5ec-5912-8397-c3a5ddb27a97":false,"14517e1a-3ff0-af98-408e-2bd6953c36a2":false,"dataBinding":false}},"appsScripts":{"urls":{},"scope":"page"},"debug":{"disablePlatform":false,"disableSnapshots":false,"enableSnapshots":false},"isBuilderComponentModel":false}},"siteFeatures":["accessibilityBrowserZoom","appMonitoring","assetsLoader","businessLogger","captcha","clickHandlerRegistrar","clientSdk","commonConfig","componentsRegistry","consentPolicy","cookiesManager","customCss","cyclicTabbing","domSelectors","domStore","dynamicPages","environmentWixCodeSdk","environment","externalServices","lightbox","locationWixCodeSdk","mpaNavigation","multilingual","navigationManager","navigationPhases","ooi","pages","panorama","protectedPages","renderer","reporter","routerFetch","router","scrollRestoration","seoWixCodeSdk","seo","sessionManager","siteMembersWixCodeSdk","siteMembers","siteScrollBlocker","siteWixCodeSdk","speculationRules","ssrCache","stores","structureApi","thunderboltInitializer","tpaCommons","translations","usedPlatformApis","warmupData","windowMessageRegistrar","windowWixCodeSdk","wixCustomElementComponent","wixEmbedsApi","componentsLoader","componentsReact","platform"],"experiments":{"specs.thunderbolt.DisableSentry":true,"specs.thunderbolt.cmsDprNamedQueryParam":true,"specs.thunderbolt.viewport_hydration_extended_react_18":true,"specs.thunderbolt.inMemoryPaypalAuthToken":true,"specs.thunderbolt.roundBordersInResponsiveContainer":true,"specs.thunderbolt.PanoramaErrorMonitor":true,"specs.thunderbolt.userAsFactory":true,"specs.thunderbolt.getMemberDetailsFromMembersNg":true,"specs.thunderbolt.UseEEImpress":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.promote.ar.reportRestPurchaseEventsInsteadOfKafka":true,"specs.thunderbolt.sendBiInlightbox":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.fixDisabledLinkButtonStyles":true,"specs.thunderbolt.UseEcomFemBi":true,"specs.thunderbolt.browserZoomHandler":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.siteMembersMultilingualLanguage":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.shouldRunCodEmbedsCallbackOnce":true,"specs.thunderbolt.componentCustomCss":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.browserCacheReload":true,"specs.thunderbolt.browserZoomMobileOnloadDetection":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.useERCUndependentComp":true,"shouldUseEditorElementsLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.fedops_enableSampleRateForAppNames":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.dontTruncateScrollPosition":true,"specs.thunderbolt.excludeInstanceFromQueryParams":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.useLegacyLinkUtilsInPlatform":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.fullPageNavigationSpecificSites":true,"specs.thunderbolt.ComponentsRegistryFixAnonymousDefine":true,"specs.thunderbolt.newTransitionEndHandlerLogic":true,"specs.thunderbolt.postTransitionElementFocus":true,"specs.thunderbolt.LoginSocialBarSplitStateProps":true,"specs.thunderbolt.skipDecodeUri":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.uiTypeNativeMappers":true,"specs.thunderbolt.SetNoCacheOnAppError":true,"specs.thunderbolt.bundlerTrafficToAws":true,"specs.thunderbolt.HtmlComponentPropsMapper":true,"specs.thunderbolt.fixSafariTabHeight":true,"specs.thunderbolt.UseOriginalBlocksAppInstance":true,"specs.thunderbolt.showContentReflowBanner":true,"specs.thunderbolt.removeDynamicModelTopologyFromSiteAssets":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.pageUrlRegexIgnoreSpace":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.WRichTextPropsMapper":true,"specs.thunderbolt.wixRealtimeGetAppTokenFromPlatformUtils":true,"specs.thunderbolt.newLoginFlowOnProtectedCollection":true,"specs.thunderbolt.deprecatewixperf":true,"specs.thunderbolt.shouldSendCookiesForSiteMembersSettings":true,"specs.thunderbolt.calculateHeadEmbedsInSSR":true,"specs.thunderbolt.useNewRegisterLogin":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.shouldFixIosFlashBug":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"omriTest2":true,"specs.thunderbolt.headerUseMargins":true,"specs.thunderbolt.popupCustom404":true,"specs.thunderbolt.TextInputPrefixWidthFix":true,"specs.thunderbolt.loadWebpackRuntimeInHead":true,"specs.thunderbolt.returnToPreviousPageOnProtectedPageClose":true,"specs.thunderbolt.lightboxFocusRestore":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.UseNewLoginSocialBarCustomMenuPositioning":true,"specs.thunderbolt.siteButtonKeyboardBehavior":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.os.EnableErrorHandlerInViewer":true,"specs.thunderbolt.lazySiteServicesManager":true,"shouldUseMABuilderLoginSocialBarResponsiveStyling":true,"specs.thunderbolt.ShouldUseNewIAMSocialFlow":true,"specs.thunderbolt.lazy_load_iframe":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.useIAMEnabledConnections":true,"specs.thunderbolt.StoresCartNullOnShippingInfo":true,"specs.thunderbolt.logViewerModelDiff":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.securityExperiments":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.useElementoryRelativePath":true,"specs.thunderbolt.HamburgerMenuOverflowFix":true,"specs.thunderbolt.preventGetMemberDetailsWaterfall":true,"specs.thunderbolt.linkBarNativeMapper":true,"specs.thunderbolt.outlineCss":true,"specs.thunderbolt.wrichtextListInRtl":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.addPlatformizationOptionSignUpFlow":true,"specs.thunderbolt.scrollToRetries":true,"specs.thunderbolt.addPlatformizationOptionLoginFlow":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.pageBGTransitionHandler":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.EmitSeoBodyRenderingMetadata":true,"specs.thunderbolt.shouldFetchLoginUrlByClientId":true,"specs.thunderbolt.shouldLoadGoogleSdkEarly":true,"specs.promote.ar.useFacebookSetupV1Service":true,"specs.thunderbolt.loadNewerSentrySdk":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.shouldUseMemberPrivacySettingsService":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.membersArea.LoginBarRemake":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.alwaysApplySessionTokenOnIAM":true,"specs.thunderbolt.sendFedopsLoadStartedReplaced":true,"specs.thunderbolt.SlideshowStopMediaInNonActiveSlides":true,"specs.thunderbolt.removeDynamicModelTopology":true,"specs.thunderbolt.hardenFetchAndXHR":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.routerDynamicPageOverride":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.biForBrowserZoom":true,"specs.thunderbolt.paidPlansSdkUseV2Orders":true,"specs.thunderbolt.shouldValidateRedirectUrl":true,"specs.thunderbolt.StoresCartZeroOnShippingAndTax":true,"specs.thunderbolt.cmsStandalone":true,"specs.thunderbolt.enableSignUpPrivacyNoteType":true,"specs.thunderbolt.vectorImageDecorativeClickElementTitle":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.veloWixMembersAmbassadorV2":true,"specs.thunderbolt.customElemCollapsedheight":true,"specs.thunderbolt.EagerSpeculationRules":true,"specs.thunderbolt.megaMenuMouseLeave":true,"specs.thunderbolt.useUrlFromBrowserWindowInsteadOfViewerModel":true,"specs.thunderbolt.fixMpaWorkerBi":true,"specs.thunderbolt.contextProviders":true,"specs.thunderbolt.WRichTextVerticalAlignTopSafariAndIOS":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.viewportOnBPChange":true,"specs.thunderbolt.vsmViewerModel":true,"specs.thunderbolt.resolveDocumentLink":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.UseWixDataItemService":true,"specs.thunderbolt.VerticalMenu_uiType_NativeMapper":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.splitLinkUtils":true,"specs.thunderbolt.recoverAnchorsOnClientRender":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.useNewBuilderSdkApi":true,"specs.thunderbolt.migrateStylableMenuUiTypeMapper":true,"specs.thunderbolt.UseCloudDataUrlWithBaseExternalUrl":true,"specs.thunderbolt.skipMasterPageComponentManifestCss":true,"specs.thunderbolt.dontCleanLightboxState":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.promote.ar.reportEcomPlatformPurchaseEvents":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.useIAMPlatform":true,"specs.thunderbolt.filterRobotsForConvertedDynamicPages":true,"specs.thunderbolt.veloBundlerParastorageUrl":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.fixSectionAnchorUrlHash":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.AddRegisterEventListenerToWixWindow":true,"specs.thunderbolt.fetchSVGfromNetworkInCSR":true,"specs.thunderbolt.runMappersWithSpecificDeps":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.LottieUseCanvasForIOSDevices":true,"specs.ident.usePlatformizedSMAuth":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.shouldSearchForRouterPrefix":true,"specs.thunderbolt.carouselGalleryImageFitting":true,"specs.thunderbolt.fixSiteScrollBlockerRace":true,"specs.thunderbolt.deduplicateSvgFetches":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.scrollToAnchorSsr":true,"specs.thunderbolt.pricingPlansUserOrdersV2":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.loginSocialBarEnableUrlChangeListeners":true,"specs.thunderbolt.pageTransitionScrollSmoothly":true,"specs.thunderbolt.buttonUdp_loggedIn":true,"specs.thunderbolt.preventAnchorReloadBeforeHydration":true,"specs.thunderbolt.InitPlatformApiProvider":true,"specs.thunderbolt.magnifyKeyboardOperability":true,"specs.thunderbolt.shouldMapFullContactInfoToIdentityProfile":true,"specs.thunderbolt.isClassNameToRootEnabledNext":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.render_dom_store_before_site":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.imageEncodingAVIF":true,"displayWixAdsNewVersion":true,"specs.thunderbolt.BundlerTypescriptListExportedFunctions":true,"specs.thunderbolt.smModalsShouldWaitForAppDidMount":true,"specs.thunderbolt.autoScrollingOnIphoneMPA":true,"specs.thunderbolt.ooi_css_optimization":true,"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.fixGapBelowTextboxonMobileSite":true,"specs.thunderbolt.useBuilderComponentTypeInBi":true,"specs.odeditor.socialPlayerChangeSource":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.overrideFloatInDistance":true,"specs.thunderbolt.editorElementsRegistryEnsureComponentLoaderFix":true,"specs.thunderbolt.moveFedopsLoadStartToBody":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.deduplicateFAQPageStructuredData":true,"specs.thunderbolt.shouldFetchLogoutUrlByClientId":true,"specs.thunderbolt.newIsScrollBlockedCondition":true,"specs.thunderbolt.routerFetchExtendedUrlLength":true,"specs.thunderbolt.retainInternalQueryParams":true,"specs.thunderbolt.convertBirthdateToISOString":true,"specs.thunderbolt.textMaskFontFallbacks":true,"specs.thunderbolt.dynamicPageServiceManager":true,"specs.thunderbolt.getAppTokenForCustomElement":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.previewRegion":true,"specs.thunderbolt.HeaderSectionAddVisibilityTransition":true,"specs.promote.ar.reportScheduleEventsOnPurchaseIfNeeded":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.newAuthorizedPagesFlow":true,"specs.thunderbolt.viewerWithoutWixDynamicCustomElements":true,"specs.thunderbolt.newControllersModel":true,"specs.thunderbolt.textScaleAdjust":true,"specs.thunderbolt.Panorama":true,"specs.thunderbolt.fetchCurrentMemberFromMembersNg":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.logoutOnIAM":true,"specs.thunderbolt.resolveElementPropsSlotRefs":true,"slideshowSlideLtrDirection":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.addIdAsClassName":true,"specs.thunderbolt.suspenseInSlots":true,"specs.thunderbolt.useNewTelemetryAPI":true,"specs.thunderbolt.UseNewLoginBarColorWiringOnE3":true},"formFactor":"desktop","isMobileDevice":false,"viewMode":"desktop","requestUrl":"https:\/\/www.leshabitationssf.com\/copy-of-location\/condo-4-1%2F2-%C3%A0-louer","fleetConfig":{"fleetName":"thunderbolt-isolated-renderer","type":"GA","code":0},"accessTokensUrl":"https:\/\/www.leshabitationssf.com\/_api\/v1\/access-tokens","interactionSampleRatio":0.01,"isPartialRouteMatching":false,"siteAssetsTestModuleVersion":"1.334.0","useLocalPiler":false,"componentsLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"media":{"staticMediaUrl":"https:\/\/static.wixstatic.com\/media","mediaRootUrl":"https:\/\/static.wixstatic.com\/","staticVideoUrl":"https:\/\/video.wixstatic.com\/","userDomainMediaPrefixes":[]},"deviceInfo":{"deviceClass":"Desktop"},"site":{"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","userId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","externalBaseUrl":"https:\/\/www.leshabitationssf.com","siteRevision":4,"siteType":"UGC","dc":"virginia-usercode","isResponsive":true,"editorName":"Studio","sessionId":"e3414679-f162-4b5c-94e7-1bfa953daabc","isSEO":false,"appNameForBiEvents":"wix-studio"},"mode":{"qa":false,"enableTestApi":false,"addAllServices":false,"debug":false,"ssrIndicator":false,"ssrOnly":false,"siteAssetsFallback":"enable","versionIndicator":false},"language":{"userLanguage":"fr","userLanguageResolutionMethod":"QueryParam","siteLanguage":"fr","isMultilingualEnabled":true,"directionByLanguage":"ltr"},"rollout":{"siteAssetsVersionsRollout":false,"isDACRollout":0,"isTBRollout":false},"commonConfig":{"brand":"studio","host":"VIEWER","bsi":"","consentPolicy":{},"consentPolicyHeader":{},"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53","renderingFlow":"NONE","language":"fr","locale":"fr-ca"},"anywhereConfig":{},"pilerExperiments":{"specs.piler.useEditorReactComponents":true},"rendererType":null,"siteAssets":{"dataFixersParams":{"experiments":{"dm_migrateOldHoverBoxToNewFixer":true,"dm_masterPageVariablesQueryFixer":true,"dm_bgScrubToMotionFixer":true},"dfVersion":"1.5507.0","isHttps":true,"isUrlMigrated":true,"metaSiteId":"39b9882f-9e71-4f93-bb6d-a87166c85cda","quickActionsMenuEnabled":false,"siteId":"452071c1-a99b-44c2-b686-dd15b11264a3","siteRevision":4,"v":3,"cacheVersions":{"dataFixer":6}},"modulesParams":{"features":{"moduleName":"thunderbolt-features","contentType":"application\/json","resourceType":"features","languageResolutionMethod":"QueryParam","isMultilingualEnabled":true,"externalBaseUrl":"https:\/\/www.leshabitationssf.com","useSandboxInHTMLComp":false,"disableStaticPagesUrlHierarchy":false,"aboveTheFoldSectionsNum":null,"isTrackClicksAnalyticsEnabled":false,"isSocialElementsBlocked":false,"builderAppVersions":"","onlyInteractions":false},"platform":{"moduleName":"thunderbolt-platform","contentType":"application\/json","resourceType":"platform","externalBaseUrl":"https:\/\/www.leshabitationssf.com","staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/"},"css":{"moduleName":"thunderbolt-css","contentType":"application\/json","resourceType":"css","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"cssMappers":{"moduleName":"thunderbolt-css-mappers","contentType":"application\/json","resourceType":"cssMappers","shouldRunVsm":true,"shouldRunCssInBrowser":false,"shouldGetCssResultObject":false,"stylableMetadataURLs":["editor-elements-library.thunderbolt.f16e8c8711543bd9d9d079c2048492780cfd69fd","editor-elements-design-systems.thunderbolt.00c5e16d38bb525519d1de2bc2617aa73e258b84"],"builderAppVersions":"","ooiVersions":"1380bbab-4da3-36b0-efb4-2e0599971d14%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FcartViewerWidgetNoCss.%3B1380bbb4-8df0-fd38-a235-88821cf3f8a4%3Dp.wixstores-client-thank-you-page-ooi%2F1.3514.0%2FthankYouPageViewerWidgetNoCss.%3B1380bbc4-1485-9d44-4616-92e36b1ead6b%3Dp.ecom-platform-cart-icon%2F1.2361.0%2FCartIconViewerWidgetNoCss.%3B139a41fd-0b1d-975f-6f67-e8cbdf8ccc82%3Dp.wixstores-client-gallery%2F1.6016.0%2FSliderGalleryViewerWidgetNoCss.%3B14666402-0bc7-b763-e875-e99840d131bd%3Dp.wixstores-client-add-to-cart%2F1.1500.0%2FaddToCartNoCss.%3B14c1462a-97f2-9f6a-7bb7-f5541f23caa6%3Dp.communities-blog-ooi%2F1.3271.0%2FBlogViewerWidgetNoCss.%3B14c92de1-0e02-cbe5-98e9-c3de44d63a55%3Dp.faq-ooi%2F1.648.0%2FFaqOoiViewerWidgetNoCss.%3B14dbefb9-3b7b-c4e9-53e8-766defd30587%3Dp.members-about-ooi%2F1.2699.0%2FProfileViewerWidgetNoCss.%3B14dd1af6-3e02-63db-0ef2-72fbc7cc3136%3Dp.my-account-ooi%2F1.2846.0%2FMyAccountViewerWidgetNoCss.%3B14fd5970-8072-c276-1246-058b79e70c1a%3Dp.ecom-platform-checkout%2F1.7195.0%2FCheckoutViewerWidgetNoCss.%3B211b5287-14e2-4690-bb71-525908938c81%3Dp.communities-blog-ooi%2F1.3271.0%2FPostViewerWidgetNoCss.%3B371ee199-389c-4a93-849e-e35b8a15b7ca%3Dp.form-app%2F1.2898.0%2FFormViewerWidgetNoCss.%3B44c66af6-4d25-485a-ad9d-385f5460deef%3Dp.search-app%2F1.3989.0%2FSearchResultsViewerWidgetNoCss.%3B49dbb2d9-d9e5-4605-a147-e926605bf164%3Dp.wixstores-client-cart-ooi%2F1.6303.0%2FSideCartViewerWidgetNoCss.%3B6467c15e-af3c-4e8d-b167-41bfb8efc32a%3Dp.payments-my-wallet%2F1.1283.0%2FMyWalletViewerWidgetNoCss.%3Babcd87fe-c51f-4538-848d-2902a2f50d2d%3Dp.wixstores-client-gallery%2F1.6016.0%2FSearchResultsPageGalleryViewerWidgetNoCss.%3Bbda15dc1-816d-4ff3-8dcb-1172d5343cce%3Dp.wixstores-client-gallery%2F1.6016.0%2FCategoryPageViewerWidgetNoCss."},"siteMap":{"moduleName":"thunderbolt-site-map","contentType":"application\/json","resourceType":"siteMap","isDeployPreview":false},"mobileAppBuilder":{"moduleName":"thunderbolt-mobile-app-builder","resourceType":"mobileAppBuilder","contentType":"application\/json"},"builderComponentFeatures":{"moduleName":"builder-component-features","resourceType":"builderComponentFeatures","contentType":"application\/json"},"builderComponentCss":{"moduleName":"builder-component-css","resourceType":"builderComponentCss","contentType":"application\/json"},"builderComponentPlatform":{"moduleName":"builder-component-platform","resourceType":"builderComponentPlatform","contentType":"application\/json"},"componentManifestCss":{"moduleName":"component-manifest-css","resourceType":"componentManifestCss","contentType":"application\/json","builderAppVersions":""},"pilerSiteAssets":{"moduleName":"piler-siteassets","resourceType":"pilerSiteAssets","contentType":"application\/json","buildFullApp":"true","keepWidgetBuild":"false","modulesToHashes":"{\"builder-component-features\":\"4b88a47c.bundle.min\",\"builder-component-css\":\"9dbb5f79.bundle.min\",\"builder-component-platform\":\"dc429dc0.bundle.min\",\"component-manifest-css\":\"11b93432.bundle.min\",\"thunderbolt-css-mappers\":\"2cfa07a5.bundle.min\",\"thunderbolt-services-configs\":\"63fe9530.bundle.min\",\"thunderbolt-features\":\"d1e4c663.bundle.min\",\"thunderbolt-platform\":\"6e6fc8e8.bundle.min\",\"thunderbolt-css\":\"f5e0677a.bundle.min\",\"thunderbolt-site-map\":\"f7bcd51f.bundle.min\",\"thunderbolt-mobile-app-builder\":\"31087b5d.bundle.min\"}","nonBeckyModuleVersions":"{\"remote-widget-structure-builder\":\"1.251.0\",\"blocks-app-descriptor\":\"1.118.0\"}"}},"clientTopology":{"mediaRootUrl":"https:\/\/static.wixstatic.com","scriptsUrl":"static.parastorage.com","staticMediaUrl":"https:\/\/static.wixstatic.com\/media","staticAudioUrl":"https:\/\/music.wixstatic.com\/mp3","moduleRepoUrl":"https:\/\/static.parastorage.com\/unpkg","fileRepoUrl":"https:\/\/static.parastorage.com\/services","viewerAppsUrl":"https:\/\/viewer-apps.parastorage.com","viewerAssetsUrl":"https:\/\/viewer-assets.parastorage.com","siteAssetsUrl":"https:\/\/siteassets.parastorage.com","pageJsonServerUrls":["https:\/\/pages.parastorage.com","https:\/\/staticorigin.wixstatic.com","https:\/\/www.leshabitationssf.com","https:\/\/fallback.wix.com\/wix-html-editor-pages-webapp\/page"],"pathOfTBModulesInFileRepoForFallback":"wix-thunderbolt\/dist\/"},"siteScopeParams":{"rendererType":null,"wixCodePageIds":["ebqqm","ycxvu","wdvyd"],"hasTPAWorkerOnSite":false,"formFactor":"desktop","viewMode":"desktop","freemiumBanner":false,"coBrandingBanner":false,"dayfulBanner":false,"mobileActionsMenu":false,"isWixSite":false,"isResponsive":true,"editorName":"Studio","urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"pageJsonFileNames":{"nd5z8":"5ae170_c2d129be82bd87f30e09fd78ac634f89_658.json","xbscd":"5ae170_46be0ffecaedf5c5f9815a64061b7704_658.json","ir3c1":"5ae170_f1c8d3dd3373403aea8a429f3cf05e46_658.json","tbw7n":"5ae170_d8b5a0134e25d4ff2b8733256e15f61e_658.json","x1rjp":"5ae170_bd9bded3bd6186a270bbed8cbf8e6c3b_658.json","fcpv5":"5ae170_bfa3a744011b18064588457b988e1a12_658.json","digmz":"5ae170_8753b09b9c3e820a689be83f44036cce_658.json","c1dmp":"5ae170_0ecd46a8622ee00e06b48cbb7172b0f5_658.json","ebqqm":"5ae170_3a1b249fd8c7996e95b27489a2211d7e_658.json","og9af":"5ae170_22a6808a1a5ec4a4dcf819e93e987d51_658.json","ee5l4":"5ae170_797441264f67257d2b398b280f9566f8_658.json","p8nxp":"5ae170_0e06c7b14722b1df76d73a702836cd87_658.json","ycxvu":"5ae170_6ef9978913518d22e3ff9884b42e9766_658.json","mwate":"5ae170_5875c32ffde89e37b96bab6a6e72235d_658.json","zoy0o":"5ae170_2971c71a27cf7f2c12883a525e8a2177_658.json","tjnio":"5ae170_b758cd293bd2e09407018e3925e51e65_658.json","lbsg6":"5ae170_7c4cb614a8d86ee3eea73eca8bbbd840_658.json","o2kzs":"5ae170_8f1c8d3b238505d0f4bc1d2497da2c0b_658.json","wdvyd":"5ae170_b86b7b332566ae1077a701be4c21b168_658.json","quqwi":"5ae170_adf9bd4deafc8141e4494d55c958864f_658.json","jlcw6":"5ae170_d6ffae0fdc501b4e0072309a1829eef7_658.json","ua72s":"5ae170_458c842e6d420c24ce21037d2a7ec6d6_658.json","yg0c4":"5ae170_a5a6fe205be0313a4f1c3cba4fa3f23e_658.json","xsdnd":"5ae170_2d88d358a3fe8be691ac110c9cab1eb5_658.json","msjef":"5ae170_a275d88f982fef975679f7c85059c3df_658.json","masterPage":"5ae170_a2b1ba9fa049e9e4baf8e4352987858c_3.json"},"protectedPageIds":["dkrww"],"routersInfo":{"configMap":{"routers-m338s9i0":{"prefix":"location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true},\"pageRole\":\"02f40a08-ae1a-41b9-9ce4-a486105584ec\",\"title\":\"{title}\"}}}","group":"","pages":{"02f40a08-ae1a-41b9-9ce4-a486105584ec":"x1rjp"},"roleVariations":{}},"routers-m6saa70b":{"prefix":"category","appDefinitionId":"1380b703-ce81-ff05-f115-39571d94dfcd","config":"{}","group":"","pages":{"category":"lbsg6"},"roleVariations":{}},"routers-m8omcibz":{"prefix":"copy-of-location","appDefinitionId":"dataBinding","config":"{\"patterns\":{\"\/{title}\":{\"seoMetaTags\":{\"description\":\"{_id}\",\"robots\":\"index\",\"keywords\":\"{title}\",\"og:image\":\"{imagePrinciple}\"},\"config\":{\"collection\":\"Location\",\"lowercase\":true,\"pageSize\":1,\"seoV2\":true,\"sort\":[{\"disponibilite\":\"desc\"}]},\"pageRole\":\"c8c6f29b-49c3-4685-b0e5-7f8174f91b94\",\"title\":\"{title}\"}}}","group":"","pages":{"c8c6f29b-49c3-4685-b0e5-7f8174f91b94":"ebqqm"},"roleVariations":{}}}},"isPremiumDomain":true,"disableSiteAssetsCache":false,"migratingToOoiWidgetIds":"","siteRevisionConfig":{"siteRevision":"4","branchId":"f815f8fb-8f6e-40d3-b375-054107669a53"},"registryLibrariesTopology":[{"artifactId":"editor-elements","namespace":"wixui","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"},{"artifactId":"editor-elements","namespace":"dsgnsys","url":"https:\/\/static.parastorage.com\/services\/editor-elements\/1.15400.0"}],"isInSeo":false,"language":"fr","originalLanguage":"fr","appDefinitionIdToSiteRevision":{"27fcc256-f3f8-47df-a66a-8f8176cc7f99":"45","a5dd7ce8-07c2-4251-8d58-9657c1a43163":"219","14271d6f-ba62-d045-549b-ab972ae1f70e":"25","14bcded7-0066-7c35-14d7-466cb3f09103":"1335","7479d596-137c-4fa3-89cd-d7091042ba61":"132","75d1f6b3-b0e3-4db4-8d3c-f29deb1e6aa3":"305","a0c68605-c2e7-4c8d-9ea1-767f9770e087":"6855","b976560c-3122-4351-878f-453f337b7245":"1358","13d21c63-b5ec-5912-8397-c3a5ddb27a97":"440"},"isClientSdkOnSite":true,"appDefinitionIdsWithCustomCss":["a0c68605-c2e7-4c8d-9ea1-767f9770e087"],"isBuilderComponentModel":false,"hasUserDomainMedia":false,"userDomainMediaPrefixes":[],"useViewerAssetsProxy":false},"beckyExperiments":{"specs.thunderbolt.dynamicSlots":true,"specs.thunderbolt.DatePickerPortal":true,"specs.thunderbolt.shouldUseResponsiveImages":true,"specs.thunderbolt.useResponsiveImgClassicFixed":true,"specs.thunderbolt.DDMenuMigrateCssCarmiMapper":true,"specs.thunderbolt.fiveGridLineStudioSkins":true,"specs.thunderbolt.calculateCollapsibleTextLineHeightByFont":true,"specs.thunderbolt.TextInputAutoFillFix":true,"specs.thunderbolt.buttonUdp":true,"specs.thunderbolt.one_cell_grid_display_flex":true,"specs.thunderbolt.useSvgLoaderFeature":true,"specs.thunderbolt.useClassnameInResponsiveAppWidget":true,"specs.thunderbolt.isClassNameToRootEnabled":true,"specs.thunderbolt.WixFreeSiteBannerDesktop":true,"specs.thunderbolt.WixFreeSiteBannerMobile":true,"specs.thunderbolt.removeSafariStickyFix":true,"specs.thunderbolt.imageEncodingAVIF":true,"specs.thunderbolt.updateRichTextSemanticClassNamesOnCorvid":true,"specs.thunderbolt.LoginBarEnableLoggingInStateInSSR":true,"specs.thunderbolt.DisableDocumentScrollWhenLightBoxOpen":true,"specs.thunderbolt.allowWebpAvifTransforms":true,"specs.thunderbolt.logVsmSiteMapDiff":true,"specs.thunderbolt.migrateSdkDataMappers":true,"specs.thunderbolt.globalVarsRefactor23":true,"specs.thunderbolt.resolveSpxWithoutEditorCheck":true,"specs.thunderbolt.vsmSiteMap":true,"specs.thunderbolt.scopeRepeatedSelectors":true,"specs.thunderbolt.logVsmPlatformDiff":true,"specs.thunderbolt.FreemiumBannerOdeditor":true,"specs.thunderbolt.UseLoginSocialBarCustomMenu":true,"specs.thunderbolt.useWowImageInFastGallery":true,"specs.thunderbolt.builderBoxSizingBorderBox":true,"specs.thunderbolt.dom_store":true,"specs.thunderbolt.fixRemappedFullNameCompType":true,"specs.thunderbolt.namedRanges":true,"specs.thunderbolt.useFragmentHrefForTopBottomAnchor":true,"specs.thunderbolt.useSvgLoaderFeatureOnBuilderComps":true,"specs.thunderbolt.shouldIgnoreWidgetsPageData":true,"specs.thunderbolt.fixFirefoxLinkBarIntrinsicSizing":true,"specs.thunderbolt.UseNestedLoginSocialBarMenuItems":true,"specs.thunderbolt.plainClassSelectors":true,"specs.thunderbolt.UseNewLoginBarDropdownMenuAlignment":true,"specs.thunderbolt.splitSlotSelectors":true,"specs.thunderbolt.motionTimeAnimationsCSS":true,"specs.thunderbolt.dynamicPageLinkTarget":true,"specs.thunderbolt.builderSvgCssVars":true,"specs.thunderbolt.useImageAvifFormatInNativeProGallery":true,"specs.thunderbolt.a11yContrast":true,"specs.thunderbolt.UseNewLoginSocialBarMemberInitialsAvatar":true,"specs.thunderbolt.shouldFixContainerOverflowCollapse":true,"specs.thunderbolt.HoverBoxSelectorToCssNativeMapper":true,"specs.thunderbolt.responsiveContainerRoleGroup":true,"specs.thunderbolt.UseNewLoginSocialBarElementStructure":true,"specs.thunderbolt.svgResolver_2":true,"specs.thunderbolt.sectionA11yProps":true,"specs.thunderbolt.ooiCssSelectorWithSuffix":true,"specs.thunderbolt.stringifyHashPresetName_VAG":true,"specs.thunderbolt.pinnedTopAuto":true,"specs.thunderbolt.EnableCustomCSSVarsForLoginSocialBar":true,"specs.thunderbolt.dontApplyDacOverridesOnBoBApps":true,"specs.thunderbolt.removeSingleTabCssMapper":true,"specs.thunderbolt.designStates":true,"specs.thunderbolt.addIdAsClassName":true},"manifests":{"node":{"modulesToHashes":{"builder-component-features":"4b88a47c.bundle.min","builder-component-css":"9dbb5f79.bundle.min","builder-component-platform":"dc429dc0.bundle.min","component-manifest-css":"11b93432.bundle.min","thunderbolt-css-mappers":"2cfa07a5.bundle.min","thunderbolt-services-configs":"63fe9530.bundle.min","thunderbolt-features":"d1e4c663.bundle.min","thunderbolt-platform":"6e6fc8e8.bundle.min","thunderbolt-css":"f5e0677a.bundle.min","thunderbolt-site-map":"f7bcd51f.bundle.min","thunderbolt-mobile-app-builder":"31087b5d.bundle.min"}},"web":{"modulesToHashes":{"thunderbolt-platform":"5964cb52.bundle.min","thunderbolt-css":"b0a1a83f.bundle.min","thunderbolt-site-map":"b9b1feb6.bundle.min","thunderbolt-mobile-app-builder":"f230dbce.bundle.min","builder-component-features":"0b72d3dd.bundle.min","builder-component-css":"59927667.bundle.min","builder-component-platform":"1edf9559.bundle.min","component-manifest-css":"c6491178.bundle.min","thunderbolt-css-mappers":"1a45a4a4.bundle.min","thunderbolt-services-configs":"adde9162.bundle.min","webpack-runtime":"e9817151.bundle.min","thunderbolt-features":"1a58e212.bundle.min"},"webpackRuntimeBundle":"e9817151.bundle.min"},"webWorker":{"modulesToHashes":{"thunderbolt-features":"1ef294b0.bundle.min","thunderbolt-platform":"00731b66.bundle.min","thunderbolt-css":"5f7bbbc8.bundle.min","thunderbolt-site-map":"55c26f60.bundle.min","thunderbolt-mobile-app-builder":"5f3ea117.bundle.min","builder-component-features":"bdcfc316.bundle.min","builder-component-css":"2aff705f.bundle.min","builder-component-platform":"308c31ea.bundle.min","component-manifest-css":"d471daee.bundle.min","thunderbolt-css-mappers":"adc1af89.bundle.min","thunderbolt-services-configs":"ed3b8b30.bundle.min"}}},"siteAssetsVersions":{"viewer-assets-generator":"1.0.0","santa-data-fixer":"1.5507.0","@wix\/santa-main-r":"1.1643.0","santa-main-r":"1.1643.0","@wix\/blocks-app-descriptor":"1.118.0","simple-all-pages":"1.0.0","blocks-builder-manifest-generator":"1.151.0","@wix\/santa-data-fixer":"1.5507.0","remote-widget-structure-builder":"1.251.0","remote-widget-metadata":"1.2593.0","santa-site-metadata":"1.3427.0","piler-siteassets":"1.937.0","stylable-santa-flatten":"2.0.222","@wix\/piler-siteassets":"1.937.0"},"staticHTMLComponentUrl":"https:\/\/www-leshabitationssf-com.filesusr.com\/","remoteWidgetStructureBuilderVersion":"1.251.0","blocksBuilderManifestGeneratorVersion":"1.129.0"},"react18Compatible":true,"react18HydrationBlackListWidgets":["14756c3d-f10a-45fc-4df1-808f22aabe80"],"mpaBlacklistWidgets":[],"excludeCompsForSSRList":[""],"mpaNavigationCompatible":true,"mpaIncompatibleWidgetsList":[],"mpaExclusionReasons":[],"siteCacheable":true,"isolatedRenderer":true,"siteOwnerId":"5ae17029-b27f-42f6-8bc0-5cafbf63a235","hasInteractions":false,"componentsExternalVersions":{}}</script> | |
| 2498 | +<script>window.viewerModel = JSON.parse(document.getElementById('wix-viewer-model').textContent)</script> | |
| 2499 | +<!-- renderIndicator --> | |
| 2500 | + | |
| 2501 | + | |
| 2502 | +<!-- versionIndicator --> | |
| 2503 | + | |
| 2504 | + | |
| 2505 | +<!-- used platform apis start --> | |
| 2506 | +<script type="application/json" id="used-platform-apis-data">["location","window","site","seo","user"]</script> | |
| 2507 | +<script>window.usedPlatformApis = JSON.parse(document.getElementById('used-platform-apis-data').textContent)</script> | |
| 2508 | +<!-- used platform apis end --> | |
| 2509 | + | |
| 2510 | +<!-- Business Manager --> | |
| 2511 | + | |
| 2512 | +<!-- initCustomElements #2 --> | |
| 2513 | + | |
| 2514 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6747"],{99090(e,t,o){o.d(t,{O:()=>c});let c=(e,t="")=>t.toLowerCase().includes("forcereducedmotion")||!!e?.matchMedia("(prefers-reduced-motion: reduce)").matches}},function(e){e.O(0,["1619","3033"],function(){return e(e.s=19787)}),e.O()}]); | |
| 2515 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/lazyCustomElementWrapper.inline.eefbcea5.bundle.min.js.map</script> | |
| 2516 | + | |
| 2517 | +<!-- react --> | |
| 2518 | +<script crossorigin="" src="https://static.parastorage.com/unpkg/react@18.3.1/umd/react.production.min.js" onload="resolveExternalsRegistryModule('react')"></script> | |
| 2519 | +<!-- react-dom --> | |
| 2520 | +<script crossorigin="" defer="" src="https://static.parastorage.com/unpkg/react-dom@18.3.1/umd/react-dom.production.min.js" onload="resolveExternalsRegistryModule('reactDOM')"></script> | |
| 2521 | +<!-- lodash script --> | |
| 2522 | +<script async="" src="https://static.parastorage.com/unpkg/lodash@4.17.23/lodash.min.js" onload="resolveExternalsRegistryModule('lodash')"></script> | |
| 2523 | +<!-- initial scripts --> | |
| 2524 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/thunderbolt-commons.9eb9a4be.bundle.min.js"></script> | |
| 2525 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["6008"],{68703(e,t,r){r.d(t,{L:()=>i});var a=r(8716),o=r(26778),n=r(49254);let i=(0,a.Og)([],()=>({definition:o.F,impl:n.J,config:{},platformConfig:{}}))},89973(e,t,r){r.d(t,{h:()=>i});var a=r(65672),o=r(48869);let n=({useBatch:e=!0,publishMethod:t=a.PublishMethods.Auto,endpoint:r,muteBi:o=!1,biStore:n,sessionManager:i,fetch:s,factory:d})=>d({useBatch:e,publishMethod:t,endpoint:r}).setMuted(o).withUoUContext({msid:n.msid}).withNonEssentialContext({visitorId:()=>i.getVisitorId(),siteMemberId:()=>i.getSiteMemberId()}).updateDefaults({vsi:n.viewerSessionId,_av:`thunderbolt-${n.viewerVersion}`,isb:n.is_headless,...n.is_headless&&{isbr:n.is_headless_reason}}),i={createBaseBiLoggerFactory:n,createBiLoggerFactoryForFedops:e=>{let{biStore:{session_id:t,initialTimestamp:r,initialRequestTimestamp:a,dc:i,microPop:s,is_headless:d,isCached:p,pageData:l,rolloutData:u,caching:c,checkVisibility:f=()=>"",viewerVersion:m,requestUrl:I,st:h,isSuccessfulSSR:A,mpaSessionId:_,siteOwnerId:E,uuid:S},muteBi:g=!1}=e;return n({...e,muteBi:g}).updateDefaults({ts:()=>Date.now()-r,tsn:()=>(function({initialRequestTimestamp:e,adjustForPrerender:t=!1}){if("undefined"==typeof window)return Math.round(performance.now()+(performance.timeOrigin-e));let r=t?(0,o.b)():0;return Math.round(performance.now()-r)})({initialRequestTimestamp:a,adjustForPrerender:!0}),dc:i,microPop:s,caching:c,session_id:t,st:h,url:I||l.pageUrl,ish:d,pn:l.pageNumber,isFirstNavigation:1===l.pageNumber,pv:f,pageId:l.pageId,isServerSide:!1,isSuccessfulSSR:A,is_lightbox:l.isLightbox,is_cached:p,is_sav_rollout:+!!u.siteAssetsVersionsRollout,is_dac_rollout:+!!u.isDACRollout,v:m,mpaSessionId:_,siteOwnerId:E,uuid:S,..."undefined"!=typeof document&&document.referrer&&{document_referrer:document.referrer},..."undefined"!=typeof navigator&&navigator.language&&{browserLanguage:navigator.language}})}}},48869(e,t,r){r.d(t,{b:()=>a});let a=()=>{let e=(()=>{if("undefined"==typeof performance||"function"!=typeof performance.getEntriesByType)return;let e=performance.getEntriesByType("navigation")[0];if(e&&e.responseStart>0&&e.responseStart<performance.now())return e})();return e?.activationStart??0}},35499(e,t,r){r.d(t,{W:()=>p});var a=r(41394),o=r(41789),n=r(683),i=r(4291),s=r(6355),d=r(76526);let p=({biLoggerFactory:e,customParams:t={},phasesConfig:r="SEND_ON_FINISH",appName:p="thunderbolt",presetType:l=a.u.BOLT,reportBlackbox:u=!1,paramsOverrides:c={},factory:f,muteThunderboltEvents:m=!1,experiments:I={},monitoringData:h})=>{let A,_,E,S,g,N,R,b,v=f(p,{presetType:l,phasesConfig:r,isPersistent:!0,isServerSide:!1,reportBlackbox:u,customParams:t,biLoggerFactory:e,paramsOverrides:c,enableSampleRateForAppNames:(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames")??("undefined"!=typeof window&&(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedops_enableSampleRateForAppNames"))}),{interactionStarted:O,interactionEnded:w,appLoadingPhaseStart:T,appLoadingPhaseFinish:y,appLoadStarted:V,appLoaded:D}=v,C=(0,d.isExperimentOpen)(I,"specs.thunderbolt.fedopsMuteErrors"),L=(0,d.isExperimentOpen)(I,"specs.thunderbolt.panoramaInSsr"),F="undefined"==typeof window,B=e=>e?.evid&&26===parseInt(e.evid,10),P=(A=(0,s.n)(),h?.viewerSessionId&&A.setSessionId(h.viewerSessionId),_=h?.metaSiteId??"",E=h?.dc??"",S=!!h?.isHeadless,g=!!h?.isCached,N=!!h?.rolloutData?.isTBRollout,R=!!h?.rolloutData?.isDACRollout,b=!!h?.rolloutData?.siteAssetsVersionsRollout,(0,n.V)({baseParams:{platform:i.OD.Viewer,msid:_,fullArtifactId:"com.wixpress.html-client.wix-thunderbolt",artifactVersion:h?.artifactVersion,componentId:p},pluginParams:{useBatch:!0},data:{dataCenter:E,isHeadless:S,isCached:g,isRollout:N,isDacRollout:R,isSavRollout:b,isSsr:!1,presetType:l,customParams:t},reporterOptions:F?{fetchFn:fetch}:{}}).withGlobalConfig(A).client()),G=e=>{P&&(L||!F)&&(e?P.reportLoadStart():P.reportLoadFinish())},x=(e,t,r)=>{if(!P)return;let a=e.replaceAll(" ","_");t?P.transaction(a).start(r):P.transaction(a).finish(r)},M=(e,t,r,n)=>{if(o.iy.has(p))return!0;if(((e,t,r)=>{let n;return B(r)?C:(n=r?.siteAssetsModule??"",!(l!==a.u.BOLT||o.EQ.has(e)||t&&["thunderbolt-css","thunderbolt-features","thunderbolt-platform"].includes(n)))})(e,t,n))return!1;if(n?.siteAssetsModule)return!0;let i=!!r?.appId&&!o.S_.has(r.appId),s=o.S2.has(e),d=o.wV.has(e);return s||i||!d&&!m};return v.interactionStarted=(e,t)=>{if(B(t?.paramsOverrides)?((e={})=>{if(!P)return;let{errorInfo:t,errorType:r}=e,a=Error(t);P?.errorMonitor().reportError(a,{errorName:r,environment:"Viewer"})})(t?.paramsOverrides):(L||e.startsWith("platform_")||!F)&&x(e,!0),M(e,!0,void 0,t?.paramsOverrides))return O.call(v,e,t);try{performance.mark(`${e} started`)}catch(e){}return{timeoutId:0}},v.interactionEnded=(e,t)=>{if((L||e.startsWith("platform_")||!F)&&x(e,!1),M(e,!0,void 0,t?.paramsOverrides))w.call(v,e,t);else try{performance.mark(`${e} ended`)}catch(e){}},v.appLoadingPhaseStart=(e,t)=>{if(x(e,!0,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))T.call(v,e,t);else try{performance.mark(`${e} started`)}catch(e){}},v.appLoadingPhaseFinish=(e,t,r)=>{if(x(e,!1,{appDefId:t?.appId,componentId:t?.widgetId}),M(e,!1,t))y.call(v,e,t,r);else try{performance.mark(`${e} finished`)}catch(e){}},v.appLoadStarted=e=>{G(!0),V.call(v,e)},v.appLoaded=e=>{G(!1),D.call(v,e)},v}},81855(e,t,r){r.d(t,{c:()=>a});let a=e=>{let t="thunderbolt-commons";return{reportAsyncWithCustomKey:(r,a,o)=>e.reportAsyncWithCustomKey(r,t,a,o),runAsyncAndReport:(r,a)=>e.runAsyncAndReport(r,t,a),runAndReport:(r,a)=>e.runAndReport(r,t,a),reportError:r=>{e.captureError(r,{tags:{feature:t,clientMetricsReporterError:!0}})},meter:(t,r)=>{e.meter(t,r)},histogram:(e,t)=>{}}}},27256(e,t,r){r.r(t),r.d(t,{createBiReporter:()=>i,site:()=>s});var a=r(73388),o=r(60990);let n=(...e)=>console.log("[TB] ",...e);function i(e=n,t=n,r=()=>{},a=n,o=n){return{reportBI:e,sendBeat:t,setDynamicSessionData:r,reportPageNavigation:a,reportPageNavigationDone:o}}let s=({biReporter:e,wixBiSession:t,viewerModel:r})=>n=>{n(a.O$).toConstantValue(t),n(a.u6).toConstantValue(e),n(a.lR).toConstantValue((0,o.f)(r))}},94756(e,t,r){r.d(t,{lF:()=>n,mY:()=>s,w4:()=>i});var a,o,n=((a={})[a.START=1]="START",a[a.VISIBLE=2]="VISIBLE",a[a.PARTIALLY_VISIBLE=12]="PARTIALLY_VISIBLE",a[a.PAGE_FINISH=33]="PAGE_FINISH",a[a.FIRST_CDN_RESPONSE=4]="FIRST_CDN_RESPONSE",a[a.TBD=-1]="TBD",a[a.PAGE_NAVIGATION=101]="PAGE_NAVIGATION",a[a.PAGE_NAVIGATION_DONE=103]="PAGE_NAVIGATION_DONE",a),i=((o={})[o.NAVIGATION=1]="NAVIGATION",o[o.DYNAMIC_REDIRECT=2]="DYNAMIC_REDIRECT",o[o.INNER_ROUTE=3]="INNER_ROUTE",o[o.NAVIGATION_ERROR=4]="NAVIGATION_ERROR",o[o.CANCELED=5]="CANCELED",o);let s={1:"page-navigation",2:"page-navigation-redirect",3:"page-navigation-inner-route",4:"navigation-error",5:"navigation-canceled"}},73388(e,t,r){r.d(t,{O$:()=>o,lR:()=>n,u6:()=>a});let a=Symbol.for("BI"),o=Symbol.for("WixBiSessionSymbol"),n=Symbol.for("appName")}}]); | |
| 2526 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi-common.inline.24faadf6.bundle.min.js.map</script> | |
| 2527 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.209eb21d.bundle.min.js"></script> | |
| 2528 | +<script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/main.renderer.99fa8096.bundle.min.js"></script> | |
| 2529 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["8426"],{7146(e,r,t){t.r(r),t.d(r,{platformWorkerPromise:()=>m});let s=window.viewerModel,a=s?.siteFeatures||[],o=s?.siteFeaturesConfigs?.platform,p=s?.siteAssets?.clientTopology,l=s?.site?.externalBaseUrl,i=window.usedPlatformApis,n="undefined"!=typeof Worker&&a.includes("platform")&&!!o,c=async()=>{let e;if(!o?.clientWorkerUrl||!o?.appsScripts||!o?.bootstrapData)return void console.warn("[create-worker] Platform config incomplete (missing clientWorkerUrl, appsScripts, or bootstrapData), skipping worker creation");let r="platform_create-worker started";performance.mark(r);let{clientWorkerUrl:t,appsScripts:s,bootstrapData:a,sdksStaticPaths:n}=o,{appsSpecData:c={},appDefIdToIsMigratedToGetPlatformApi:m={},forceEmptySdks:d}=a||{},f=new Worker(t.startsWith("http://localhost:")||document.baseURI!==location.href?(e=new Blob([`importScripts('${t}');`],{type:"application/javascript"}),URL.createObjectURL(e)):t.replace(p?.fileRepoUrl||"",`${l}/_partials`)),k=s?.urls||{},u=Object.keys(k).filter(e=>!c[e]?.isModuleFederated).reduce((e,r)=>(e[r]=k[r],e),{});n&&n.mainSdks&&n.nonMainSdks&&(Object.values(m).every(e=>e)||d?f.postMessage({type:"preloadNamespaces",namespaces:i}):f.postMessage({type:"preloadAllNamespaces",sdksStaticPaths:n})),f.postMessage({type:"platformScriptsToPreload",appScriptsUrls:u});let w="platform_create-worker ended";return performance.mark(w),performance.measure("Create Platform Web Worker",r,w),f},m=n?c():Promise.resolve()}},function(e){e(e.s=7146)}]); | |
| 2530 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/createPlatformWorker.inline.a9bb4739.bundle.min.js.map</script> | |
| 2531 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1625"],{97534(){var e;let n,a,t;e=window,n=new Set,a=[],t=e=>{let a=[];n.forEach(n=>{e.canHandleEvent(n)&&a.push(n)}),a.forEach(a=>{n.delete(a),e.handleEvent(a)})},e.addEventListener("message",e=>{let d={source:e.source,data:e.data,origin:e.origin},s=a.find(e=>e.canHandleEvent(d));s?(t(s),s.handleEvent(d)):n.add(d)}),e._addWindowMessageHandler=e=>{a.push(e),t(e)}}},function(e){e(e.s=97534)}]); | |
| 2532 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/windowMessageRegister.inline.5cd174ec.bundle.min.js.map</script> | |
| 2533 | + | |
| 2534 | +<!-- scriptTagsToPreload --> | |
| 2535 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2536 | +<link href="https://static.parastorage.com/services/ecom-platform-cart-icon/1.2361.0/CartIconViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2537 | +<link href="https://static.parastorage.com/services/pro-gallery-tpa/1.1531.0/WixProGalleryViewerWidget.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2538 | +<link href="https://static.parastorage.com/services/form-app/1.2898.0/FormViewerWidgetNoCss.bundle.min.js" rel="preload" as="fetch" crossorigin="anonymous"></link> | |
| 2539 | + | |
| 2540 | + | |
| 2541 | + <!-- Old Browsers Deprecation --> | |
| 2542 | + <script async="" src="https://static.parastorage.com/services/wix-thunderbolt/dist/browser-deprecation.bundle.es5.js"></script> | |
| 2543 | + | |
| 2544 | + | |
| 2545 | +<!-- bi --> | |
| 2546 | +<script> | |
| 2547 | + window.clientSideRender = false; | |
| 2548 | +</script> | |
| 2549 | +<!-- bi --> | |
| 2550 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["9114"],{80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>u});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},u=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:u}=window,p=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:p,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:u?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=u,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),u.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=80974)}),e.O()}]); | |
| 2551 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/bi.inline.ae93e7f6.bundle.min.js.map</script> | |
| 2552 | +<script data-url="https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js">"use strict";(self.webpackJsonp__wix_thunderbolt_app=self.webpackJsonp__wix_thunderbolt_app||[]).push([["1698"],{40250(e,i,n){var r=n(94756);n(80974).K.sendBeat(r.lF.PARTIALLY_VISIBLE,"Partially visible",{pageId:window.firstPageId})},80974(e,i,n){let r,t,s,a;n.d(i,{K:()=>p});var o=n(94756);let c="unknown",d=e=>{let i,n,r=(i=e.cache,n=e.varnish,`${i||c},${n||c}`);return{caching:r,isCached:r.includes("hit"),...e.microPop?{microPop:e.microPop}:{}}},l={WixSite:1,UGC:2,Template:3},p=(r=(()=>{let{fedops:e,viewerModel:{siteFeaturesConfigs:i,requestUrl:n,site:r,fleetConfig:t,commonConfig:s,interactionSampleRatio:a},clientSideRender:o,santaRenderingError:p}=window,u=(({requestUrl:e,interactionSampleRatio:i})=>{let n=new URL(e).searchParams;return n.has("sampleEvents")?"true"===n.get("sampleEvents"):Math.random()<(i?1-i:.9)})({requestUrl:n,interactionSampleRatio:a}),m=(e=>{let{userAgent:i}=e.navigator;return/instagram.+google\/google/i.test(i)?"":/bot|google(?!play)|phantom|crawl|spider|headless|slurp|facebookexternal|Lighthouse|PTST|^mozilla\/4\.0$|^\s*$/i.test(i)?"ua":""})(window)||(()=>{try{if(window.self===window.top)return""}catch{}return"iframe"})()||(()=>{if(!Function.prototype.bind)return"bind";let{document:e,navigator:i}=window;if(!e||!i)return"document";let{webdriver:n,userAgent:r,plugins:t,languages:s}=i;if(n)return"webdriver";if(!t||Array.isArray(t))return"plugins";if(Object.getOwnPropertyDescriptor(t,"0")?.writable)return"plugins-extra";if(!r)return"userAgent";if(r.indexOf("Snapchat")>0&&e.hidden)return"Snapchat";if(!s||0===s.length||!Object.isFrozen(s))return"languages";try{throw Error()}catch(e){if(e instanceof Error){let{stack:i}=e;if(i&&/ (\(internal\/)|(\(?file:\/)/.test(i))return"stack"}}return""})()||(({seo:e})=>e?.isInSEO?"seo":"")(i);return{suppressbi:n.includes("suppressbi=true"),initialTimestamp:window.initialTimestamps.initialTimestamp,initialRequestTimestamp:window.initialTimestamps.initialRequestTimestamp,viewerSessionId:e.vsi,viewerName:r.appNameForBiEvents,siteRevision:String(r.siteRevision),msId:r.metaSiteId,is_rollout:0===t.code||1===t.code?t.code:null,is_platform_loaded:0,requestUrl:encodeURIComponent(n),sessionId:String(r.sessionId),btype:m,isjp:!!m,dc:r.dc,siteCacheRevision:"__siteCacheRevision__",checkVisibility:(()=>{let e=!0;function i(){e=e&&!0!==document.hidden}return document.addEventListener("visibilitychange",i,{passive:!0}),i(),()=>(i(),e)})(),...((e,i)=>{let n,r=(e=>{let i;try{i=e()}catch{i=[]}let n=i.reduce((e,i)=>(e[i.name]=i.description,e),{});return{cache:n.cache,varnish:n.varnish,microPop:n.dc}})(i);if(r.cache||r.varnish)return d({cache:r.cache||c,varnish:r.varnish||c,microPop:r.microPop});let t=(n=e.match(/ssr-caching="?cache[,#]\s*desc=([\w-]+)(?:[,#]\s*varnish=(\w+))?(?:[,#]\s*dc[,#]\s*desc=([\w-]+))?(?:"|;|$)/))&&n.length?{cache:n[1],varnish:n[2]||c,microPop:n[3]}:null;return t?d(t):{caching:c,isCached:!1}})(document.cookie,()=>[...performance.getEntriesByType("navigation")[0].serverTiming||[]]),isMesh:1,st:l[r.siteType]||0,commonConfig:s,muteThunderboltEvents:u,isServerSide:+!o,isSuccessfulSSR:!o,fallbackReason:p?.errorInfo,mpaSessionId:e.mpaSessionId}})(),t={},s=1,{sendBeat:a=(e,i)=>{if(i&&performance.mark){let n=`${i} (beat ${e})`;performance.mark(n)}},reportBI:function(e,i){let n,r;n=i?`${e} - ${i}`:e,r="end"===i?`${e} - start`:null,performance.mark(n),performance.measure&&r&&performance.measure(`\u2B50${e}`,r,n)},wixBiSession:r,sendBeacon:e=>{let i=!1;if(!/\(iP(hone|ad|od);/i.test(window?.navigator?.userAgent))try{i=navigator.sendBeacon(e)}catch{}i||(new Image().src=e)},setDynamicSessionData:({visitorId:e,siteMemberId:i,bsi:n})=>{t.visitorId=e||t.visitorId,t.siteMemberId=i||t.siteMemberId,t.bsi=n||t.bsi},reportPageNavigation:function(e){s+=1,a(o.lF.PAGE_NAVIGATION,"page navigation start",{pageId:e,pageNumber:s})},reportPageNavigationDone:function(e,i){a(o.lF.PAGE_NAVIGATION_DONE,"page navigation complete",{pageId:e,pageNumber:s,navigationType:i}),(i===o.w4.DYNAMIC_REDIRECT||i===o.w4.NAVIGATION_ERROR||i===o.w4.CANCELED)&&(s-=1)}});window.bi=p,window.bi.wixBiSession.isServerSide=+!window.clientSideRender,window.bi.wixBiSession.isSuccessfulSSR=!window.clientSideRender,window.clientSideRender&&(window.bi.wixBiSession.fallbackReason=window.santaRenderingError?.errorInfo),p.sendBeat(1,"Init")}},function(e){e.O(0,["6008"],function(){return e(e.s=40250)}),e.O()}]); | |
| 2553 | +//# sourceMappingURL=https://static.parastorage.com/services/wix-thunderbolt/dist/sendBeat12.inline.995b241c.bundle.min.js.map</script> | |
| 2554 | +<script> | |
| 2555 | + window.firstPageId = 'ebqqm' | |
| 2556 | + | |
| 2557 | + if (window.requestCloseWelcomeScreen) { | |
| 2558 | + window.requestCloseWelcomeScreen() | |
| 2559 | + } | |
| 2560 | + if (!window.__browser_deprecation__) { | |
| 2561 | + window.fedops.phaseStarted('partially_visible', {paramsOverrides: { pageId: firstPageId, isSuccessfulSSR: !clientSideRender }}) | |
| 2562 | + } | |
| 2563 | +</script> | |
| 2564 | + | |
| 2565 | + <script> | |
| 2566 | + const wixAdsOffsetHeight = document.querySelector(':is(.WIX_ADS, #WIX_ADS)')?.offsetHeight || 0; | |
| 2567 | + const header = document.getElementsByTagName('header')[0]; | |
| 2568 | + | |
| 2569 | + let headerOffsetHeight = 0; | |
| 2570 | + | |
| 2571 | + if (header) { | |
| 2572 | + const headerPosition = window.getComputedStyle(header).getPropertyValue('position').toLowerCase(); | |
| 2573 | + const isHeaderStickyOrFixed = headerPosition === 'sticky' || headerPosition === 'fixed'; | |
| 2574 | + headerOffsetHeight = isHeaderStickyOrFixed ? header.offsetHeight : 0; | |
| 2575 | + } | |
| 2576 | + | |
| 2577 | + document.documentElement.style.scrollPaddingTop = `${wixAdsOffsetHeight + headerOffsetHeight}px`; | |
| 2578 | + </script> | |
| 2579 | + | |
| 2580 | + | |
| 2581 | + | |
| 2582 | + <script defer="" src="https://static.parastorage.com/services/tag-manager-client/1.1066.0/siteTags.bundle.min.js"></script> | |
| 2583 | + | |
| 2584 | + | |
| 2585 | + | |
| 2586 | + | |
| 2587 | + | |
| 2588 | + | |
| 2589 | + | |
| 2590 | + | |
Diff truncated — file too large.